diff --git a/corpus/literals.txt b/corpus/literals.txt index ef14c7a..dca1c6c 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -252,10 +252,12 @@ Strings containing special characters echo "s/$/'/" echo "#" +echo "s$" --- (program + (command (command_name (word)) (string)) (command (command_name (word)) (string)) (command (command_name (word)) (string))) diff --git a/grammar.js b/grammar.js index ada95cc..a0b59f2 100644 --- a/grammar.js +++ b/grammar.js @@ -389,6 +389,7 @@ module.exports = grammar({ ), optional($._concat) )), + optional('$'), '"' ), diff --git a/src/grammar.json b/src/grammar.json index b9114f0..75c767c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1570,6 +1570,18 @@ ] } }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "\"" diff --git a/src/parser.c b/src/parser.c index bf3d4e5..83683b9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 2830 +#define STATE_COUNT 2887 #define SYMBOL_COUNT 144 #define ALIAS_COUNT 5 #define TOKEN_COUNT 90 @@ -79,7 +79,7 @@ enum { sym_raw_string = 63, anon_sym_POUND = 64, anon_sym_DOLLAR_LBRACE = 65, - aux_sym_SLASH = 66, + anon_sym_SLASH = 66, anon_sym_COLON = 67, anon_sym_COLON_QMARK = 68, anon_sym_COLON_DASH = 69, @@ -231,7 +231,7 @@ static const char *ts_symbol_names[] = { [sym_raw_string] = "raw_string", [anon_sym_POUND] = "#", [anon_sym_DOLLAR_LBRACE] = "${", - [aux_sym_SLASH] = "/", + [anon_sym_SLASH] = "/", [anon_sym_COLON] = ":", [anon_sym_COLON_QMARK] = ":?", [anon_sym_COLON_DASH] = ":-", @@ -581,8 +581,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_SLASH] = { - .visible = false, + [anon_sym_SLASH] = { + .visible = true, .named = false, }, [anon_sym_COLON] = { @@ -1259,7 +1259,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(4); END_STATE(); case 23: - ACCEPT_TOKEN(aux_sym_SLASH); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 24: ACCEPT_TOKEN(anon_sym_0); @@ -2838,6 +2838,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 145: + if (lookahead == '\"') + ADVANCE(5); if (lookahead == '#') ADVANCE(6); if (lookahead == '$') @@ -2866,7 +2868,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(147); if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && (lookahead < '_' || lookahead > 'z')) ADVANCE(92); END_STATE(); @@ -5294,661 +5295,661 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [233] = {.lex_state = 145}, + [234] = {.lex_state = 90}, [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}, + [237] = {.lex_state = 116, .external_lex_state = 10}, + [238] = {.lex_state = 116, .external_lex_state = 4}, + [239] = {.lex_state = 72}, + [240] = {.lex_state = 62}, + [241] = {.lex_state = 151, .external_lex_state = 16}, + [242] = {.lex_state = 154, .external_lex_state = 6}, [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}, + [244] = {.lex_state = 151, .external_lex_state = 16}, + [245] = {.lex_state = 68}, + [246] = {.lex_state = 163, .external_lex_state = 2}, + [247] = {.lex_state = 68}, + [248] = {.lex_state = 171, .external_lex_state = 2}, + [249] = {.lex_state = 68}, + [250] = {.lex_state = 163, .external_lex_state = 2}, + [251] = {.lex_state = 68}, + [252] = {.lex_state = 205, .external_lex_state = 22}, + [253] = {.lex_state = 110, .external_lex_state = 23}, + [254] = {.lex_state = 114, .external_lex_state = 9}, + [255] = {.lex_state = 72}, + [256] = {.lex_state = 119}, + [257] = {.lex_state = 129, .external_lex_state = 12}, + [258] = {.lex_state = 141}, + [259] = {.lex_state = 62}, [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}, + [261] = {.lex_state = 121, .external_lex_state = 14}, + [262] = {.lex_state = 62}, + [263] = {.lex_state = 121, .external_lex_state = 3}, [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}, + [265] = {.lex_state = 121, .external_lex_state = 10}, + [266] = {.lex_state = 121, .external_lex_state = 4}, + [267] = {.lex_state = 112, .external_lex_state = 5}, + [268] = {.lex_state = 68}, + [269] = {.lex_state = 56, .external_lex_state = 2}, + [270] = {.lex_state = 127, .external_lex_state = 4}, + [271] = {.lex_state = 207, .external_lex_state = 2}, + [272] = {.lex_state = 56, .external_lex_state = 2}, + [273] = {.lex_state = 56}, + [274] = {.lex_state = 179}, [275] = {.lex_state = 72}, - [276] = {.lex_state = 112, .external_lex_state = 5}, + [276] = {.lex_state = 72}, [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}, + [278] = {.lex_state = 112, .external_lex_state = 5}, + [279] = {.lex_state = 209, .external_lex_state = 7}, + [280] = {.lex_state = 112, .external_lex_state = 7}, + [281] = {.lex_state = 121, .external_lex_state = 4}, + [282] = {.lex_state = 125, .external_lex_state = 8}, + [283] = {.lex_state = 56, .external_lex_state = 2}, + [284] = {.lex_state = 112, .external_lex_state = 7}, + [285] = {.lex_state = 114, .external_lex_state = 9}, + [286] = {.lex_state = 76}, [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}, + [288] = {.lex_state = 211, .external_lex_state = 13}, + [289] = {.lex_state = 211}, + [290] = {.lex_state = 129, .external_lex_state = 12}, + [291] = {.lex_state = 72}, [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}, + [293] = {.lex_state = 129, .external_lex_state = 11}, + [294] = {.lex_state = 145}, + [295] = {.lex_state = 90}, [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}, + [297] = {.lex_state = 129, .external_lex_state = 11}, + [298] = {.lex_state = 129, .external_lex_state = 11}, + [299] = {.lex_state = 62}, [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}, + [301] = {.lex_state = 154, .external_lex_state = 6}, + [302] = {.lex_state = 151, .external_lex_state = 16}, + [303] = {.lex_state = 151, .external_lex_state = 16}, [304] = {.lex_state = 68}, - [305] = {.lex_state = 171, .external_lex_state = 2}, + [305] = {.lex_state = 163, .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}, + [307] = {.lex_state = 171, .external_lex_state = 2}, + [308] = {.lex_state = 68}, + [309] = {.lex_state = 163, .external_lex_state = 2}, + [310] = {.lex_state = 76}, + [311] = {.lex_state = 199, .external_lex_state = 23}, + [312] = {.lex_state = 213}, + [313] = {.lex_state = 211}, + [314] = {.lex_state = 141}, + [315] = {.lex_state = 72}, + [316] = {.lex_state = 141, .external_lex_state = 13}, [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}, + [318] = {.lex_state = 145}, + [319] = {.lex_state = 90}, + [320] = {.lex_state = 218, .external_lex_state = 13}, + [321] = {.lex_state = 218, .external_lex_state = 13}, + [322] = {.lex_state = 218, .external_lex_state = 13}, + [323] = {.lex_state = 62}, [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}, + [325] = {.lex_state = 154, .external_lex_state = 6}, + [326] = {.lex_state = 151, .external_lex_state = 16}, + [327] = {.lex_state = 151, .external_lex_state = 16}, + [328] = {.lex_state = 68}, + [329] = {.lex_state = 163, .external_lex_state = 2}, + [330] = {.lex_state = 68}, + [331] = {.lex_state = 171, .external_lex_state = 2}, + [332] = {.lex_state = 68}, + [333] = {.lex_state = 163, .external_lex_state = 2}, + [334] = {.lex_state = 76}, + [335] = {.lex_state = 213}, + [336] = {.lex_state = 114, .external_lex_state = 9}, + [337] = {.lex_state = 72}, + [338] = {.lex_state = 82, .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}, + [340] = {.lex_state = 145}, + [341] = {.lex_state = 90}, + [342] = {.lex_state = 121, .external_lex_state = 14}, + [343] = {.lex_state = 121, .external_lex_state = 14}, + [344] = {.lex_state = 121, .external_lex_state = 14}, + [345] = {.lex_state = 62}, + [346] = {.lex_state = 151, .external_lex_state = 16}, + [347] = {.lex_state = 154, .external_lex_state = 6}, + [348] = {.lex_state = 151, .external_lex_state = 16}, + [349] = {.lex_state = 151, .external_lex_state = 16}, [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}, + [352] = {.lex_state = 68}, + [353] = {.lex_state = 171, .external_lex_state = 2}, + [354] = {.lex_state = 68}, + [355] = {.lex_state = 163, .external_lex_state = 2}, + [356] = {.lex_state = 82, .external_lex_state = 3}, + [357] = {.lex_state = 72}, + [358] = {.lex_state = 82, .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}, + [360] = {.lex_state = 145}, + [361] = {.lex_state = 90}, + [362] = {.lex_state = 121, .external_lex_state = 10}, + [363] = {.lex_state = 121, .external_lex_state = 10}, + [364] = {.lex_state = 121, .external_lex_state = 10}, + [365] = {.lex_state = 62}, + [366] = {.lex_state = 151, .external_lex_state = 16}, + [367] = {.lex_state = 154, .external_lex_state = 6}, + [368] = {.lex_state = 151, .external_lex_state = 16}, + [369] = {.lex_state = 151, .external_lex_state = 16}, + [370] = {.lex_state = 68}, + [371] = {.lex_state = 163, .external_lex_state = 2}, + [372] = {.lex_state = 68}, + [373] = {.lex_state = 171, .external_lex_state = 2}, + [374] = {.lex_state = 68}, + [375] = {.lex_state = 163, .external_lex_state = 2}, + [376] = {.lex_state = 82, .external_lex_state = 4}, + [377] = {.lex_state = 72}, + [378] = {.lex_state = 72, .external_lex_state = 15}, + [379] = {.lex_state = 163, .external_lex_state = 15}, + [380] = {.lex_state = 145}, + [381] = {.lex_state = 90}, + [382] = {.lex_state = 163, .external_lex_state = 15}, + [383] = {.lex_state = 163, .external_lex_state = 15}, + [384] = {.lex_state = 163, .external_lex_state = 15}, + [385] = {.lex_state = 62}, + [386] = {.lex_state = 151, .external_lex_state = 16}, + [387] = {.lex_state = 154, .external_lex_state = 6}, + [388] = {.lex_state = 151, .external_lex_state = 16}, + [389] = {.lex_state = 151, .external_lex_state = 16}, + [390] = {.lex_state = 68}, + [391] = {.lex_state = 163, .external_lex_state = 2}, + [392] = {.lex_state = 68}, + [393] = {.lex_state = 171, .external_lex_state = 2}, + [394] = {.lex_state = 68}, + [395] = {.lex_state = 163, .external_lex_state = 2}, + [396] = {.lex_state = 112, .external_lex_state = 5}, + [397] = {.lex_state = 87, .external_lex_state = 5}, + [398] = {.lex_state = 112, .external_lex_state = 5}, + [399] = {.lex_state = 90, .external_lex_state = 13}, + [400] = {.lex_state = 90, .external_lex_state = 13}, + [401] = {.lex_state = 90, .external_lex_state = 13}, + [402] = {.lex_state = 90}, + [403] = {.lex_state = 62}, + [404] = {.lex_state = 151, .external_lex_state = 16}, + [405] = {.lex_state = 154, .external_lex_state = 6}, + [406] = {.lex_state = 151, .external_lex_state = 16}, + [407] = {.lex_state = 151, .external_lex_state = 16}, + [408] = {.lex_state = 68}, + [409] = {.lex_state = 163, .external_lex_state = 2}, + [410] = {.lex_state = 68}, + [411] = {.lex_state = 171, .external_lex_state = 2}, + [412] = {.lex_state = 145}, + [413] = {.lex_state = 90}, + [414] = {.lex_state = 72}, + [415] = {.lex_state = 221, .external_lex_state = 16}, + [416] = {.lex_state = 112, .external_lex_state = 5}, + [417] = {.lex_state = 223, .external_lex_state = 24}, + [418] = {.lex_state = 90}, + [419] = {.lex_state = 97}, + [420] = {.lex_state = 223, .external_lex_state = 24}, + [421] = {.lex_state = 97, .external_lex_state = 6}, + [422] = {.lex_state = 225}, + [423] = {.lex_state = 56, .external_lex_state = 2}, + [424] = {.lex_state = 56, .external_lex_state = 2}, + [425] = {.lex_state = 56, .external_lex_state = 2}, [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}, + [427] = {.lex_state = 62}, + [428] = {.lex_state = 151, .external_lex_state = 16}, + [429] = {.lex_state = 151, .external_lex_state = 16}, + [430] = {.lex_state = 151, .external_lex_state = 16}, + [431] = {.lex_state = 112, .external_lex_state = 5}, + [432] = {.lex_state = 225}, + [433] = {.lex_state = 223, .external_lex_state = 16}, + [434] = {.lex_state = 112, .external_lex_state = 5}, + [435] = {.lex_state = 225}, + [436] = {.lex_state = 223, .external_lex_state = 16}, + [437] = {.lex_state = 114, .external_lex_state = 9}, + [438] = {.lex_state = 116, .external_lex_state = 4}, + [439] = {.lex_state = 72}, + [440] = {.lex_state = 72}, + [441] = {.lex_state = 116, .external_lex_state = 10}, + [442] = {.lex_state = 116, .external_lex_state = 10}, + [443] = {.lex_state = 116, .external_lex_state = 4}, + [444] = {.lex_state = 119}, + [445] = {.lex_state = 121, .external_lex_state = 4}, + [446] = {.lex_state = 125, .external_lex_state = 8}, + [447] = {.lex_state = 56, .external_lex_state = 2}, + [448] = {.lex_state = 68}, + [449] = {.lex_state = 129, .external_lex_state = 12}, + [450] = {.lex_state = 141}, + [451] = {.lex_state = 62}, + [452] = {.lex_state = 156, .external_lex_state = 25}, + [453] = {.lex_state = 90}, + [454] = {.lex_state = 97}, + [455] = {.lex_state = 156, .external_lex_state = 25}, + [456] = {.lex_state = 97, .external_lex_state = 6}, + [457] = {.lex_state = 56, .external_lex_state = 2}, + [458] = {.lex_state = 56, .external_lex_state = 2}, + [459] = {.lex_state = 56, .external_lex_state = 2}, + [460] = {.lex_state = 156, .external_lex_state = 6}, + [461] = {.lex_state = 62}, + [462] = {.lex_state = 156, .external_lex_state = 6}, + [463] = {.lex_state = 156, .external_lex_state = 13}, + [464] = {.lex_state = 90}, + [465] = {.lex_state = 97}, + [466] = {.lex_state = 156, .external_lex_state = 13}, + [467] = {.lex_state = 97, .external_lex_state = 6}, + [468] = {.lex_state = 56, .external_lex_state = 2}, + [469] = {.lex_state = 56, .external_lex_state = 2}, + [470] = {.lex_state = 56, .external_lex_state = 2}, + [471] = {.lex_state = 156}, + [472] = {.lex_state = 156}, + [473] = {.lex_state = 72}, + [474] = {.lex_state = 158, .external_lex_state = 17}, + [475] = {.lex_state = 158, .external_lex_state = 17}, + [476] = {.lex_state = 145}, + [477] = {.lex_state = 90}, + [478] = {.lex_state = 158, .external_lex_state = 17}, + [479] = {.lex_state = 158, .external_lex_state = 17}, + [480] = {.lex_state = 158, .external_lex_state = 17}, + [481] = {.lex_state = 62}, + [482] = {.lex_state = 151, .external_lex_state = 16}, + [483] = {.lex_state = 154, .external_lex_state = 6}, + [484] = {.lex_state = 151, .external_lex_state = 16}, + [485] = {.lex_state = 151, .external_lex_state = 16}, + [486] = {.lex_state = 68}, + [487] = {.lex_state = 163, .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}, + [489] = {.lex_state = 171, .external_lex_state = 2}, + [490] = {.lex_state = 68}, + [491] = {.lex_state = 163, .external_lex_state = 2}, + [492] = {.lex_state = 68}, + [493] = {.lex_state = 56, .external_lex_state = 2}, + [494] = {.lex_state = 112, .external_lex_state = 5}, + [495] = {.lex_state = 56, .external_lex_state = 2}, + [496] = {.lex_state = 68}, + [497] = {.lex_state = 176, .external_lex_state = 19}, + [498] = {.lex_state = 56}, + [499] = {.lex_state = 179}, + [500] = {.lex_state = 72}, + [501] = {.lex_state = 56, .external_lex_state = 20}, [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}, + [503] = {.lex_state = 158, .external_lex_state = 17}, + [504] = {.lex_state = 158, .external_lex_state = 17}, + [505] = {.lex_state = 68}, + [506] = {.lex_state = 230, .external_lex_state = 18}, + [507] = {.lex_state = 158, .external_lex_state = 18}, + [508] = {.lex_state = 158, .external_lex_state = 18}, + [509] = {.lex_state = 114, .external_lex_state = 9}, + [510] = {.lex_state = 72}, + [511] = {.lex_state = 119}, + [512] = {.lex_state = 129, .external_lex_state = 12}, + [513] = {.lex_state = 141}, + [514] = {.lex_state = 62}, + [515] = {.lex_state = 165, .external_lex_state = 25}, + [516] = {.lex_state = 165, .external_lex_state = 25}, + [517] = {.lex_state = 62}, + [518] = {.lex_state = 165, .external_lex_state = 6}, + [519] = {.lex_state = 165, .external_lex_state = 13}, + [520] = {.lex_state = 165, .external_lex_state = 13}, + [521] = {.lex_state = 156}, [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}, + [523] = {.lex_state = 68}, + [524] = {.lex_state = 56, .external_lex_state = 2}, + [525] = {.lex_state = 56, .external_lex_state = 2}, + [526] = {.lex_state = 56}, + [527] = {.lex_state = 179}, + [528] = {.lex_state = 72}, + [529] = {.lex_state = 72}, + [530] = {.lex_state = 167, .external_lex_state = 17}, + [531] = {.lex_state = 167, .external_lex_state = 17}, + [532] = {.lex_state = 232, .external_lex_state = 18}, + [533] = {.lex_state = 167, .external_lex_state = 18}, + [534] = {.lex_state = 167, .external_lex_state = 18}, + [535] = {.lex_state = 112, .external_lex_state = 5}, + [536] = {.lex_state = 119}, + [537] = {.lex_state = 127, .external_lex_state = 4}, + [538] = {.lex_state = 125, .external_lex_state = 8}, + [539] = {.lex_state = 82, .external_lex_state = 4}, + [540] = {.lex_state = 110, .external_lex_state = 8}, + [541] = {.lex_state = 127, .external_lex_state = 4}, + [542] = {.lex_state = 97}, + [543] = {.lex_state = 97, .external_lex_state = 6}, + [544] = {.lex_state = 176, .external_lex_state = 19}, + [545] = {.lex_state = 72}, + [546] = {.lex_state = 87, .external_lex_state = 5}, + [547] = {.lex_state = 87, .external_lex_state = 5}, + [548] = {.lex_state = 112, .external_lex_state = 7}, + [549] = {.lex_state = 199, .external_lex_state = 5}, + [550] = {.lex_state = 199, .external_lex_state = 5}, + [551] = {.lex_state = 234, .external_lex_state = 7}, + [552] = {.lex_state = 234, .external_lex_state = 7}, + [553] = {.lex_state = 199, .external_lex_state = 5}, + [554] = {.lex_state = 199, .external_lex_state = 5}, + [555] = {.lex_state = 234, .external_lex_state = 7}, + [556] = {.lex_state = 127, .external_lex_state = 4}, + [557] = {.lex_state = 199, .external_lex_state = 7}, + [558] = {.lex_state = 199, .external_lex_state = 7}, + [559] = {.lex_state = 87, .external_lex_state = 7}, + [560] = {.lex_state = 87, .external_lex_state = 7}, + [561] = {.lex_state = 203, .external_lex_state = 12}, + [562] = {.lex_state = 62, .external_lex_state = 13}, + [563] = {.lex_state = 203, .external_lex_state = 11}, + [564] = {.lex_state = 203, .external_lex_state = 12}, + [565] = {.lex_state = 62, .external_lex_state = 13}, + [566] = {.lex_state = 129, .external_lex_state = 12}, + [567] = {.lex_state = 125, .external_lex_state = 8}, + [568] = {.lex_state = 236, .external_lex_state = 13}, + [569] = {.lex_state = 90}, + [570] = {.lex_state = 97}, + [571] = {.lex_state = 236, .external_lex_state = 13}, + [572] = {.lex_state = 97, .external_lex_state = 6}, + [573] = {.lex_state = 56, .external_lex_state = 2}, + [574] = {.lex_state = 56, .external_lex_state = 2}, + [575] = {.lex_state = 56, .external_lex_state = 2}, + [576] = {.lex_state = 163}, + [577] = {.lex_state = 72}, + [578] = {.lex_state = 110, .external_lex_state = 21}, + [579] = {.lex_state = 125, .external_lex_state = 21}, + [580] = {.lex_state = 145}, + [581] = {.lex_state = 90}, + [582] = {.lex_state = 125, .external_lex_state = 21}, + [583] = {.lex_state = 125, .external_lex_state = 21}, + [584] = {.lex_state = 125, .external_lex_state = 21}, + [585] = {.lex_state = 62}, + [586] = {.lex_state = 151, .external_lex_state = 16}, + [587] = {.lex_state = 154, .external_lex_state = 6}, + [588] = {.lex_state = 151, .external_lex_state = 16}, + [589] = {.lex_state = 151, .external_lex_state = 16}, + [590] = {.lex_state = 68}, + [591] = {.lex_state = 163, .external_lex_state = 2}, + [592] = {.lex_state = 68}, + [593] = {.lex_state = 171, .external_lex_state = 2}, + [594] = {.lex_state = 68}, + [595] = {.lex_state = 163, .external_lex_state = 2}, + [596] = {.lex_state = 116, .external_lex_state = 10}, + [597] = {.lex_state = 116, .external_lex_state = 10}, + [598] = {.lex_state = 116, .external_lex_state = 4}, + [599] = {.lex_state = 56, .external_lex_state = 2}, + [600] = {.lex_state = 127, .external_lex_state = 4}, + [601] = {.lex_state = 234, .external_lex_state = 7}, + [602] = {.lex_state = 56, .external_lex_state = 2}, + [603] = {.lex_state = 127, .external_lex_state = 4}, + [604] = {.lex_state = 199, .external_lex_state = 7}, + [605] = {.lex_state = 127, .external_lex_state = 4}, + [606] = {.lex_state = 56, .external_lex_state = 2}, + [607] = {.lex_state = 56, .external_lex_state = 2}, [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}, + [609] = {.lex_state = 72}, + [610] = {.lex_state = 56, .external_lex_state = 2}, + [611] = {.lex_state = 72}, + [612] = {.lex_state = 116, .external_lex_state = 10}, + [613] = {.lex_state = 72}, + [614] = {.lex_state = 116, .external_lex_state = 4}, + [615] = {.lex_state = 116, .external_lex_state = 10}, + [616] = {.lex_state = 116, .external_lex_state = 10}, + [617] = {.lex_state = 145}, + [618] = {.lex_state = 72}, + [619] = {.lex_state = 116, .external_lex_state = 4}, + [620] = {.lex_state = 221, .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}, + [624] = {.lex_state = 62}, + [625] = {.lex_state = 151, .external_lex_state = 16}, + [626] = {.lex_state = 151, .external_lex_state = 16}, + [627] = {.lex_state = 151, .external_lex_state = 16}, + [628] = {.lex_state = 116, .external_lex_state = 10}, + [629] = {.lex_state = 225}, + [630] = {.lex_state = 223, .external_lex_state = 16}, + [631] = {.lex_state = 116, .external_lex_state = 10}, + [632] = {.lex_state = 225}, + [633] = {.lex_state = 223, .external_lex_state = 16}, + [634] = {.lex_state = 116, .external_lex_state = 10}, + [635] = {.lex_state = 116, .external_lex_state = 10}, + [636] = {.lex_state = 119}, + [637] = {.lex_state = 125, .external_lex_state = 23}, + [638] = {.lex_state = 82, .external_lex_state = 4}, + [639] = {.lex_state = 110, .external_lex_state = 8}, + [640] = {.lex_state = 205, .external_lex_state = 22}, + [641] = {.lex_state = 56}, + [642] = {.lex_state = 72}, + [643] = {.lex_state = 127, .external_lex_state = 4}, + [644] = {.lex_state = 125, .external_lex_state = 21}, + [645] = {.lex_state = 125, .external_lex_state = 21}, + [646] = {.lex_state = 209, .external_lex_state = 7}, + [647] = {.lex_state = 68}, + [648] = {.lex_state = 125, .external_lex_state = 23}, + [649] = {.lex_state = 209, .external_lex_state = 23}, + [650] = {.lex_state = 114, .external_lex_state = 9}, + [651] = {.lex_state = 121, .external_lex_state = 14}, + [652] = {.lex_state = 121, .external_lex_state = 3}, + [653] = {.lex_state = 121, .external_lex_state = 10}, + [654] = {.lex_state = 121, .external_lex_state = 4}, + [655] = {.lex_state = 112, .external_lex_state = 5}, + [656] = {.lex_state = 119}, + [657] = {.lex_state = 127, .external_lex_state = 4}, + [658] = {.lex_state = 121, .external_lex_state = 4}, + [659] = {.lex_state = 125, .external_lex_state = 8}, + [660] = {.lex_state = 72}, + [661] = {.lex_state = 112, .external_lex_state = 5}, + [662] = {.lex_state = 112, .external_lex_state = 5}, + [663] = {.lex_state = 209, .external_lex_state = 5}, + [664] = {.lex_state = 209, .external_lex_state = 5}, + [665] = {.lex_state = 209, .external_lex_state = 5}, + [666] = {.lex_state = 209, .external_lex_state = 5}, + [667] = {.lex_state = 209, .external_lex_state = 7}, + [668] = {.lex_state = 209, .external_lex_state = 7}, + [669] = {.lex_state = 112, .external_lex_state = 7}, + [670] = {.lex_state = 207, .external_lex_state = 2}, + [671] = {.lex_state = 112, .external_lex_state = 7}, + [672] = {.lex_state = 163, .external_lex_state = 2}, + [673] = {.lex_state = 163}, + [674] = {.lex_state = 72, .external_lex_state = 15}, + [675] = {.lex_state = 72, .external_lex_state = 15}, + [676] = {.lex_state = 211}, + [677] = {.lex_state = 211, .external_lex_state = 13}, + [678] = {.lex_state = 129, .external_lex_state = 12}, + [679] = {.lex_state = 76}, + [680] = {.lex_state = 213}, + [681] = {.lex_state = 129, .external_lex_state = 11}, [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}, + [683] = {.lex_state = 129, .external_lex_state = 11}, + [684] = {.lex_state = 145}, + [685] = {.lex_state = 221, .external_lex_state = 16}, + [686] = {.lex_state = 129, .external_lex_state = 11}, + [687] = {.lex_state = 225}, + [688] = {.lex_state = 223, .external_lex_state = 16}, + [689] = {.lex_state = 62}, + [690] = {.lex_state = 151, .external_lex_state = 16}, + [691] = {.lex_state = 151, .external_lex_state = 16}, + [692] = {.lex_state = 151, .external_lex_state = 16}, + [693] = {.lex_state = 129, .external_lex_state = 11}, + [694] = {.lex_state = 225}, + [695] = {.lex_state = 223, .external_lex_state = 16}, + [696] = {.lex_state = 129, .external_lex_state = 11}, + [697] = {.lex_state = 225}, + [698] = {.lex_state = 223, .external_lex_state = 16}, + [699] = {.lex_state = 129, .external_lex_state = 11}, + [700] = {.lex_state = 129, .external_lex_state = 11}, + [701] = {.lex_state = 129, .external_lex_state = 12}, + [702] = {.lex_state = 56}, + [703] = {.lex_state = 72}, + [704] = {.lex_state = 56, .external_lex_state = 20}, + [705] = {.lex_state = 72}, + [706] = {.lex_state = 199, .external_lex_state = 23}, + [707] = {.lex_state = 129, .external_lex_state = 12}, + [708] = {.lex_state = 238}, [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}, + [710] = {.lex_state = 141, .external_lex_state = 13}, + [711] = {.lex_state = 218, .external_lex_state = 13}, + [712] = {.lex_state = 145}, + [713] = {.lex_state = 221, .external_lex_state = 16}, + [714] = {.lex_state = 218, .external_lex_state = 13}, + [715] = {.lex_state = 225}, + [716] = {.lex_state = 223, .external_lex_state = 16}, + [717] = {.lex_state = 62}, + [718] = {.lex_state = 151, .external_lex_state = 16}, + [719] = {.lex_state = 151, .external_lex_state = 16}, + [720] = {.lex_state = 151, .external_lex_state = 16}, + [721] = {.lex_state = 218, .external_lex_state = 13}, + [722] = {.lex_state = 225}, + [723] = {.lex_state = 223, .external_lex_state = 16}, + [724] = {.lex_state = 218, .external_lex_state = 13}, + [725] = {.lex_state = 225}, + [726] = {.lex_state = 223, .external_lex_state = 16}, + [727] = {.lex_state = 218, .external_lex_state = 13}, + [728] = {.lex_state = 218, .external_lex_state = 13}, + [729] = {.lex_state = 238}, + [730] = {.lex_state = 238}, + [731] = {.lex_state = 121, .external_lex_state = 3}, + [732] = {.lex_state = 163}, + [733] = {.lex_state = 82, .external_lex_state = 14}, + [734] = {.lex_state = 82, .external_lex_state = 14}, + [735] = {.lex_state = 121, .external_lex_state = 14}, + [736] = {.lex_state = 82, .external_lex_state = 14}, [737] = {.lex_state = 121, .external_lex_state = 14}, - [738] = {.lex_state = 225}, - [739] = {.lex_state = 223, .external_lex_state = 16}, + [738] = {.lex_state = 145}, + [739] = {.lex_state = 221, .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}, + [741] = {.lex_state = 225}, + [742] = {.lex_state = 223, .external_lex_state = 16}, + [743] = {.lex_state = 62}, + [744] = {.lex_state = 151, .external_lex_state = 16}, + [745] = {.lex_state = 151, .external_lex_state = 16}, + [746] = {.lex_state = 151, .external_lex_state = 16}, + [747] = {.lex_state = 121, .external_lex_state = 14}, + [748] = {.lex_state = 225}, + [749] = {.lex_state = 223, .external_lex_state = 16}, + [750] = {.lex_state = 121, .external_lex_state = 14}, + [751] = {.lex_state = 225}, + [752] = {.lex_state = 223, .external_lex_state = 16}, + [753] = {.lex_state = 121, .external_lex_state = 14}, + [754] = {.lex_state = 121, .external_lex_state = 14}, + [755] = {.lex_state = 121, .external_lex_state = 10}, + [756] = {.lex_state = 82, .external_lex_state = 10}, + [757] = {.lex_state = 121, .external_lex_state = 10}, + [758] = {.lex_state = 145}, + [759] = {.lex_state = 221, .external_lex_state = 16}, [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}, + [761] = {.lex_state = 225}, + [762] = {.lex_state = 223, .external_lex_state = 16}, + [763] = {.lex_state = 62}, + [764] = {.lex_state = 151, .external_lex_state = 16}, + [765] = {.lex_state = 151, .external_lex_state = 16}, + [766] = {.lex_state = 151, .external_lex_state = 16}, + [767] = {.lex_state = 121, .external_lex_state = 10}, + [768] = {.lex_state = 225}, + [769] = {.lex_state = 223, .external_lex_state = 16}, + [770] = {.lex_state = 121, .external_lex_state = 10}, + [771] = {.lex_state = 225}, + [772] = {.lex_state = 223, .external_lex_state = 16}, + [773] = {.lex_state = 121, .external_lex_state = 10}, + [774] = {.lex_state = 121, .external_lex_state = 10}, [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}, + [776] = {.lex_state = 72, .external_lex_state = 15}, + [777] = {.lex_state = 163, .external_lex_state = 15}, + [778] = {.lex_state = 145}, + [779] = {.lex_state = 221, .external_lex_state = 16}, + [780] = {.lex_state = 163, .external_lex_state = 15}, + [781] = {.lex_state = 225}, + [782] = {.lex_state = 223, .external_lex_state = 16}, + [783] = {.lex_state = 62}, + [784] = {.lex_state = 151, .external_lex_state = 16}, + [785] = {.lex_state = 151, .external_lex_state = 16}, [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}, + [787] = {.lex_state = 163, .external_lex_state = 15}, + [788] = {.lex_state = 225}, + [789] = {.lex_state = 223, .external_lex_state = 16}, + [790] = {.lex_state = 163, .external_lex_state = 15}, + [791] = {.lex_state = 225}, + [792] = {.lex_state = 223, .external_lex_state = 16}, + [793] = {.lex_state = 163, .external_lex_state = 15}, + [794] = {.lex_state = 163, .external_lex_state = 15}, + [795] = {.lex_state = 90}, + [796] = {.lex_state = 221, .external_lex_state = 16}, + [797] = {.lex_state = 90, .external_lex_state = 13}, + [798] = {.lex_state = 225}, + [799] = {.lex_state = 223, .external_lex_state = 16}, + [800] = {.lex_state = 62}, + [801] = {.lex_state = 151, .external_lex_state = 16}, + [802] = {.lex_state = 151, .external_lex_state = 16}, + [803] = {.lex_state = 151, .external_lex_state = 16}, + [804] = {.lex_state = 90, .external_lex_state = 13}, + [805] = {.lex_state = 225}, + [806] = {.lex_state = 223, .external_lex_state = 16}, + [807] = {.lex_state = 90, .external_lex_state = 13}, + [808] = {.lex_state = 225}, + [809] = {.lex_state = 223, .external_lex_state = 16}, + [810] = {.lex_state = 90, .external_lex_state = 13}, + [811] = {.lex_state = 112, .external_lex_state = 5}, + [812] = {.lex_state = 145}, + [813] = {.lex_state = 203, .external_lex_state = 11}, + [814] = {.lex_state = 203, .external_lex_state = 11}, + [815] = {.lex_state = 203, .external_lex_state = 11}, + [816] = {.lex_state = 112, .external_lex_state = 5}, + [817] = {.lex_state = 205, .external_lex_state = 24}, + [818] = {.lex_state = 90}, + [819] = {.lex_state = 97}, + [820] = {.lex_state = 205, .external_lex_state = 24}, + [821] = {.lex_state = 97, .external_lex_state = 6}, + [822] = {.lex_state = 56, .external_lex_state = 2}, + [823] = {.lex_state = 56, .external_lex_state = 2}, + [824] = {.lex_state = 56, .external_lex_state = 2}, + [825] = {.lex_state = 205, .external_lex_state = 16}, + [826] = {.lex_state = 72}, + [827] = {.lex_state = 223, .external_lex_state = 24}, + [828] = {.lex_state = 223, .external_lex_state = 24}, + [829] = {.lex_state = 145}, + [830] = {.lex_state = 90}, + [831] = {.lex_state = 223, .external_lex_state = 24}, + [832] = {.lex_state = 223, .external_lex_state = 24}, + [833] = {.lex_state = 223, .external_lex_state = 24}, + [834] = {.lex_state = 62}, + [835] = {.lex_state = 151, .external_lex_state = 16}, + [836] = {.lex_state = 154, .external_lex_state = 6}, + [837] = {.lex_state = 151, .external_lex_state = 16}, + [838] = {.lex_state = 151, .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}, + [840] = {.lex_state = 68}, + [841] = {.lex_state = 163, .external_lex_state = 2}, + [842] = {.lex_state = 68}, + [843] = {.lex_state = 171, .external_lex_state = 2}, + [844] = {.lex_state = 68}, + [845] = {.lex_state = 163, .external_lex_state = 2}, + [846] = {.lex_state = 112, .external_lex_state = 5}, + [847] = {.lex_state = 223, .external_lex_state = 16}, + [848] = {.lex_state = 221, .external_lex_state = 16}, + [849] = {.lex_state = 112, .external_lex_state = 5}, + [850] = {.lex_state = 225}, + [851] = {.lex_state = 223, .external_lex_state = 16}, + [852] = {.lex_state = 112, .external_lex_state = 5}, + [853] = {.lex_state = 225}, + [854] = {.lex_state = 223, .external_lex_state = 16}, + [855] = {.lex_state = 225}, + [856] = {.lex_state = 223, .external_lex_state = 16}, + [857] = {.lex_state = 223, .external_lex_state = 16}, + [858] = {.lex_state = 112, .external_lex_state = 5}, + [859] = {.lex_state = 223, .external_lex_state = 16}, + [860] = {.lex_state = 163, .external_lex_state = 15}, + [861] = {.lex_state = 163, .external_lex_state = 15}, [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}, + [863] = {.lex_state = 72}, + [864] = {.lex_state = 56, .external_lex_state = 2}, + [865] = {.lex_state = 230, .external_lex_state = 18}, + [866] = {.lex_state = 56, .external_lex_state = 2}, + [867] = {.lex_state = 116, .external_lex_state = 4}, + [868] = {.lex_state = 72}, + [869] = {.lex_state = 116, .external_lex_state = 4}, + [870] = {.lex_state = 72}, + [871] = {.lex_state = 68}, + [872] = {.lex_state = 205, .external_lex_state = 22}, + [873] = {.lex_state = 163, .external_lex_state = 26}, [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}, + [875] = {.lex_state = 207, .external_lex_state = 2}, + [876] = {.lex_state = 121, .external_lex_state = 4}, + [877] = {.lex_state = 125, .external_lex_state = 8}, + [878] = {.lex_state = 230, .external_lex_state = 26}, + [879] = {.lex_state = 114, .external_lex_state = 9}, + [880] = {.lex_state = 72}, + [881] = {.lex_state = 156, .external_lex_state = 25}, + [882] = {.lex_state = 156, .external_lex_state = 25}, + [883] = {.lex_state = 145}, [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}, + [885] = {.lex_state = 156, .external_lex_state = 25}, + [886] = {.lex_state = 156, .external_lex_state = 25}, + [887] = {.lex_state = 156, .external_lex_state = 25}, [888] = {.lex_state = 62}, [889] = {.lex_state = 151, .external_lex_state = 16}, [890] = {.lex_state = 154, .external_lex_state = 6}, @@ -5960,1937 +5961,1994 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [899] = {.lex_state = 156, .external_lex_state = 6}, + [900] = {.lex_state = 72}, + [901] = {.lex_state = 156, .external_lex_state = 13}, + [902] = {.lex_state = 156, .external_lex_state = 13}, + [903] = {.lex_state = 145}, + [904] = {.lex_state = 90}, + [905] = {.lex_state = 156, .external_lex_state = 13}, + [906] = {.lex_state = 156, .external_lex_state = 13}, + [907] = {.lex_state = 156, .external_lex_state = 13}, + [908] = {.lex_state = 62}, [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}, + [910] = {.lex_state = 154, .external_lex_state = 6}, + [911] = {.lex_state = 151, .external_lex_state = 16}, + [912] = {.lex_state = 151, .external_lex_state = 16}, + [913] = {.lex_state = 68}, + [914] = {.lex_state = 163, .external_lex_state = 2}, + [915] = {.lex_state = 68}, + [916] = {.lex_state = 171, .external_lex_state = 2}, + [917] = {.lex_state = 68}, + [918] = {.lex_state = 163, .external_lex_state = 2}, + [919] = {.lex_state = 156}, + [920] = {.lex_state = 158, .external_lex_state = 17}, + [921] = {.lex_state = 158, .external_lex_state = 17}, + [922] = {.lex_state = 158, .external_lex_state = 17}, + [923] = {.lex_state = 145}, + [924] = {.lex_state = 221, .external_lex_state = 16}, + [925] = {.lex_state = 158, .external_lex_state = 17}, + [926] = {.lex_state = 225}, + [927] = {.lex_state = 223, .external_lex_state = 16}, + [928] = {.lex_state = 62}, + [929] = {.lex_state = 151, .external_lex_state = 16}, + [930] = {.lex_state = 151, .external_lex_state = 16}, + [931] = {.lex_state = 151, .external_lex_state = 16}, + [932] = {.lex_state = 158, .external_lex_state = 17}, + [933] = {.lex_state = 225}, + [934] = {.lex_state = 223, .external_lex_state = 16}, + [935] = {.lex_state = 158, .external_lex_state = 17}, + [936] = {.lex_state = 225}, + [937] = {.lex_state = 223, .external_lex_state = 16}, + [938] = {.lex_state = 158, .external_lex_state = 17}, + [939] = {.lex_state = 158, .external_lex_state = 17}, + [940] = {.lex_state = 119}, + [941] = {.lex_state = 68}, + [942] = {.lex_state = 163, .external_lex_state = 2}, + [943] = {.lex_state = 68}, + [944] = {.lex_state = 163, .external_lex_state = 2}, [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}, + [946] = {.lex_state = 176, .external_lex_state = 19}, + [947] = {.lex_state = 72}, + [948] = {.lex_state = 158, .external_lex_state = 17}, + [949] = {.lex_state = 158, .external_lex_state = 17}, + [950] = {.lex_state = 158, .external_lex_state = 18}, + [951] = {.lex_state = 230, .external_lex_state = 17}, + [952] = {.lex_state = 230, .external_lex_state = 17}, + [953] = {.lex_state = 240, .external_lex_state = 18}, + [954] = {.lex_state = 240, .external_lex_state = 18}, + [955] = {.lex_state = 230, .external_lex_state = 17}, + [956] = {.lex_state = 230, .external_lex_state = 17}, + [957] = {.lex_state = 240, .external_lex_state = 18}, + [958] = {.lex_state = 68}, + [959] = {.lex_state = 230, .external_lex_state = 18}, + [960] = {.lex_state = 230, .external_lex_state = 18}, + [961] = {.lex_state = 158, .external_lex_state = 18}, + [962] = {.lex_state = 158, .external_lex_state = 18}, + [963] = {.lex_state = 171, .external_lex_state = 15}, + [964] = {.lex_state = 171, .external_lex_state = 15}, [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}, + [966] = {.lex_state = 68}, + [967] = {.lex_state = 163, .external_lex_state = 26}, + [968] = {.lex_state = 232, .external_lex_state = 26}, + [969] = {.lex_state = 114, .external_lex_state = 9}, + [970] = {.lex_state = 165, .external_lex_state = 25}, + [971] = {.lex_state = 165, .external_lex_state = 6}, + [972] = {.lex_state = 165, .external_lex_state = 13}, + [973] = {.lex_state = 156}, + [974] = {.lex_state = 167, .external_lex_state = 17}, + [975] = {.lex_state = 119}, + [976] = {.lex_state = 171, .external_lex_state = 2}, + [977] = {.lex_state = 68}, + [978] = {.lex_state = 171, .external_lex_state = 2}, + [979] = {.lex_state = 72}, + [980] = {.lex_state = 167, .external_lex_state = 17}, + [981] = {.lex_state = 167, .external_lex_state = 17}, + [982] = {.lex_state = 232, .external_lex_state = 17}, + [983] = {.lex_state = 232, .external_lex_state = 17}, + [984] = {.lex_state = 232, .external_lex_state = 17}, + [985] = {.lex_state = 232, .external_lex_state = 17}, + [986] = {.lex_state = 232, .external_lex_state = 18}, + [987] = {.lex_state = 232, .external_lex_state = 18}, + [988] = {.lex_state = 167, .external_lex_state = 18}, + [989] = {.lex_state = 167, .external_lex_state = 18}, + [990] = {.lex_state = 110, .external_lex_state = 23}, + [991] = {.lex_state = 176, .external_lex_state = 19}, + [992] = {.lex_state = 176, .external_lex_state = 19}, + [993] = {.lex_state = 62}, + [994] = {.lex_state = 151, .external_lex_state = 16}, + [995] = {.lex_state = 154, .external_lex_state = 6}, + [996] = {.lex_state = 151, .external_lex_state = 16}, + [997] = {.lex_state = 151, .external_lex_state = 16}, + [998] = {.lex_state = 127, .external_lex_state = 4}, + [999] = {.lex_state = 176, .external_lex_state = 19}, + [1000] = {.lex_state = 199, .external_lex_state = 5}, + [1001] = {.lex_state = 199, .external_lex_state = 5}, + [1002] = {.lex_state = 234, .external_lex_state = 7}, + [1003] = {.lex_state = 199, .external_lex_state = 5}, + [1004] = {.lex_state = 127, .external_lex_state = 4}, + [1005] = {.lex_state = 199, .external_lex_state = 7}, + [1006] = {.lex_state = 62, .external_lex_state = 13}, + [1007] = {.lex_state = 62}, + [1008] = {.lex_state = 203, .external_lex_state = 11}, + [1009] = {.lex_state = 62, .external_lex_state = 13}, + [1010] = {.lex_state = 62}, + [1011] = {.lex_state = 72}, + [1012] = {.lex_state = 236, .external_lex_state = 13}, + [1013] = {.lex_state = 236, .external_lex_state = 13}, + [1014] = {.lex_state = 145}, + [1015] = {.lex_state = 90}, + [1016] = {.lex_state = 236, .external_lex_state = 13}, + [1017] = {.lex_state = 236, .external_lex_state = 13}, + [1018] = {.lex_state = 236, .external_lex_state = 13}, + [1019] = {.lex_state = 62}, [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}, + [1021] = {.lex_state = 154, .external_lex_state = 6}, + [1022] = {.lex_state = 151, .external_lex_state = 16}, + [1023] = {.lex_state = 151, .external_lex_state = 16}, + [1024] = {.lex_state = 68}, + [1025] = {.lex_state = 163, .external_lex_state = 2}, + [1026] = {.lex_state = 68}, + [1027] = {.lex_state = 171, .external_lex_state = 2}, + [1028] = {.lex_state = 68}, + [1029] = {.lex_state = 163, .external_lex_state = 2}, + [1030] = {.lex_state = 125, .external_lex_state = 8}, + [1031] = {.lex_state = 163}, + [1032] = {.lex_state = 125, .external_lex_state = 21}, + [1033] = {.lex_state = 110, .external_lex_state = 21}, + [1034] = {.lex_state = 125, .external_lex_state = 21}, + [1035] = {.lex_state = 145}, + [1036] = {.lex_state = 221, .external_lex_state = 16}, + [1037] = {.lex_state = 125, .external_lex_state = 21}, + [1038] = {.lex_state = 225}, + [1039] = {.lex_state = 223, .external_lex_state = 16}, + [1040] = {.lex_state = 62}, + [1041] = {.lex_state = 151, .external_lex_state = 16}, + [1042] = {.lex_state = 151, .external_lex_state = 16}, + [1043] = {.lex_state = 151, .external_lex_state = 16}, + [1044] = {.lex_state = 125, .external_lex_state = 21}, + [1045] = {.lex_state = 225}, + [1046] = {.lex_state = 223, .external_lex_state = 16}, + [1047] = {.lex_state = 125, .external_lex_state = 21}, + [1048] = {.lex_state = 225}, + [1049] = {.lex_state = 223, .external_lex_state = 16}, + [1050] = {.lex_state = 125, .external_lex_state = 21}, + [1051] = {.lex_state = 125, .external_lex_state = 21}, + [1052] = {.lex_state = 116, .external_lex_state = 10}, [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}, + [1054] = {.lex_state = 116, .external_lex_state = 4}, + [1055] = {.lex_state = 127, .external_lex_state = 4}, + [1056] = {.lex_state = 56, .external_lex_state = 2}, + [1057] = {.lex_state = 234, .external_lex_state = 7}, + [1058] = {.lex_state = 56, .external_lex_state = 2}, + [1059] = {.lex_state = 127, .external_lex_state = 4}, + [1060] = {.lex_state = 72}, + [1061] = {.lex_state = 56, .external_lex_state = 2}, + [1062] = {.lex_state = 127, .external_lex_state = 4}, + [1063] = {.lex_state = 72}, + [1064] = {.lex_state = 56, .external_lex_state = 2}, + [1065] = {.lex_state = 72}, + [1066] = {.lex_state = 72}, + [1067] = {.lex_state = 127, .external_lex_state = 4}, + [1068] = {.lex_state = 242, .external_lex_state = 13}, + [1069] = {.lex_state = 242, .external_lex_state = 13}, + [1070] = {.lex_state = 72}, + [1071] = {.lex_state = 242}, + [1072] = {.lex_state = 72}, + [1073] = {.lex_state = 72}, + [1074] = {.lex_state = 116, .external_lex_state = 10}, + [1075] = {.lex_state = 127, .external_lex_state = 4}, + [1076] = {.lex_state = 72}, [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}, + [1078] = {.lex_state = 72}, + [1079] = {.lex_state = 116, .external_lex_state = 10}, + [1080] = {.lex_state = 205, .external_lex_state = 24}, + [1081] = {.lex_state = 205, .external_lex_state = 24}, + [1082] = {.lex_state = 205, .external_lex_state = 16}, + [1083] = {.lex_state = 223, .external_lex_state = 16}, + [1084] = {.lex_state = 116, .external_lex_state = 10}, + [1085] = {.lex_state = 221, .external_lex_state = 16}, + [1086] = {.lex_state = 116, .external_lex_state = 10}, + [1087] = {.lex_state = 225}, + [1088] = {.lex_state = 223, .external_lex_state = 16}, + [1089] = {.lex_state = 116, .external_lex_state = 10}, + [1090] = {.lex_state = 225}, + [1091] = {.lex_state = 223, .external_lex_state = 16}, + [1092] = {.lex_state = 225}, + [1093] = {.lex_state = 223, .external_lex_state = 16}, + [1094] = {.lex_state = 223, .external_lex_state = 16}, + [1095] = {.lex_state = 116, .external_lex_state = 10}, + [1096] = {.lex_state = 223, .external_lex_state = 16}, + [1097] = {.lex_state = 110, .external_lex_state = 23}, + [1098] = {.lex_state = 205, .external_lex_state = 22}, + [1099] = {.lex_state = 125, .external_lex_state = 23}, + [1100] = {.lex_state = 205, .external_lex_state = 22}, + [1101] = {.lex_state = 72}, + [1102] = {.lex_state = 245, .external_lex_state = 10}, + [1103] = {.lex_state = 245, .external_lex_state = 10}, + [1104] = {.lex_state = 127, .external_lex_state = 4}, + [1105] = {.lex_state = 125, .external_lex_state = 21}, + [1106] = {.lex_state = 209, .external_lex_state = 7}, + [1107] = {.lex_state = 119}, + [1108] = {.lex_state = 56}, + [1109] = {.lex_state = 72}, + [1110] = {.lex_state = 56}, + [1111] = {.lex_state = 72}, + [1112] = {.lex_state = 72}, + [1113] = {.lex_state = 209, .external_lex_state = 23}, + [1114] = {.lex_state = 121, .external_lex_state = 14}, + [1115] = {.lex_state = 121, .external_lex_state = 14}, + [1116] = {.lex_state = 121, .external_lex_state = 14}, + [1117] = {.lex_state = 121, .external_lex_state = 10}, + [1118] = {.lex_state = 125, .external_lex_state = 23}, + [1119] = {.lex_state = 209, .external_lex_state = 5}, + [1120] = {.lex_state = 209, .external_lex_state = 5}, + [1121] = {.lex_state = 209, .external_lex_state = 5}, + [1122] = {.lex_state = 127, .external_lex_state = 4}, + [1123] = {.lex_state = 209, .external_lex_state = 7}, + [1124] = {.lex_state = 163, .external_lex_state = 2}, + [1125] = {.lex_state = 163}, + [1126] = {.lex_state = 211, .external_lex_state = 13}, + [1127] = {.lex_state = 129, .external_lex_state = 11}, + [1128] = {.lex_state = 129, .external_lex_state = 11}, + [1129] = {.lex_state = 205, .external_lex_state = 24}, + [1130] = {.lex_state = 205, .external_lex_state = 24}, + [1131] = {.lex_state = 205, .external_lex_state = 16}, + [1132] = {.lex_state = 223, .external_lex_state = 16}, + [1133] = {.lex_state = 129, .external_lex_state = 11}, + [1134] = {.lex_state = 221, .external_lex_state = 16}, + [1135] = {.lex_state = 129, .external_lex_state = 11}, + [1136] = {.lex_state = 225}, + [1137] = {.lex_state = 223, .external_lex_state = 16}, + [1138] = {.lex_state = 129, .external_lex_state = 11}, + [1139] = {.lex_state = 225}, [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}, + [1141] = {.lex_state = 225}, + [1142] = {.lex_state = 223, .external_lex_state = 16}, + [1143] = {.lex_state = 223, .external_lex_state = 16}, + [1144] = {.lex_state = 129, .external_lex_state = 11}, [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}, + [1146] = {.lex_state = 72}, + [1147] = {.lex_state = 199, .external_lex_state = 27}, + [1148] = {.lex_state = 90}, + [1149] = {.lex_state = 97}, + [1150] = {.lex_state = 199, .external_lex_state = 27}, + [1151] = {.lex_state = 97, .external_lex_state = 6}, + [1152] = {.lex_state = 56, .external_lex_state = 2}, + [1153] = {.lex_state = 56, .external_lex_state = 2}, + [1154] = {.lex_state = 56, .external_lex_state = 2}, + [1155] = {.lex_state = 234, .external_lex_state = 23}, + [1156] = {.lex_state = 234, .external_lex_state = 23}, + [1157] = {.lex_state = 199, .external_lex_state = 27}, + [1158] = {.lex_state = 199, .external_lex_state = 27}, + [1159] = {.lex_state = 234, .external_lex_state = 23}, + [1160] = {.lex_state = 199, .external_lex_state = 23}, + [1161] = {.lex_state = 218, .external_lex_state = 13}, + [1162] = {.lex_state = 218, .external_lex_state = 13}, + [1163] = {.lex_state = 205, .external_lex_state = 24}, + [1164] = {.lex_state = 205, .external_lex_state = 24}, + [1165] = {.lex_state = 205, .external_lex_state = 16}, + [1166] = {.lex_state = 223, .external_lex_state = 16}, + [1167] = {.lex_state = 218, .external_lex_state = 13}, + [1168] = {.lex_state = 221, .external_lex_state = 16}, + [1169] = {.lex_state = 218, .external_lex_state = 13}, + [1170] = {.lex_state = 225}, [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}, + [1172] = {.lex_state = 218, .external_lex_state = 13}, + [1173] = {.lex_state = 225}, + [1174] = {.lex_state = 223, .external_lex_state = 16}, + [1175] = {.lex_state = 225}, + [1176] = {.lex_state = 223, .external_lex_state = 16}, + [1177] = {.lex_state = 223, .external_lex_state = 16}, + [1178] = {.lex_state = 218, .external_lex_state = 13}, + [1179] = {.lex_state = 223, .external_lex_state = 16}, + [1180] = {.lex_state = 121, .external_lex_state = 3}, + [1181] = {.lex_state = 163}, + [1182] = {.lex_state = 121, .external_lex_state = 14}, + [1183] = {.lex_state = 121, .external_lex_state = 14}, + [1184] = {.lex_state = 205, .external_lex_state = 24}, + [1185] = {.lex_state = 205, .external_lex_state = 24}, + [1186] = {.lex_state = 205, .external_lex_state = 16}, + [1187] = {.lex_state = 223, .external_lex_state = 16}, + [1188] = {.lex_state = 121, .external_lex_state = 14}, + [1189] = {.lex_state = 221, .external_lex_state = 16}, + [1190] = {.lex_state = 121, .external_lex_state = 14}, + [1191] = {.lex_state = 225}, + [1192] = {.lex_state = 223, .external_lex_state = 16}, + [1193] = {.lex_state = 121, .external_lex_state = 14}, + [1194] = {.lex_state = 225}, + [1195] = {.lex_state = 223, .external_lex_state = 16}, + [1196] = {.lex_state = 225}, + [1197] = {.lex_state = 223, .external_lex_state = 16}, + [1198] = {.lex_state = 223, .external_lex_state = 16}, + [1199] = {.lex_state = 121, .external_lex_state = 14}, + [1200] = {.lex_state = 223, .external_lex_state = 16}, + [1201] = {.lex_state = 121, .external_lex_state = 10}, + [1202] = {.lex_state = 121, .external_lex_state = 10}, + [1203] = {.lex_state = 205, .external_lex_state = 24}, + [1204] = {.lex_state = 205, .external_lex_state = 24}, + [1205] = {.lex_state = 205, .external_lex_state = 16}, [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}, + [1207] = {.lex_state = 121, .external_lex_state = 10}, + [1208] = {.lex_state = 221, .external_lex_state = 16}, + [1209] = {.lex_state = 121, .external_lex_state = 10}, + [1210] = {.lex_state = 225}, + [1211] = {.lex_state = 223, .external_lex_state = 16}, + [1212] = {.lex_state = 121, .external_lex_state = 10}, + [1213] = {.lex_state = 225}, [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}, + [1215] = {.lex_state = 225}, + [1216] = {.lex_state = 223, .external_lex_state = 16}, + [1217] = {.lex_state = 223, .external_lex_state = 16}, + [1218] = {.lex_state = 121, .external_lex_state = 10}, [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}, + [1220] = {.lex_state = 163, .external_lex_state = 15}, + [1221] = {.lex_state = 163, .external_lex_state = 15}, + [1222] = {.lex_state = 205, .external_lex_state = 24}, + [1223] = {.lex_state = 205, .external_lex_state = 24}, + [1224] = {.lex_state = 205, .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}, + [1226] = {.lex_state = 163, .external_lex_state = 15}, + [1227] = {.lex_state = 221, .external_lex_state = 16}, + [1228] = {.lex_state = 163, .external_lex_state = 15}, + [1229] = {.lex_state = 225}, + [1230] = {.lex_state = 223, .external_lex_state = 16}, + [1231] = {.lex_state = 163, .external_lex_state = 15}, + [1232] = {.lex_state = 225}, + [1233] = {.lex_state = 223, .external_lex_state = 16}, + [1234] = {.lex_state = 225}, + [1235] = {.lex_state = 223, .external_lex_state = 16}, + [1236] = {.lex_state = 223, .external_lex_state = 16}, + [1237] = {.lex_state = 163, .external_lex_state = 15}, + [1238] = {.lex_state = 223, .external_lex_state = 16}, + [1239] = {.lex_state = 90, .external_lex_state = 13}, [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}, + [1241] = {.lex_state = 205, .external_lex_state = 24}, + [1242] = {.lex_state = 205, .external_lex_state = 16}, + [1243] = {.lex_state = 223, .external_lex_state = 16}, + [1244] = {.lex_state = 90, .external_lex_state = 13}, + [1245] = {.lex_state = 221, .external_lex_state = 16}, + [1246] = {.lex_state = 90, .external_lex_state = 13}, + [1247] = {.lex_state = 225}, + [1248] = {.lex_state = 223, .external_lex_state = 16}, + [1249] = {.lex_state = 90, .external_lex_state = 13}, + [1250] = {.lex_state = 225}, + [1251] = {.lex_state = 223, .external_lex_state = 16}, + [1252] = {.lex_state = 225}, + [1253] = {.lex_state = 223, .external_lex_state = 16}, + [1254] = {.lex_state = 223, .external_lex_state = 16}, + [1255] = {.lex_state = 90, .external_lex_state = 13}, + [1256] = {.lex_state = 223, .external_lex_state = 16}, + [1257] = {.lex_state = 203, .external_lex_state = 12}, + [1258] = {.lex_state = 151, .external_lex_state = 24}, + [1259] = {.lex_state = 203, .external_lex_state = 12}, + [1260] = {.lex_state = 151, .external_lex_state = 24}, + [1261] = {.lex_state = 129, .external_lex_state = 12}, + [1262] = {.lex_state = 72}, + [1263] = {.lex_state = 112, .external_lex_state = 5}, + [1264] = {.lex_state = 205, .external_lex_state = 24}, + [1265] = {.lex_state = 205, .external_lex_state = 24}, + [1266] = {.lex_state = 145}, + [1267] = {.lex_state = 90}, + [1268] = {.lex_state = 205, .external_lex_state = 24}, + [1269] = {.lex_state = 205, .external_lex_state = 24}, + [1270] = {.lex_state = 205, .external_lex_state = 24}, + [1271] = {.lex_state = 112, .external_lex_state = 5}, + [1272] = {.lex_state = 62}, + [1273] = {.lex_state = 151, .external_lex_state = 16}, + [1274] = {.lex_state = 154, .external_lex_state = 6}, + [1275] = {.lex_state = 151, .external_lex_state = 16}, + [1276] = {.lex_state = 151, .external_lex_state = 16}, + [1277] = {.lex_state = 68}, + [1278] = {.lex_state = 163, .external_lex_state = 2}, + [1279] = {.lex_state = 68}, + [1280] = {.lex_state = 171, .external_lex_state = 2}, + [1281] = {.lex_state = 68}, + [1282] = {.lex_state = 163, .external_lex_state = 2}, + [1283] = {.lex_state = 223, .external_lex_state = 24}, + [1284] = {.lex_state = 223, .external_lex_state = 24}, + [1285] = {.lex_state = 223, .external_lex_state = 24}, + [1286] = {.lex_state = 145}, + [1287] = {.lex_state = 221, .external_lex_state = 16}, + [1288] = {.lex_state = 223, .external_lex_state = 24}, + [1289] = {.lex_state = 225}, + [1290] = {.lex_state = 223, .external_lex_state = 16}, + [1291] = {.lex_state = 62}, + [1292] = {.lex_state = 151, .external_lex_state = 16}, + [1293] = {.lex_state = 151, .external_lex_state = 16}, + [1294] = {.lex_state = 151, .external_lex_state = 16}, + [1295] = {.lex_state = 223, .external_lex_state = 24}, + [1296] = {.lex_state = 225}, + [1297] = {.lex_state = 223, .external_lex_state = 16}, + [1298] = {.lex_state = 223, .external_lex_state = 24}, + [1299] = {.lex_state = 225}, + [1300] = {.lex_state = 223, .external_lex_state = 16}, + [1301] = {.lex_state = 112, .external_lex_state = 5}, + [1302] = {.lex_state = 223, .external_lex_state = 16}, + [1303] = {.lex_state = 223, .external_lex_state = 24}, + [1304] = {.lex_state = 223, .external_lex_state = 24}, + [1305] = {.lex_state = 205, .external_lex_state = 24}, + [1306] = {.lex_state = 205, .external_lex_state = 24}, + [1307] = {.lex_state = 205, .external_lex_state = 16}, + [1308] = {.lex_state = 223, .external_lex_state = 16}, + [1309] = {.lex_state = 112, .external_lex_state = 5}, + [1310] = {.lex_state = 223, .external_lex_state = 16}, + [1311] = {.lex_state = 112, .external_lex_state = 5}, + [1312] = {.lex_state = 223, .external_lex_state = 16}, + [1313] = {.lex_state = 112, .external_lex_state = 5}, + [1314] = {.lex_state = 223, .external_lex_state = 16}, + [1315] = {.lex_state = 112, .external_lex_state = 5}, + [1316] = {.lex_state = 223, .external_lex_state = 16}, + [1317] = {.lex_state = 163, .external_lex_state = 15}, + [1318] = {.lex_state = 116, .external_lex_state = 4}, + [1319] = {.lex_state = 56, .external_lex_state = 2}, + [1320] = {.lex_state = 68}, + [1321] = {.lex_state = 240, .external_lex_state = 18}, + [1322] = {.lex_state = 56, .external_lex_state = 2}, + [1323] = {.lex_state = 68}, + [1324] = {.lex_state = 230, .external_lex_state = 18}, + [1325] = {.lex_state = 68}, + [1326] = {.lex_state = 72}, + [1327] = {.lex_state = 56, .external_lex_state = 2}, + [1328] = {.lex_state = 72}, + [1329] = {.lex_state = 72}, + [1330] = {.lex_state = 116, .external_lex_state = 4}, + [1331] = {.lex_state = 72}, + [1332] = {.lex_state = 116, .external_lex_state = 4}, + [1333] = {.lex_state = 119}, + [1334] = {.lex_state = 163, .external_lex_state = 26}, + [1335] = {.lex_state = 205, .external_lex_state = 22}, + [1336] = {.lex_state = 56}, + [1337] = {.lex_state = 72}, + [1338] = {.lex_state = 68}, + [1339] = {.lex_state = 68}, + [1340] = {.lex_state = 207, .external_lex_state = 2}, + [1341] = {.lex_state = 56}, + [1342] = {.lex_state = 72}, + [1343] = {.lex_state = 56, .external_lex_state = 20}, + [1344] = {.lex_state = 72}, + [1345] = {.lex_state = 230, .external_lex_state = 26}, + [1346] = {.lex_state = 156, .external_lex_state = 6}, + [1347] = {.lex_state = 163}, + [1348] = {.lex_state = 156, .external_lex_state = 25}, + [1349] = {.lex_state = 156, .external_lex_state = 25}, + [1350] = {.lex_state = 156, .external_lex_state = 25}, + [1351] = {.lex_state = 156, .external_lex_state = 25}, + [1352] = {.lex_state = 156, .external_lex_state = 25}, + [1353] = {.lex_state = 145}, + [1354] = {.lex_state = 221, .external_lex_state = 16}, + [1355] = {.lex_state = 156, .external_lex_state = 25}, + [1356] = {.lex_state = 225}, + [1357] = {.lex_state = 223, .external_lex_state = 16}, + [1358] = {.lex_state = 62}, + [1359] = {.lex_state = 151, .external_lex_state = 16}, + [1360] = {.lex_state = 151, .external_lex_state = 16}, + [1361] = {.lex_state = 151, .external_lex_state = 16}, + [1362] = {.lex_state = 156, .external_lex_state = 25}, + [1363] = {.lex_state = 225}, + [1364] = {.lex_state = 223, .external_lex_state = 16}, + [1365] = {.lex_state = 156, .external_lex_state = 25}, + [1366] = {.lex_state = 225}, + [1367] = {.lex_state = 223, .external_lex_state = 16}, + [1368] = {.lex_state = 156, .external_lex_state = 25}, + [1369] = {.lex_state = 156, .external_lex_state = 25}, + [1370] = {.lex_state = 156, .external_lex_state = 13}, + [1371] = {.lex_state = 156, .external_lex_state = 13}, + [1372] = {.lex_state = 156, .external_lex_state = 13}, + [1373] = {.lex_state = 145}, + [1374] = {.lex_state = 221, .external_lex_state = 16}, + [1375] = {.lex_state = 156, .external_lex_state = 13}, + [1376] = {.lex_state = 225}, + [1377] = {.lex_state = 223, .external_lex_state = 16}, + [1378] = {.lex_state = 62}, + [1379] = {.lex_state = 151, .external_lex_state = 16}, + [1380] = {.lex_state = 151, .external_lex_state = 16}, + [1381] = {.lex_state = 151, .external_lex_state = 16}, + [1382] = {.lex_state = 156, .external_lex_state = 13}, + [1383] = {.lex_state = 225}, + [1384] = {.lex_state = 223, .external_lex_state = 16}, + [1385] = {.lex_state = 156, .external_lex_state = 13}, + [1386] = {.lex_state = 225}, + [1387] = {.lex_state = 223, .external_lex_state = 16}, + [1388] = {.lex_state = 156, .external_lex_state = 13}, + [1389] = {.lex_state = 156, .external_lex_state = 13}, + [1390] = {.lex_state = 158, .external_lex_state = 17}, + [1391] = {.lex_state = 158, .external_lex_state = 17}, + [1392] = {.lex_state = 205, .external_lex_state = 24}, + [1393] = {.lex_state = 205, .external_lex_state = 24}, + [1394] = {.lex_state = 205, .external_lex_state = 16}, + [1395] = {.lex_state = 223, .external_lex_state = 16}, + [1396] = {.lex_state = 158, .external_lex_state = 17}, + [1397] = {.lex_state = 221, .external_lex_state = 16}, + [1398] = {.lex_state = 158, .external_lex_state = 17}, + [1399] = {.lex_state = 225}, + [1400] = {.lex_state = 223, .external_lex_state = 16}, + [1401] = {.lex_state = 158, .external_lex_state = 17}, + [1402] = {.lex_state = 225}, + [1403] = {.lex_state = 223, .external_lex_state = 16}, [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}, + [1406] = {.lex_state = 223, .external_lex_state = 16}, + [1407] = {.lex_state = 158, .external_lex_state = 17}, + [1408] = {.lex_state = 223, .external_lex_state = 16}, + [1409] = {.lex_state = 163, .external_lex_state = 26}, + [1410] = {.lex_state = 68}, + [1411] = {.lex_state = 230, .external_lex_state = 17}, + [1412] = {.lex_state = 230, .external_lex_state = 17}, + [1413] = {.lex_state = 240, .external_lex_state = 18}, + [1414] = {.lex_state = 230, .external_lex_state = 17}, + [1415] = {.lex_state = 68}, + [1416] = {.lex_state = 230, .external_lex_state = 18}, + [1417] = {.lex_state = 171, .external_lex_state = 15}, + [1418] = {.lex_state = 232, .external_lex_state = 18}, + [1419] = {.lex_state = 119}, + [1420] = {.lex_state = 56}, + [1421] = {.lex_state = 72}, + [1422] = {.lex_state = 56}, + [1423] = {.lex_state = 72}, + [1424] = {.lex_state = 72}, + [1425] = {.lex_state = 232, .external_lex_state = 26}, + [1426] = {.lex_state = 165, .external_lex_state = 25}, + [1427] = {.lex_state = 165, .external_lex_state = 25}, + [1428] = {.lex_state = 165, .external_lex_state = 25}, + [1429] = {.lex_state = 165, .external_lex_state = 13}, + [1430] = {.lex_state = 163, .external_lex_state = 26}, + [1431] = {.lex_state = 232, .external_lex_state = 17}, + [1432] = {.lex_state = 232, .external_lex_state = 17}, + [1433] = {.lex_state = 232, .external_lex_state = 17}, + [1434] = {.lex_state = 232, .external_lex_state = 18}, + [1435] = {.lex_state = 127, .external_lex_state = 4}, + [1436] = {.lex_state = 221, .external_lex_state = 16}, + [1437] = {.lex_state = 176, .external_lex_state = 19}, + [1438] = {.lex_state = 225}, + [1439] = {.lex_state = 223, .external_lex_state = 16}, + [1440] = {.lex_state = 62}, + [1441] = {.lex_state = 151, .external_lex_state = 16}, + [1442] = {.lex_state = 151, .external_lex_state = 16}, + [1443] = {.lex_state = 151, .external_lex_state = 16}, + [1444] = {.lex_state = 176, .external_lex_state = 19}, + [1445] = {.lex_state = 225}, + [1446] = {.lex_state = 223, .external_lex_state = 16}, + [1447] = {.lex_state = 176, .external_lex_state = 19}, + [1448] = {.lex_state = 225}, + [1449] = {.lex_state = 223, .external_lex_state = 16}, + [1450] = {.lex_state = 199, .external_lex_state = 5}, + [1451] = {.lex_state = 127, .external_lex_state = 4}, + [1452] = {.lex_state = 62}, + [1453] = {.lex_state = 62}, + [1454] = {.lex_state = 236, .external_lex_state = 13}, + [1455] = {.lex_state = 236, .external_lex_state = 13}, + [1456] = {.lex_state = 236, .external_lex_state = 13}, + [1457] = {.lex_state = 145}, + [1458] = {.lex_state = 221, .external_lex_state = 16}, + [1459] = {.lex_state = 236, .external_lex_state = 13}, + [1460] = {.lex_state = 225}, + [1461] = {.lex_state = 223, .external_lex_state = 16}, + [1462] = {.lex_state = 62}, + [1463] = {.lex_state = 151, .external_lex_state = 16}, + [1464] = {.lex_state = 151, .external_lex_state = 16}, + [1465] = {.lex_state = 151, .external_lex_state = 16}, + [1466] = {.lex_state = 236, .external_lex_state = 13}, + [1467] = {.lex_state = 225}, + [1468] = {.lex_state = 223, .external_lex_state = 16}, + [1469] = {.lex_state = 236, .external_lex_state = 13}, + [1470] = {.lex_state = 225}, + [1471] = {.lex_state = 223, .external_lex_state = 16}, + [1472] = {.lex_state = 236, .external_lex_state = 13}, + [1473] = {.lex_state = 236, .external_lex_state = 13}, + [1474] = {.lex_state = 125, .external_lex_state = 21}, + [1475] = {.lex_state = 125, .external_lex_state = 21}, + [1476] = {.lex_state = 205, .external_lex_state = 24}, + [1477] = {.lex_state = 205, .external_lex_state = 24}, + [1478] = {.lex_state = 205, .external_lex_state = 16}, + [1479] = {.lex_state = 223, .external_lex_state = 16}, + [1480] = {.lex_state = 125, .external_lex_state = 21}, + [1481] = {.lex_state = 221, .external_lex_state = 16}, + [1482] = {.lex_state = 125, .external_lex_state = 21}, + [1483] = {.lex_state = 225}, + [1484] = {.lex_state = 223, .external_lex_state = 16}, + [1485] = {.lex_state = 125, .external_lex_state = 21}, + [1486] = {.lex_state = 225}, + [1487] = {.lex_state = 223, .external_lex_state = 16}, + [1488] = {.lex_state = 225}, + [1489] = {.lex_state = 223, .external_lex_state = 16}, [1490] = {.lex_state = 223, .external_lex_state = 16}, - [1491] = {.lex_state = 116, .external_lex_state = 10}, + [1491] = {.lex_state = 125, .external_lex_state = 21}, [1492] = {.lex_state = 223, .external_lex_state = 16}, [1493] = {.lex_state = 116, .external_lex_state = 10}, - [1494] = {.lex_state = 223, .external_lex_state = 16}, + [1494] = {.lex_state = 127, .external_lex_state = 4}, [1495] = {.lex_state = 127, .external_lex_state = 4}, - [1496] = {.lex_state = 245, .external_lex_state = 10}, - [1497] = {.lex_state = 245, .external_lex_state = 10}, + [1496] = {.lex_state = 56, .external_lex_state = 2}, + [1497] = {.lex_state = 56, .external_lex_state = 2}, [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}, + [1499] = {.lex_state = 72}, + [1500] = {.lex_state = 72}, + [1501] = {.lex_state = 173, .external_lex_state = 2}, + [1502] = {.lex_state = 242}, + [1503] = {.lex_state = 242, .external_lex_state = 13}, + [1504] = {.lex_state = 173, .external_lex_state = 2}, + [1505] = {.lex_state = 242}, + [1506] = {.lex_state = 127, .external_lex_state = 4}, + [1507] = {.lex_state = 72}, + [1508] = {.lex_state = 72}, + [1509] = {.lex_state = 127, .external_lex_state = 4}, + [1510] = {.lex_state = 72}, + [1511] = {.lex_state = 127, .external_lex_state = 4}, + [1512] = {.lex_state = 72}, + [1513] = {.lex_state = 127, .external_lex_state = 4}, + [1514] = {.lex_state = 72}, + [1515] = {.lex_state = 116, .external_lex_state = 10}, + [1516] = {.lex_state = 116, .external_lex_state = 10}, + [1517] = {.lex_state = 116, .external_lex_state = 10}, + [1518] = {.lex_state = 223, .external_lex_state = 16}, + [1519] = {.lex_state = 205, .external_lex_state = 24}, + [1520] = {.lex_state = 205, .external_lex_state = 24}, + [1521] = {.lex_state = 205, .external_lex_state = 16}, [1522] = {.lex_state = 223, .external_lex_state = 16}, - [1523] = {.lex_state = 129, .external_lex_state = 11}, + [1523] = {.lex_state = 116, .external_lex_state = 10}, [1524] = {.lex_state = 223, .external_lex_state = 16}, - [1525] = {.lex_state = 129, .external_lex_state = 11}, + [1525] = {.lex_state = 116, .external_lex_state = 10}, [1526] = {.lex_state = 223, .external_lex_state = 16}, - [1527] = {.lex_state = 129, .external_lex_state = 11}, + [1527] = {.lex_state = 116, .external_lex_state = 10}, [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}, + [1529] = {.lex_state = 116, .external_lex_state = 10}, + [1530] = {.lex_state = 223, .external_lex_state = 16}, + [1531] = {.lex_state = 127, .external_lex_state = 4}, + [1532] = {.lex_state = 245, .external_lex_state = 10}, + [1533] = {.lex_state = 245, .external_lex_state = 10}, + [1534] = {.lex_state = 127, .external_lex_state = 4}, + [1535] = {.lex_state = 245, .external_lex_state = 10}, + [1536] = {.lex_state = 125, .external_lex_state = 21}, + [1537] = {.lex_state = 125, .external_lex_state = 23}, + [1538] = {.lex_state = 72}, + [1539] = {.lex_state = 127, .external_lex_state = 10}, + [1540] = {.lex_state = 127, .external_lex_state = 10}, + [1541] = {.lex_state = 72}, + [1542] = {.lex_state = 209, .external_lex_state = 27}, + [1543] = {.lex_state = 209, .external_lex_state = 27}, + [1544] = {.lex_state = 209, .external_lex_state = 27}, + [1545] = {.lex_state = 209, .external_lex_state = 27}, + [1546] = {.lex_state = 209, .external_lex_state = 23}, + [1547] = {.lex_state = 209, .external_lex_state = 5}, + [1548] = {.lex_state = 163, .external_lex_state = 2}, + [1549] = {.lex_state = 129, .external_lex_state = 11}, + [1550] = {.lex_state = 129, .external_lex_state = 11}, + [1551] = {.lex_state = 129, .external_lex_state = 11}, + [1552] = {.lex_state = 223, .external_lex_state = 16}, + [1553] = {.lex_state = 205, .external_lex_state = 24}, [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}, + [1555] = {.lex_state = 205, .external_lex_state = 16}, + [1556] = {.lex_state = 223, .external_lex_state = 16}, + [1557] = {.lex_state = 129, .external_lex_state = 11}, + [1558] = {.lex_state = 223, .external_lex_state = 16}, + [1559] = {.lex_state = 129, .external_lex_state = 11}, + [1560] = {.lex_state = 223, .external_lex_state = 16}, + [1561] = {.lex_state = 129, .external_lex_state = 11}, + [1562] = {.lex_state = 223, .external_lex_state = 16}, + [1563] = {.lex_state = 129, .external_lex_state = 11}, + [1564] = {.lex_state = 223, .external_lex_state = 16}, + [1565] = {.lex_state = 199, .external_lex_state = 27}, + [1566] = {.lex_state = 199, .external_lex_state = 27}, + [1567] = {.lex_state = 234, .external_lex_state = 23}, + [1568] = {.lex_state = 72}, + [1569] = {.lex_state = 199, .external_lex_state = 27}, + [1570] = {.lex_state = 234, .external_lex_state = 27}, + [1571] = {.lex_state = 145}, + [1572] = {.lex_state = 90}, + [1573] = {.lex_state = 234, .external_lex_state = 27}, + [1574] = {.lex_state = 234, .external_lex_state = 27}, + [1575] = {.lex_state = 234, .external_lex_state = 27}, + [1576] = {.lex_state = 62}, + [1577] = {.lex_state = 151, .external_lex_state = 16}, + [1578] = {.lex_state = 154, .external_lex_state = 6}, + [1579] = {.lex_state = 151, .external_lex_state = 16}, + [1580] = {.lex_state = 151, .external_lex_state = 16}, + [1581] = {.lex_state = 68}, + [1582] = {.lex_state = 163, .external_lex_state = 2}, + [1583] = {.lex_state = 68}, + [1584] = {.lex_state = 171, .external_lex_state = 2}, + [1585] = {.lex_state = 68}, + [1586] = {.lex_state = 163, .external_lex_state = 2}, + [1587] = {.lex_state = 218, .external_lex_state = 13}, + [1588] = {.lex_state = 218, .external_lex_state = 13}, + [1589] = {.lex_state = 218, .external_lex_state = 13}, [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}, + [1591] = {.lex_state = 205, .external_lex_state = 24}, + [1592] = {.lex_state = 205, .external_lex_state = 24}, + [1593] = {.lex_state = 205, .external_lex_state = 16}, [1594] = {.lex_state = 223, .external_lex_state = 16}, - [1595] = {.lex_state = 121, .external_lex_state = 10}, + [1595] = {.lex_state = 218, .external_lex_state = 13}, [1596] = {.lex_state = 223, .external_lex_state = 16}, - [1597] = {.lex_state = 121, .external_lex_state = 10}, + [1597] = {.lex_state = 218, .external_lex_state = 13}, [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}, + [1599] = {.lex_state = 218, .external_lex_state = 13}, + [1600] = {.lex_state = 223, .external_lex_state = 16}, + [1601] = {.lex_state = 218, .external_lex_state = 13}, [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}, + [1603] = {.lex_state = 121, .external_lex_state = 3}, + [1604] = {.lex_state = 121, .external_lex_state = 14}, + [1605] = {.lex_state = 121, .external_lex_state = 14}, + [1606] = {.lex_state = 121, .external_lex_state = 14}, + [1607] = {.lex_state = 223, .external_lex_state = 16}, + [1608] = {.lex_state = 205, .external_lex_state = 24}, + [1609] = {.lex_state = 205, .external_lex_state = 24}, + [1610] = {.lex_state = 205, .external_lex_state = 16}, + [1611] = {.lex_state = 223, .external_lex_state = 16}, + [1612] = {.lex_state = 121, .external_lex_state = 14}, + [1613] = {.lex_state = 223, .external_lex_state = 16}, + [1614] = {.lex_state = 121, .external_lex_state = 14}, + [1615] = {.lex_state = 223, .external_lex_state = 16}, + [1616] = {.lex_state = 121, .external_lex_state = 14}, + [1617] = {.lex_state = 223, .external_lex_state = 16}, + [1618] = {.lex_state = 121, .external_lex_state = 14}, + [1619] = {.lex_state = 223, .external_lex_state = 16}, + [1620] = {.lex_state = 121, .external_lex_state = 10}, + [1621] = {.lex_state = 121, .external_lex_state = 10}, + [1622] = {.lex_state = 121, .external_lex_state = 10}, + [1623] = {.lex_state = 223, .external_lex_state = 16}, + [1624] = {.lex_state = 205, .external_lex_state = 24}, + [1625] = {.lex_state = 205, .external_lex_state = 24}, + [1626] = {.lex_state = 205, .external_lex_state = 16}, + [1627] = {.lex_state = 223, .external_lex_state = 16}, + [1628] = {.lex_state = 121, .external_lex_state = 10}, + [1629] = {.lex_state = 223, .external_lex_state = 16}, + [1630] = {.lex_state = 121, .external_lex_state = 10}, + [1631] = {.lex_state = 223, .external_lex_state = 16}, + [1632] = {.lex_state = 121, .external_lex_state = 10}, + [1633] = {.lex_state = 223, .external_lex_state = 16}, + [1634] = {.lex_state = 121, .external_lex_state = 10}, + [1635] = {.lex_state = 223, .external_lex_state = 16}, + [1636] = {.lex_state = 163, .external_lex_state = 15}, + [1637] = {.lex_state = 163, .external_lex_state = 15}, + [1638] = {.lex_state = 163, .external_lex_state = 15}, + [1639] = {.lex_state = 223, .external_lex_state = 16}, + [1640] = {.lex_state = 205, .external_lex_state = 24}, + [1641] = {.lex_state = 205, .external_lex_state = 24}, + [1642] = {.lex_state = 205, .external_lex_state = 16}, + [1643] = {.lex_state = 223, .external_lex_state = 16}, + [1644] = {.lex_state = 163, .external_lex_state = 15}, + [1645] = {.lex_state = 223, .external_lex_state = 16}, + [1646] = {.lex_state = 163, .external_lex_state = 15}, + [1647] = {.lex_state = 223, .external_lex_state = 16}, + [1648] = {.lex_state = 163, .external_lex_state = 15}, + [1649] = {.lex_state = 223, .external_lex_state = 16}, + [1650] = {.lex_state = 163, .external_lex_state = 15}, [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}, + [1652] = {.lex_state = 90, .external_lex_state = 13}, + [1653] = {.lex_state = 90, .external_lex_state = 13}, + [1654] = {.lex_state = 90, .external_lex_state = 13}, + [1655] = {.lex_state = 223, .external_lex_state = 16}, [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}, + [1657] = {.lex_state = 205, .external_lex_state = 24}, + [1658] = {.lex_state = 205, .external_lex_state = 16}, + [1659] = {.lex_state = 223, .external_lex_state = 16}, + [1660] = {.lex_state = 90, .external_lex_state = 13}, + [1661] = {.lex_state = 223, .external_lex_state = 16}, + [1662] = {.lex_state = 90, .external_lex_state = 13}, [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}, + [1664] = {.lex_state = 90, .external_lex_state = 13}, + [1665] = {.lex_state = 223, .external_lex_state = 16}, + [1666] = {.lex_state = 90, .external_lex_state = 13}, + [1667] = {.lex_state = 223, .external_lex_state = 16}, + [1668] = {.lex_state = 151, .external_lex_state = 24}, + [1669] = {.lex_state = 151, .external_lex_state = 16}, + [1670] = {.lex_state = 151, .external_lex_state = 24}, + [1671] = {.lex_state = 151, .external_lex_state = 16}, + [1672] = {.lex_state = 205, .external_lex_state = 24}, + [1673] = {.lex_state = 205, .external_lex_state = 24}, + [1674] = {.lex_state = 205, .external_lex_state = 24}, + [1675] = {.lex_state = 145}, + [1676] = {.lex_state = 221, .external_lex_state = 16}, + [1677] = {.lex_state = 205, .external_lex_state = 24}, + [1678] = {.lex_state = 225}, + [1679] = {.lex_state = 223, .external_lex_state = 16}, + [1680] = {.lex_state = 62}, + [1681] = {.lex_state = 151, .external_lex_state = 16}, + [1682] = {.lex_state = 151, .external_lex_state = 16}, + [1683] = {.lex_state = 151, .external_lex_state = 16}, + [1684] = {.lex_state = 205, .external_lex_state = 24}, + [1685] = {.lex_state = 225}, + [1686] = {.lex_state = 223, .external_lex_state = 16}, + [1687] = {.lex_state = 205, .external_lex_state = 24}, + [1688] = {.lex_state = 225}, + [1689] = {.lex_state = 223, .external_lex_state = 16}, + [1690] = {.lex_state = 205, .external_lex_state = 24}, + [1691] = {.lex_state = 205, .external_lex_state = 24}, + [1692] = {.lex_state = 223, .external_lex_state = 24}, + [1693] = {.lex_state = 223, .external_lex_state = 24}, + [1694] = {.lex_state = 205, .external_lex_state = 24}, + [1695] = {.lex_state = 205, .external_lex_state = 24}, + [1696] = {.lex_state = 205, .external_lex_state = 16}, + [1697] = {.lex_state = 223, .external_lex_state = 16}, + [1698] = {.lex_state = 223, .external_lex_state = 24}, + [1699] = {.lex_state = 221, .external_lex_state = 16}, + [1700] = {.lex_state = 223, .external_lex_state = 24}, + [1701] = {.lex_state = 225}, + [1702] = {.lex_state = 223, .external_lex_state = 16}, + [1703] = {.lex_state = 223, .external_lex_state = 24}, + [1704] = {.lex_state = 225}, + [1705] = {.lex_state = 223, .external_lex_state = 16}, + [1706] = {.lex_state = 225}, + [1707] = {.lex_state = 223, .external_lex_state = 16}, + [1708] = {.lex_state = 223, .external_lex_state = 16}, + [1709] = {.lex_state = 223, .external_lex_state = 24}, + [1710] = {.lex_state = 223, .external_lex_state = 16}, + [1711] = {.lex_state = 112, .external_lex_state = 5}, + [1712] = {.lex_state = 112, .external_lex_state = 5}, + [1713] = {.lex_state = 112, .external_lex_state = 5}, + [1714] = {.lex_state = 112, .external_lex_state = 5}, + [1715] = {.lex_state = 223, .external_lex_state = 16}, + [1716] = {.lex_state = 112, .external_lex_state = 5}, + [1717] = {.lex_state = 223, .external_lex_state = 16}, + [1718] = {.lex_state = 112, .external_lex_state = 5}, + [1719] = {.lex_state = 223, .external_lex_state = 16}, + [1720] = {.lex_state = 112, .external_lex_state = 5}, + [1721] = {.lex_state = 112, .external_lex_state = 5}, + [1722] = {.lex_state = 163, .external_lex_state = 15}, + [1723] = {.lex_state = 72}, + [1724] = {.lex_state = 68}, + [1725] = {.lex_state = 56, .external_lex_state = 2}, + [1726] = {.lex_state = 240, .external_lex_state = 18}, + [1727] = {.lex_state = 68}, + [1728] = {.lex_state = 68}, + [1729] = {.lex_state = 72}, + [1730] = {.lex_state = 72}, + [1731] = {.lex_state = 68}, + [1732] = {.lex_state = 72}, + [1733] = {.lex_state = 72}, + [1734] = {.lex_state = 72}, + [1735] = {.lex_state = 68}, + [1736] = {.lex_state = 72}, + [1737] = {.lex_state = 72}, + [1738] = {.lex_state = 72}, + [1739] = {.lex_state = 163, .external_lex_state = 26}, + [1740] = {.lex_state = 163, .external_lex_state = 26}, + [1741] = {.lex_state = 72}, + [1742] = {.lex_state = 163, .external_lex_state = 13}, + [1743] = {.lex_state = 163, .external_lex_state = 13}, + [1744] = {.lex_state = 68}, + [1745] = {.lex_state = 68}, + [1746] = {.lex_state = 72}, + [1747] = {.lex_state = 230, .external_lex_state = 28}, + [1748] = {.lex_state = 90}, + [1749] = {.lex_state = 97}, + [1750] = {.lex_state = 230, .external_lex_state = 28}, + [1751] = {.lex_state = 97, .external_lex_state = 6}, + [1752] = {.lex_state = 56, .external_lex_state = 2}, + [1753] = {.lex_state = 56, .external_lex_state = 2}, + [1754] = {.lex_state = 56, .external_lex_state = 2}, + [1755] = {.lex_state = 240, .external_lex_state = 26}, + [1756] = {.lex_state = 240, .external_lex_state = 26}, + [1757] = {.lex_state = 230, .external_lex_state = 28}, + [1758] = {.lex_state = 230, .external_lex_state = 28}, + [1759] = {.lex_state = 240, .external_lex_state = 26}, + [1760] = {.lex_state = 230, .external_lex_state = 26}, + [1761] = {.lex_state = 156, .external_lex_state = 6}, + [1762] = {.lex_state = 163}, + [1763] = {.lex_state = 156, .external_lex_state = 25}, + [1764] = {.lex_state = 156, .external_lex_state = 25}, [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}, + [1766] = {.lex_state = 205, .external_lex_state = 24}, + [1767] = {.lex_state = 205, .external_lex_state = 16}, + [1768] = {.lex_state = 223, .external_lex_state = 16}, + [1769] = {.lex_state = 156, .external_lex_state = 25}, + [1770] = {.lex_state = 221, .external_lex_state = 16}, + [1771] = {.lex_state = 156, .external_lex_state = 25}, + [1772] = {.lex_state = 225}, [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}, + [1774] = {.lex_state = 156, .external_lex_state = 25}, + [1775] = {.lex_state = 225}, + [1776] = {.lex_state = 223, .external_lex_state = 16}, + [1777] = {.lex_state = 225}, + [1778] = {.lex_state = 223, .external_lex_state = 16}, + [1779] = {.lex_state = 223, .external_lex_state = 16}, + [1780] = {.lex_state = 156, .external_lex_state = 25}, + [1781] = {.lex_state = 223, .external_lex_state = 16}, + [1782] = {.lex_state = 156, .external_lex_state = 13}, + [1783] = {.lex_state = 156, .external_lex_state = 13}, + [1784] = {.lex_state = 205, .external_lex_state = 24}, + [1785] = {.lex_state = 205, .external_lex_state = 24}, + [1786] = {.lex_state = 205, .external_lex_state = 16}, + [1787] = {.lex_state = 223, .external_lex_state = 16}, + [1788] = {.lex_state = 156, .external_lex_state = 13}, + [1789] = {.lex_state = 221, .external_lex_state = 16}, + [1790] = {.lex_state = 156, .external_lex_state = 13}, + [1791] = {.lex_state = 225}, + [1792] = {.lex_state = 223, .external_lex_state = 16}, + [1793] = {.lex_state = 156, .external_lex_state = 13}, + [1794] = {.lex_state = 225}, [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}, + [1796] = {.lex_state = 225}, + [1797] = {.lex_state = 223, .external_lex_state = 16}, + [1798] = {.lex_state = 223, .external_lex_state = 16}, + [1799] = {.lex_state = 156, .external_lex_state = 13}, [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}, + [1801] = {.lex_state = 158, .external_lex_state = 17}, + [1802] = {.lex_state = 158, .external_lex_state = 17}, + [1803] = {.lex_state = 158, .external_lex_state = 17}, + [1804] = {.lex_state = 223, .external_lex_state = 16}, + [1805] = {.lex_state = 205, .external_lex_state = 24}, + [1806] = {.lex_state = 205, .external_lex_state = 24}, + [1807] = {.lex_state = 205, .external_lex_state = 16}, [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}, + [1809] = {.lex_state = 158, .external_lex_state = 17}, + [1810] = {.lex_state = 223, .external_lex_state = 16}, + [1811] = {.lex_state = 158, .external_lex_state = 17}, + [1812] = {.lex_state = 223, .external_lex_state = 16}, + [1813] = {.lex_state = 158, .external_lex_state = 17}, + [1814] = {.lex_state = 223, .external_lex_state = 16}, + [1815] = {.lex_state = 158, .external_lex_state = 17}, + [1816] = {.lex_state = 223, .external_lex_state = 16}, + [1817] = {.lex_state = 68}, + [1818] = {.lex_state = 230, .external_lex_state = 17}, + [1819] = {.lex_state = 68}, + [1820] = {.lex_state = 171, .external_lex_state = 15}, + [1821] = {.lex_state = 163, .external_lex_state = 26}, + [1822] = {.lex_state = 72}, + [1823] = {.lex_state = 171, .external_lex_state = 13}, + [1824] = {.lex_state = 171, .external_lex_state = 13}, + [1825] = {.lex_state = 72}, + [1826] = {.lex_state = 232, .external_lex_state = 28}, + [1827] = {.lex_state = 232, .external_lex_state = 28}, + [1828] = {.lex_state = 232, .external_lex_state = 28}, + [1829] = {.lex_state = 232, .external_lex_state = 28}, + [1830] = {.lex_state = 232, .external_lex_state = 26}, + [1831] = {.lex_state = 232, .external_lex_state = 17}, + [1832] = {.lex_state = 176, .external_lex_state = 19}, + [1833] = {.lex_state = 205, .external_lex_state = 24}, + [1834] = {.lex_state = 205, .external_lex_state = 24}, + [1835] = {.lex_state = 205, .external_lex_state = 16}, [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}, + [1837] = {.lex_state = 176, .external_lex_state = 19}, + [1838] = {.lex_state = 221, .external_lex_state = 16}, + [1839] = {.lex_state = 176, .external_lex_state = 19}, + [1840] = {.lex_state = 225}, + [1841] = {.lex_state = 223, .external_lex_state = 16}, + [1842] = {.lex_state = 176, .external_lex_state = 19}, + [1843] = {.lex_state = 225}, + [1844] = {.lex_state = 223, .external_lex_state = 16}, + [1845] = {.lex_state = 225}, + [1846] = {.lex_state = 223, .external_lex_state = 16}, + [1847] = {.lex_state = 223, .external_lex_state = 16}, + [1848] = {.lex_state = 176, .external_lex_state = 19}, + [1849] = {.lex_state = 223, .external_lex_state = 16}, + [1850] = {.lex_state = 236, .external_lex_state = 13}, + [1851] = {.lex_state = 236, .external_lex_state = 13}, + [1852] = {.lex_state = 205, .external_lex_state = 24}, + [1853] = {.lex_state = 205, .external_lex_state = 24}, + [1854] = {.lex_state = 205, .external_lex_state = 16}, + [1855] = {.lex_state = 223, .external_lex_state = 16}, + [1856] = {.lex_state = 236, .external_lex_state = 13}, + [1857] = {.lex_state = 221, .external_lex_state = 16}, + [1858] = {.lex_state = 236, .external_lex_state = 13}, + [1859] = {.lex_state = 225}, + [1860] = {.lex_state = 223, .external_lex_state = 16}, + [1861] = {.lex_state = 236, .external_lex_state = 13}, + [1862] = {.lex_state = 225}, + [1863] = {.lex_state = 223, .external_lex_state = 16}, + [1864] = {.lex_state = 225}, + [1865] = {.lex_state = 223, .external_lex_state = 16}, + [1866] = {.lex_state = 223, .external_lex_state = 16}, + [1867] = {.lex_state = 236, .external_lex_state = 13}, + [1868] = {.lex_state = 223, .external_lex_state = 16}, + [1869] = {.lex_state = 125, .external_lex_state = 21}, + [1870] = {.lex_state = 125, .external_lex_state = 21}, + [1871] = {.lex_state = 125, .external_lex_state = 21}, + [1872] = {.lex_state = 223, .external_lex_state = 16}, + [1873] = {.lex_state = 205, .external_lex_state = 24}, + [1874] = {.lex_state = 205, .external_lex_state = 24}, + [1875] = {.lex_state = 205, .external_lex_state = 16}, + [1876] = {.lex_state = 223, .external_lex_state = 16}, + [1877] = {.lex_state = 125, .external_lex_state = 21}, + [1878] = {.lex_state = 223, .external_lex_state = 16}, + [1879] = {.lex_state = 125, .external_lex_state = 21}, + [1880] = {.lex_state = 223, .external_lex_state = 16}, + [1881] = {.lex_state = 125, .external_lex_state = 21}, + [1882] = {.lex_state = 223, .external_lex_state = 16}, + [1883] = {.lex_state = 125, .external_lex_state = 21}, + [1884] = {.lex_state = 223, .external_lex_state = 16}, + [1885] = {.lex_state = 56, .external_lex_state = 2}, + [1886] = {.lex_state = 127, .external_lex_state = 4}, + [1887] = {.lex_state = 242, .external_lex_state = 13}, + [1888] = {.lex_state = 242, .external_lex_state = 13}, + [1889] = {.lex_state = 242}, + [1890] = {.lex_state = 62}, + [1891] = {.lex_state = 56, .external_lex_state = 2}, + [1892] = {.lex_state = 72}, + [1893] = {.lex_state = 72}, + [1894] = {.lex_state = 74, .external_lex_state = 2}, + [1895] = {.lex_state = 76}, + [1896] = {.lex_state = 76}, + [1897] = {.lex_state = 82, .external_lex_state = 3}, + [1898] = {.lex_state = 82, .external_lex_state = 4}, + [1899] = {.lex_state = 87, .external_lex_state = 5}, + [1900] = {.lex_state = 87, .external_lex_state = 5}, + [1901] = {.lex_state = 106, .external_lex_state = 5}, + [1902] = {.lex_state = 127, .external_lex_state = 4}, + [1903] = {.lex_state = 87, .external_lex_state = 7}, + [1904] = {.lex_state = 110, .external_lex_state = 8}, + [1905] = {.lex_state = 62}, + [1906] = {.lex_state = 173, .external_lex_state = 2}, + [1907] = {.lex_state = 72, .external_lex_state = 2}, + [1908] = {.lex_state = 173, .external_lex_state = 2}, + [1909] = {.lex_state = 242}, + [1910] = {.lex_state = 242, .external_lex_state = 13}, + [1911] = {.lex_state = 72}, + [1912] = {.lex_state = 127, .external_lex_state = 4}, + [1913] = {.lex_state = 110, .external_lex_state = 8}, + [1914] = {.lex_state = 173, .external_lex_state = 2}, + [1915] = {.lex_state = 173, .external_lex_state = 2}, + [1916] = {.lex_state = 127, .external_lex_state = 4}, + [1917] = {.lex_state = 242, .external_lex_state = 13}, + [1918] = {.lex_state = 242, .external_lex_state = 13}, + [1919] = {.lex_state = 242}, + [1920] = {.lex_state = 72}, + [1921] = {.lex_state = 127, .external_lex_state = 4}, + [1922] = {.lex_state = 72}, + [1923] = {.lex_state = 116, .external_lex_state = 10}, + [1924] = {.lex_state = 116, .external_lex_state = 10}, + [1925] = {.lex_state = 116, .external_lex_state = 10}, + [1926] = {.lex_state = 116, .external_lex_state = 10}, + [1927] = {.lex_state = 223, .external_lex_state = 16}, + [1928] = {.lex_state = 116, .external_lex_state = 10}, + [1929] = {.lex_state = 223, .external_lex_state = 16}, + [1930] = {.lex_state = 116, .external_lex_state = 10}, + [1931] = {.lex_state = 223, .external_lex_state = 16}, + [1932] = {.lex_state = 116, .external_lex_state = 10}, + [1933] = {.lex_state = 116, .external_lex_state = 10}, + [1934] = {.lex_state = 245, .external_lex_state = 10}, + [1935] = {.lex_state = 127, .external_lex_state = 10}, + [1936] = {.lex_state = 127, .external_lex_state = 10}, + [1937] = {.lex_state = 127, .external_lex_state = 10}, + [1938] = {.lex_state = 209, .external_lex_state = 27}, + [1939] = {.lex_state = 209, .external_lex_state = 27}, + [1940] = {.lex_state = 209, .external_lex_state = 27}, + [1941] = {.lex_state = 129, .external_lex_state = 11}, + [1942] = {.lex_state = 129, .external_lex_state = 11}, + [1943] = {.lex_state = 129, .external_lex_state = 11}, + [1944] = {.lex_state = 129, .external_lex_state = 11}, + [1945] = {.lex_state = 223, .external_lex_state = 16}, + [1946] = {.lex_state = 129, .external_lex_state = 11}, + [1947] = {.lex_state = 223, .external_lex_state = 16}, + [1948] = {.lex_state = 129, .external_lex_state = 11}, + [1949] = {.lex_state = 223, .external_lex_state = 16}, + [1950] = {.lex_state = 129, .external_lex_state = 11}, + [1951] = {.lex_state = 129, .external_lex_state = 11}, + [1952] = {.lex_state = 234, .external_lex_state = 27}, + [1953] = {.lex_state = 199, .external_lex_state = 27}, + [1954] = {.lex_state = 234, .external_lex_state = 27}, + [1955] = {.lex_state = 145}, + [1956] = {.lex_state = 221, .external_lex_state = 16}, + [1957] = {.lex_state = 234, .external_lex_state = 27}, + [1958] = {.lex_state = 225}, [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}, + [1960] = {.lex_state = 62}, + [1961] = {.lex_state = 151, .external_lex_state = 16}, + [1962] = {.lex_state = 151, .external_lex_state = 16}, + [1963] = {.lex_state = 151, .external_lex_state = 16}, + [1964] = {.lex_state = 234, .external_lex_state = 27}, + [1965] = {.lex_state = 225}, [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}, + [1967] = {.lex_state = 234, .external_lex_state = 27}, + [1968] = {.lex_state = 225}, + [1969] = {.lex_state = 223, .external_lex_state = 16}, + [1970] = {.lex_state = 234, .external_lex_state = 27}, + [1971] = {.lex_state = 234, .external_lex_state = 27}, + [1972] = {.lex_state = 218, .external_lex_state = 13}, + [1973] = {.lex_state = 218, .external_lex_state = 13}, + [1974] = {.lex_state = 218, .external_lex_state = 13}, + [1975] = {.lex_state = 218, .external_lex_state = 13}, + [1976] = {.lex_state = 223, .external_lex_state = 16}, + [1977] = {.lex_state = 218, .external_lex_state = 13}, + [1978] = {.lex_state = 223, .external_lex_state = 16}, + [1979] = {.lex_state = 218, .external_lex_state = 13}, + [1980] = {.lex_state = 223, .external_lex_state = 16}, + [1981] = {.lex_state = 218, .external_lex_state = 13}, + [1982] = {.lex_state = 218, .external_lex_state = 13}, + [1983] = {.lex_state = 121, .external_lex_state = 14}, + [1984] = {.lex_state = 121, .external_lex_state = 14}, + [1985] = {.lex_state = 121, .external_lex_state = 14}, + [1986] = {.lex_state = 121, .external_lex_state = 14}, + [1987] = {.lex_state = 223, .external_lex_state = 16}, + [1988] = {.lex_state = 121, .external_lex_state = 14}, + [1989] = {.lex_state = 223, .external_lex_state = 16}, + [1990] = {.lex_state = 121, .external_lex_state = 14}, + [1991] = {.lex_state = 223, .external_lex_state = 16}, + [1992] = {.lex_state = 121, .external_lex_state = 14}, + [1993] = {.lex_state = 121, .external_lex_state = 14}, + [1994] = {.lex_state = 121, .external_lex_state = 10}, + [1995] = {.lex_state = 121, .external_lex_state = 10}, + [1996] = {.lex_state = 121, .external_lex_state = 10}, + [1997] = {.lex_state = 121, .external_lex_state = 10}, [1998] = {.lex_state = 223, .external_lex_state = 16}, - [1999] = {.lex_state = 225}, + [1999] = {.lex_state = 121, .external_lex_state = 10}, [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}, + [2001] = {.lex_state = 121, .external_lex_state = 10}, + [2002] = {.lex_state = 223, .external_lex_state = 16}, + [2003] = {.lex_state = 121, .external_lex_state = 10}, + [2004] = {.lex_state = 121, .external_lex_state = 10}, + [2005] = {.lex_state = 163, .external_lex_state = 15}, + [2006] = {.lex_state = 163, .external_lex_state = 15}, + [2007] = {.lex_state = 163, .external_lex_state = 15}, + [2008] = {.lex_state = 163, .external_lex_state = 15}, + [2009] = {.lex_state = 223, .external_lex_state = 16}, + [2010] = {.lex_state = 163, .external_lex_state = 15}, [2011] = {.lex_state = 223, .external_lex_state = 16}, - [2012] = {.lex_state = 223, .external_lex_state = 24}, + [2012] = {.lex_state = 163, .external_lex_state = 15}, [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}, + [2014] = {.lex_state = 163, .external_lex_state = 15}, + [2015] = {.lex_state = 163, .external_lex_state = 15}, + [2016] = {.lex_state = 90, .external_lex_state = 13}, + [2017] = {.lex_state = 90, .external_lex_state = 13}, + [2018] = {.lex_state = 90, .external_lex_state = 13}, + [2019] = {.lex_state = 90, .external_lex_state = 13}, + [2020] = {.lex_state = 223, .external_lex_state = 16}, + [2021] = {.lex_state = 90, .external_lex_state = 13}, + [2022] = {.lex_state = 223, .external_lex_state = 16}, + [2023] = {.lex_state = 90, .external_lex_state = 13}, + [2024] = {.lex_state = 223, .external_lex_state = 16}, + [2025] = {.lex_state = 90, .external_lex_state = 13}, + [2026] = {.lex_state = 90, .external_lex_state = 13}, + [2027] = {.lex_state = 151, .external_lex_state = 16}, + [2028] = {.lex_state = 151, .external_lex_state = 16}, + [2029] = {.lex_state = 205, .external_lex_state = 24}, + [2030] = {.lex_state = 205, .external_lex_state = 24}, + [2031] = {.lex_state = 205, .external_lex_state = 24}, + [2032] = {.lex_state = 205, .external_lex_state = 24}, + [2033] = {.lex_state = 205, .external_lex_state = 16}, + [2034] = {.lex_state = 223, .external_lex_state = 16}, + [2035] = {.lex_state = 205, .external_lex_state = 24}, + [2036] = {.lex_state = 221, .external_lex_state = 16}, + [2037] = {.lex_state = 205, .external_lex_state = 24}, + [2038] = {.lex_state = 225}, + [2039] = {.lex_state = 223, .external_lex_state = 16}, + [2040] = {.lex_state = 205, .external_lex_state = 24}, + [2041] = {.lex_state = 225}, + [2042] = {.lex_state = 223, .external_lex_state = 16}, + [2043] = {.lex_state = 225}, + [2044] = {.lex_state = 223, .external_lex_state = 16}, + [2045] = {.lex_state = 223, .external_lex_state = 16}, + [2046] = {.lex_state = 205, .external_lex_state = 24}, + [2047] = {.lex_state = 223, .external_lex_state = 16}, + [2048] = {.lex_state = 223, .external_lex_state = 24}, + [2049] = {.lex_state = 223, .external_lex_state = 24}, + [2050] = {.lex_state = 223, .external_lex_state = 24}, + [2051] = {.lex_state = 223, .external_lex_state = 16}, + [2052] = {.lex_state = 205, .external_lex_state = 24}, + [2053] = {.lex_state = 205, .external_lex_state = 24}, + [2054] = {.lex_state = 205, .external_lex_state = 16}, + [2055] = {.lex_state = 223, .external_lex_state = 16}, + [2056] = {.lex_state = 223, .external_lex_state = 24}, + [2057] = {.lex_state = 223, .external_lex_state = 16}, + [2058] = {.lex_state = 223, .external_lex_state = 24}, + [2059] = {.lex_state = 223, .external_lex_state = 16}, + [2060] = {.lex_state = 223, .external_lex_state = 24}, + [2061] = {.lex_state = 223, .external_lex_state = 16}, + [2062] = {.lex_state = 223, .external_lex_state = 24}, + [2063] = {.lex_state = 223, .external_lex_state = 16}, + [2064] = {.lex_state = 112, .external_lex_state = 5}, + [2065] = {.lex_state = 112, .external_lex_state = 5}, + [2066] = {.lex_state = 112, .external_lex_state = 5}, + [2067] = {.lex_state = 68}, + [2068] = {.lex_state = 68}, + [2069] = {.lex_state = 68}, + [2070] = {.lex_state = 72}, + [2071] = {.lex_state = 68}, + [2072] = {.lex_state = 72}, + [2073] = {.lex_state = 68}, + [2074] = {.lex_state = 72}, + [2075] = {.lex_state = 68}, + [2076] = {.lex_state = 72}, + [2077] = {.lex_state = 68}, + [2078] = {.lex_state = 72}, + [2079] = {.lex_state = 68}, + [2080] = {.lex_state = 163, .external_lex_state = 13}, + [2081] = {.lex_state = 163, .external_lex_state = 13}, + [2082] = {.lex_state = 68}, + [2083] = {.lex_state = 163, .external_lex_state = 13}, + [2084] = {.lex_state = 230, .external_lex_state = 28}, + [2085] = {.lex_state = 230, .external_lex_state = 28}, + [2086] = {.lex_state = 240, .external_lex_state = 26}, + [2087] = {.lex_state = 72}, + [2088] = {.lex_state = 230, .external_lex_state = 28}, + [2089] = {.lex_state = 240, .external_lex_state = 28}, + [2090] = {.lex_state = 145}, + [2091] = {.lex_state = 90}, + [2092] = {.lex_state = 240, .external_lex_state = 28}, + [2093] = {.lex_state = 240, .external_lex_state = 28}, + [2094] = {.lex_state = 240, .external_lex_state = 28}, + [2095] = {.lex_state = 62}, + [2096] = {.lex_state = 151, .external_lex_state = 16}, + [2097] = {.lex_state = 154, .external_lex_state = 6}, + [2098] = {.lex_state = 151, .external_lex_state = 16}, + [2099] = {.lex_state = 151, .external_lex_state = 16}, + [2100] = {.lex_state = 68}, + [2101] = {.lex_state = 163, .external_lex_state = 2}, + [2102] = {.lex_state = 68}, + [2103] = {.lex_state = 171, .external_lex_state = 2}, + [2104] = {.lex_state = 68}, + [2105] = {.lex_state = 163, .external_lex_state = 2}, + [2106] = {.lex_state = 156, .external_lex_state = 6}, + [2107] = {.lex_state = 156, .external_lex_state = 25}, + [2108] = {.lex_state = 156, .external_lex_state = 25}, + [2109] = {.lex_state = 156, .external_lex_state = 25}, + [2110] = {.lex_state = 223, .external_lex_state = 16}, + [2111] = {.lex_state = 205, .external_lex_state = 24}, + [2112] = {.lex_state = 205, .external_lex_state = 24}, + [2113] = {.lex_state = 205, .external_lex_state = 16}, [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}, + [2115] = {.lex_state = 156, .external_lex_state = 25}, + [2116] = {.lex_state = 223, .external_lex_state = 16}, + [2117] = {.lex_state = 156, .external_lex_state = 25}, [2118] = {.lex_state = 223, .external_lex_state = 16}, - [2119] = {.lex_state = 176, .external_lex_state = 19}, + [2119] = {.lex_state = 156, .external_lex_state = 25}, [2120] = {.lex_state = 223, .external_lex_state = 16}, - [2121] = {.lex_state = 176, .external_lex_state = 19}, + [2121] = {.lex_state = 156, .external_lex_state = 25}, [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}, + [2123] = {.lex_state = 156, .external_lex_state = 13}, + [2124] = {.lex_state = 156, .external_lex_state = 13}, + [2125] = {.lex_state = 156, .external_lex_state = 13}, [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}, + [2127] = {.lex_state = 205, .external_lex_state = 24}, + [2128] = {.lex_state = 205, .external_lex_state = 24}, + [2129] = {.lex_state = 205, .external_lex_state = 16}, [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}, + [2131] = {.lex_state = 156, .external_lex_state = 13}, + [2132] = {.lex_state = 223, .external_lex_state = 16}, + [2133] = {.lex_state = 156, .external_lex_state = 13}, [2134] = {.lex_state = 223, .external_lex_state = 16}, - [2135] = {.lex_state = 236, .external_lex_state = 13}, + [2135] = {.lex_state = 156, .external_lex_state = 13}, [2136] = {.lex_state = 223, .external_lex_state = 16}, - [2137] = {.lex_state = 236, .external_lex_state = 13}, + [2137] = {.lex_state = 156, .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}, + [2139] = {.lex_state = 158, .external_lex_state = 17}, + [2140] = {.lex_state = 158, .external_lex_state = 17}, + [2141] = {.lex_state = 158, .external_lex_state = 17}, + [2142] = {.lex_state = 158, .external_lex_state = 17}, + [2143] = {.lex_state = 223, .external_lex_state = 16}, + [2144] = {.lex_state = 158, .external_lex_state = 17}, + [2145] = {.lex_state = 223, .external_lex_state = 16}, + [2146] = {.lex_state = 158, .external_lex_state = 17}, [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}, + [2148] = {.lex_state = 158, .external_lex_state = 17}, + [2149] = {.lex_state = 158, .external_lex_state = 17}, + [2150] = {.lex_state = 171, .external_lex_state = 13}, + [2151] = {.lex_state = 171, .external_lex_state = 13}, + [2152] = {.lex_state = 171, .external_lex_state = 13}, + [2153] = {.lex_state = 232, .external_lex_state = 28}, + [2154] = {.lex_state = 232, .external_lex_state = 28}, + [2155] = {.lex_state = 232, .external_lex_state = 28}, + [2156] = {.lex_state = 176, .external_lex_state = 19}, + [2157] = {.lex_state = 176, .external_lex_state = 19}, + [2158] = {.lex_state = 176, .external_lex_state = 19}, + [2159] = {.lex_state = 223, .external_lex_state = 16}, + [2160] = {.lex_state = 205, .external_lex_state = 24}, + [2161] = {.lex_state = 205, .external_lex_state = 24}, + [2162] = {.lex_state = 205, .external_lex_state = 16}, + [2163] = {.lex_state = 223, .external_lex_state = 16}, + [2164] = {.lex_state = 176, .external_lex_state = 19}, + [2165] = {.lex_state = 223, .external_lex_state = 16}, + [2166] = {.lex_state = 176, .external_lex_state = 19}, + [2167] = {.lex_state = 223, .external_lex_state = 16}, + [2168] = {.lex_state = 176, .external_lex_state = 19}, + [2169] = {.lex_state = 223, .external_lex_state = 16}, + [2170] = {.lex_state = 176, .external_lex_state = 19}, + [2171] = {.lex_state = 223, .external_lex_state = 16}, + [2172] = {.lex_state = 236, .external_lex_state = 13}, + [2173] = {.lex_state = 236, .external_lex_state = 13}, + [2174] = {.lex_state = 236, .external_lex_state = 13}, + [2175] = {.lex_state = 223, .external_lex_state = 16}, + [2176] = {.lex_state = 205, .external_lex_state = 24}, + [2177] = {.lex_state = 205, .external_lex_state = 24}, + [2178] = {.lex_state = 205, .external_lex_state = 16}, + [2179] = {.lex_state = 223, .external_lex_state = 16}, + [2180] = {.lex_state = 236, .external_lex_state = 13}, + [2181] = {.lex_state = 223, .external_lex_state = 16}, + [2182] = {.lex_state = 236, .external_lex_state = 13}, + [2183] = {.lex_state = 223, .external_lex_state = 16}, + [2184] = {.lex_state = 236, .external_lex_state = 13}, + [2185] = {.lex_state = 223, .external_lex_state = 16}, + [2186] = {.lex_state = 236, .external_lex_state = 13}, + [2187] = {.lex_state = 223, .external_lex_state = 16}, + [2188] = {.lex_state = 125, .external_lex_state = 21}, + [2189] = {.lex_state = 125, .external_lex_state = 21}, + [2190] = {.lex_state = 125, .external_lex_state = 21}, + [2191] = {.lex_state = 125, .external_lex_state = 21}, + [2192] = {.lex_state = 223, .external_lex_state = 16}, + [2193] = {.lex_state = 125, .external_lex_state = 21}, + [2194] = {.lex_state = 223, .external_lex_state = 16}, + [2195] = {.lex_state = 125, .external_lex_state = 21}, + [2196] = {.lex_state = 223, .external_lex_state = 16}, + [2197] = {.lex_state = 125, .external_lex_state = 21}, + [2198] = {.lex_state = 125, .external_lex_state = 21}, + [2199] = {.lex_state = 114, .external_lex_state = 9}, + [2200] = {.lex_state = 72}, + [2201] = {.lex_state = 119}, + [2202] = {.lex_state = 129, .external_lex_state = 12}, + [2203] = {.lex_state = 141}, + [2204] = {.lex_state = 62}, + [2205] = {.lex_state = 82, .external_lex_state = 14}, + [2206] = {.lex_state = 90}, + [2207] = {.lex_state = 97}, + [2208] = {.lex_state = 82, .external_lex_state = 14}, + [2209] = {.lex_state = 97, .external_lex_state = 6}, + [2210] = {.lex_state = 56, .external_lex_state = 2}, + [2211] = {.lex_state = 56, .external_lex_state = 2}, + [2212] = {.lex_state = 56, .external_lex_state = 2}, + [2213] = {.lex_state = 82, .external_lex_state = 3}, + [2214] = {.lex_state = 62}, + [2215] = {.lex_state = 82, .external_lex_state = 3}, + [2216] = {.lex_state = 82, .external_lex_state = 10}, + [2217] = {.lex_state = 90}, + [2218] = {.lex_state = 97}, + [2219] = {.lex_state = 82, .external_lex_state = 10}, + [2220] = {.lex_state = 97, .external_lex_state = 6}, + [2221] = {.lex_state = 56, .external_lex_state = 2}, + [2222] = {.lex_state = 56, .external_lex_state = 2}, + [2223] = {.lex_state = 56, .external_lex_state = 2}, + [2224] = {.lex_state = 82, .external_lex_state = 4}, + [2225] = {.lex_state = 82, .external_lex_state = 4}, + [2226] = {.lex_state = 87, .external_lex_state = 5}, + [2227] = {.lex_state = 68}, + [2228] = {.lex_state = 56, .external_lex_state = 2}, + [2229] = {.lex_state = 173, .external_lex_state = 2}, + [2230] = {.lex_state = 56, .external_lex_state = 2}, + [2231] = {.lex_state = 56}, + [2232] = {.lex_state = 179}, + [2233] = {.lex_state = 72}, + [2234] = {.lex_state = 72}, + [2235] = {.lex_state = 87, .external_lex_state = 5}, + [2236] = {.lex_state = 87, .external_lex_state = 5}, + [2237] = {.lex_state = 247, .external_lex_state = 7}, + [2238] = {.lex_state = 87, .external_lex_state = 7}, + [2239] = {.lex_state = 72}, + [2240] = {.lex_state = 127, .external_lex_state = 4}, + [2241] = {.lex_state = 110, .external_lex_state = 8}, + [2242] = {.lex_state = 173, .external_lex_state = 2}, + [2243] = {.lex_state = 87, .external_lex_state = 7}, + [2244] = {.lex_state = 173, .external_lex_state = 2}, + [2245] = {.lex_state = 173, .external_lex_state = 2}, + [2246] = {.lex_state = 72}, + [2247] = {.lex_state = 127, .external_lex_state = 4}, + [2248] = {.lex_state = 110, .external_lex_state = 8}, + [2249] = {.lex_state = 173, .external_lex_state = 2}, + [2250] = {.lex_state = 173, .external_lex_state = 2}, + [2251] = {.lex_state = 242}, + [2252] = {.lex_state = 173, .external_lex_state = 2}, + [2253] = {.lex_state = 242}, + [2254] = {.lex_state = 127, .external_lex_state = 4}, + [2255] = {.lex_state = 127, .external_lex_state = 4}, + [2256] = {.lex_state = 116, .external_lex_state = 10}, + [2257] = {.lex_state = 116, .external_lex_state = 10}, + [2258] = {.lex_state = 116, .external_lex_state = 10}, + [2259] = {.lex_state = 127, .external_lex_state = 10}, + [2260] = {.lex_state = 209, .external_lex_state = 27}, + [2261] = {.lex_state = 129, .external_lex_state = 11}, + [2262] = {.lex_state = 129, .external_lex_state = 11}, + [2263] = {.lex_state = 129, .external_lex_state = 11}, + [2264] = {.lex_state = 234, .external_lex_state = 27}, + [2265] = {.lex_state = 234, .external_lex_state = 27}, [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}, + [2267] = {.lex_state = 205, .external_lex_state = 24}, + [2268] = {.lex_state = 205, .external_lex_state = 16}, + [2269] = {.lex_state = 223, .external_lex_state = 16}, + [2270] = {.lex_state = 234, .external_lex_state = 27}, + [2271] = {.lex_state = 221, .external_lex_state = 16}, + [2272] = {.lex_state = 234, .external_lex_state = 27}, + [2273] = {.lex_state = 225}, [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}, + [2275] = {.lex_state = 234, .external_lex_state = 27}, + [2276] = {.lex_state = 225}, + [2277] = {.lex_state = 223, .external_lex_state = 16}, + [2278] = {.lex_state = 225}, + [2279] = {.lex_state = 223, .external_lex_state = 16}, + [2280] = {.lex_state = 223, .external_lex_state = 16}, + [2281] = {.lex_state = 234, .external_lex_state = 27}, + [2282] = {.lex_state = 223, .external_lex_state = 16}, + [2283] = {.lex_state = 218, .external_lex_state = 13}, + [2284] = {.lex_state = 218, .external_lex_state = 13}, + [2285] = {.lex_state = 218, .external_lex_state = 13}, + [2286] = {.lex_state = 121, .external_lex_state = 14}, + [2287] = {.lex_state = 121, .external_lex_state = 14}, + [2288] = {.lex_state = 121, .external_lex_state = 14}, + [2289] = {.lex_state = 121, .external_lex_state = 10}, + [2290] = {.lex_state = 121, .external_lex_state = 10}, + [2291] = {.lex_state = 121, .external_lex_state = 10}, + [2292] = {.lex_state = 163, .external_lex_state = 15}, + [2293] = {.lex_state = 163, .external_lex_state = 15}, + [2294] = {.lex_state = 163, .external_lex_state = 15}, + [2295] = {.lex_state = 90, .external_lex_state = 13}, + [2296] = {.lex_state = 90, .external_lex_state = 13}, + [2297] = {.lex_state = 90, .external_lex_state = 13}, + [2298] = {.lex_state = 205, .external_lex_state = 24}, + [2299] = {.lex_state = 205, .external_lex_state = 24}, + [2300] = {.lex_state = 205, .external_lex_state = 24}, [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}, + [2302] = {.lex_state = 205, .external_lex_state = 24}, + [2303] = {.lex_state = 205, .external_lex_state = 24}, + [2304] = {.lex_state = 205, .external_lex_state = 16}, + [2305] = {.lex_state = 223, .external_lex_state = 16}, + [2306] = {.lex_state = 205, .external_lex_state = 24}, + [2307] = {.lex_state = 223, .external_lex_state = 16}, + [2308] = {.lex_state = 205, .external_lex_state = 24}, + [2309] = {.lex_state = 223, .external_lex_state = 16}, + [2310] = {.lex_state = 205, .external_lex_state = 24}, + [2311] = {.lex_state = 223, .external_lex_state = 16}, + [2312] = {.lex_state = 205, .external_lex_state = 24}, + [2313] = {.lex_state = 223, .external_lex_state = 16}, + [2314] = {.lex_state = 223, .external_lex_state = 24}, + [2315] = {.lex_state = 223, .external_lex_state = 24}, + [2316] = {.lex_state = 223, .external_lex_state = 24}, + [2317] = {.lex_state = 223, .external_lex_state = 24}, + [2318] = {.lex_state = 223, .external_lex_state = 16}, + [2319] = {.lex_state = 223, .external_lex_state = 24}, + [2320] = {.lex_state = 223, .external_lex_state = 16}, + [2321] = {.lex_state = 223, .external_lex_state = 24}, + [2322] = {.lex_state = 223, .external_lex_state = 16}, + [2323] = {.lex_state = 223, .external_lex_state = 24}, + [2324] = {.lex_state = 223, .external_lex_state = 24}, + [2325] = {.lex_state = 68}, + [2326] = {.lex_state = 68}, + [2327] = {.lex_state = 72}, + [2328] = {.lex_state = 68}, + [2329] = {.lex_state = 72}, + [2330] = {.lex_state = 163, .external_lex_state = 13}, + [2331] = {.lex_state = 240, .external_lex_state = 28}, + [2332] = {.lex_state = 230, .external_lex_state = 28}, + [2333] = {.lex_state = 240, .external_lex_state = 28}, + [2334] = {.lex_state = 145}, + [2335] = {.lex_state = 221, .external_lex_state = 16}, + [2336] = {.lex_state = 240, .external_lex_state = 28}, + [2337] = {.lex_state = 225}, + [2338] = {.lex_state = 223, .external_lex_state = 16}, + [2339] = {.lex_state = 62}, + [2340] = {.lex_state = 151, .external_lex_state = 16}, + [2341] = {.lex_state = 151, .external_lex_state = 16}, + [2342] = {.lex_state = 151, .external_lex_state = 16}, + [2343] = {.lex_state = 240, .external_lex_state = 28}, + [2344] = {.lex_state = 225}, + [2345] = {.lex_state = 223, .external_lex_state = 16}, + [2346] = {.lex_state = 240, .external_lex_state = 28}, + [2347] = {.lex_state = 225}, [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}, + [2349] = {.lex_state = 240, .external_lex_state = 28}, + [2350] = {.lex_state = 240, .external_lex_state = 28}, + [2351] = {.lex_state = 156, .external_lex_state = 25}, + [2352] = {.lex_state = 156, .external_lex_state = 25}, + [2353] = {.lex_state = 156, .external_lex_state = 25}, + [2354] = {.lex_state = 156, .external_lex_state = 25}, + [2355] = {.lex_state = 223, .external_lex_state = 16}, + [2356] = {.lex_state = 156, .external_lex_state = 25}, + [2357] = {.lex_state = 223, .external_lex_state = 16}, + [2358] = {.lex_state = 156, .external_lex_state = 25}, + [2359] = {.lex_state = 223, .external_lex_state = 16}, + [2360] = {.lex_state = 156, .external_lex_state = 25}, + [2361] = {.lex_state = 156, .external_lex_state = 25}, + [2362] = {.lex_state = 156, .external_lex_state = 13}, + [2363] = {.lex_state = 156, .external_lex_state = 13}, + [2364] = {.lex_state = 156, .external_lex_state = 13}, + [2365] = {.lex_state = 156, .external_lex_state = 13}, + [2366] = {.lex_state = 223, .external_lex_state = 16}, + [2367] = {.lex_state = 156, .external_lex_state = 13}, + [2368] = {.lex_state = 223, .external_lex_state = 16}, + [2369] = {.lex_state = 156, .external_lex_state = 13}, + [2370] = {.lex_state = 223, .external_lex_state = 16}, + [2371] = {.lex_state = 156, .external_lex_state = 13}, + [2372] = {.lex_state = 156, .external_lex_state = 13}, + [2373] = {.lex_state = 158, .external_lex_state = 17}, + [2374] = {.lex_state = 158, .external_lex_state = 17}, + [2375] = {.lex_state = 158, .external_lex_state = 17}, + [2376] = {.lex_state = 171, .external_lex_state = 13}, + [2377] = {.lex_state = 232, .external_lex_state = 28}, + [2378] = {.lex_state = 176, .external_lex_state = 19}, + [2379] = {.lex_state = 176, .external_lex_state = 19}, + [2380] = {.lex_state = 176, .external_lex_state = 19}, + [2381] = {.lex_state = 176, .external_lex_state = 19}, + [2382] = {.lex_state = 223, .external_lex_state = 16}, + [2383] = {.lex_state = 176, .external_lex_state = 19}, + [2384] = {.lex_state = 223, .external_lex_state = 16}, + [2385] = {.lex_state = 176, .external_lex_state = 19}, + [2386] = {.lex_state = 223, .external_lex_state = 16}, + [2387] = {.lex_state = 176, .external_lex_state = 19}, + [2388] = {.lex_state = 176, .external_lex_state = 19}, + [2389] = {.lex_state = 236, .external_lex_state = 13}, + [2390] = {.lex_state = 236, .external_lex_state = 13}, + [2391] = {.lex_state = 236, .external_lex_state = 13}, + [2392] = {.lex_state = 236, .external_lex_state = 13}, + [2393] = {.lex_state = 223, .external_lex_state = 16}, + [2394] = {.lex_state = 236, .external_lex_state = 13}, + [2395] = {.lex_state = 223, .external_lex_state = 16}, + [2396] = {.lex_state = 236, .external_lex_state = 13}, + [2397] = {.lex_state = 223, .external_lex_state = 16}, + [2398] = {.lex_state = 236, .external_lex_state = 13}, + [2399] = {.lex_state = 236, .external_lex_state = 13}, + [2400] = {.lex_state = 125, .external_lex_state = 21}, + [2401] = {.lex_state = 125, .external_lex_state = 21}, + [2402] = {.lex_state = 125, .external_lex_state = 21}, + [2403] = {.lex_state = 110, .external_lex_state = 21}, + [2404] = {.lex_state = 110, .external_lex_state = 21}, + [2405] = {.lex_state = 247, .external_lex_state = 7}, + [2406] = {.lex_state = 68}, + [2407] = {.lex_state = 110, .external_lex_state = 23}, + [2408] = {.lex_state = 234, .external_lex_state = 23}, + [2409] = {.lex_state = 114, .external_lex_state = 9}, + [2410] = {.lex_state = 72}, + [2411] = {.lex_state = 82, .external_lex_state = 14}, + [2412] = {.lex_state = 82, .external_lex_state = 14}, + [2413] = {.lex_state = 145}, + [2414] = {.lex_state = 90}, + [2415] = {.lex_state = 82, .external_lex_state = 14}, + [2416] = {.lex_state = 82, .external_lex_state = 14}, + [2417] = {.lex_state = 82, .external_lex_state = 14}, + [2418] = {.lex_state = 62}, + [2419] = {.lex_state = 151, .external_lex_state = 16}, + [2420] = {.lex_state = 154, .external_lex_state = 6}, + [2421] = {.lex_state = 151, .external_lex_state = 16}, + [2422] = {.lex_state = 151, .external_lex_state = 16}, + [2423] = {.lex_state = 68}, + [2424] = {.lex_state = 163, .external_lex_state = 2}, + [2425] = {.lex_state = 68}, + [2426] = {.lex_state = 171, .external_lex_state = 2}, + [2427] = {.lex_state = 68}, + [2428] = {.lex_state = 163, .external_lex_state = 2}, + [2429] = {.lex_state = 82, .external_lex_state = 3}, + [2430] = {.lex_state = 72}, + [2431] = {.lex_state = 82, .external_lex_state = 10}, + [2432] = {.lex_state = 82, .external_lex_state = 10}, + [2433] = {.lex_state = 145}, + [2434] = {.lex_state = 90}, + [2435] = {.lex_state = 82, .external_lex_state = 10}, + [2436] = {.lex_state = 82, .external_lex_state = 10}, + [2437] = {.lex_state = 82, .external_lex_state = 10}, + [2438] = {.lex_state = 62}, + [2439] = {.lex_state = 151, .external_lex_state = 16}, + [2440] = {.lex_state = 154, .external_lex_state = 6}, + [2441] = {.lex_state = 151, .external_lex_state = 16}, + [2442] = {.lex_state = 151, .external_lex_state = 16}, + [2443] = {.lex_state = 68}, + [2444] = {.lex_state = 163, .external_lex_state = 2}, + [2445] = {.lex_state = 68}, + [2446] = {.lex_state = 171, .external_lex_state = 2}, + [2447] = {.lex_state = 68}, + [2448] = {.lex_state = 163, .external_lex_state = 2}, + [2449] = {.lex_state = 82, .external_lex_state = 4}, + [2450] = {.lex_state = 87, .external_lex_state = 5}, + [2451] = {.lex_state = 119}, + [2452] = {.lex_state = 127, .external_lex_state = 4}, + [2453] = {.lex_state = 110, .external_lex_state = 8}, + [2454] = {.lex_state = 72}, + [2455] = {.lex_state = 87, .external_lex_state = 5}, + [2456] = {.lex_state = 87, .external_lex_state = 5}, + [2457] = {.lex_state = 247, .external_lex_state = 5}, + [2458] = {.lex_state = 247, .external_lex_state = 5}, + [2459] = {.lex_state = 247, .external_lex_state = 5}, + [2460] = {.lex_state = 247, .external_lex_state = 5}, + [2461] = {.lex_state = 247, .external_lex_state = 7}, + [2462] = {.lex_state = 247, .external_lex_state = 7}, + [2463] = {.lex_state = 87, .external_lex_state = 7}, + [2464] = {.lex_state = 173, .external_lex_state = 2}, + [2465] = {.lex_state = 87, .external_lex_state = 7}, + [2466] = {.lex_state = 72}, + [2467] = {.lex_state = 127, .external_lex_state = 4}, + [2468] = {.lex_state = 110, .external_lex_state = 8}, + [2469] = {.lex_state = 173, .external_lex_state = 2}, + [2470] = {.lex_state = 72}, + [2471] = {.lex_state = 127, .external_lex_state = 4}, + [2472] = {.lex_state = 110, .external_lex_state = 8}, + [2473] = {.lex_state = 72}, + [2474] = {.lex_state = 82, .external_lex_state = 4}, + [2475] = {.lex_state = 110, .external_lex_state = 8}, + [2476] = {.lex_state = 173, .external_lex_state = 2}, + [2477] = {.lex_state = 173, .external_lex_state = 2}, + [2478] = {.lex_state = 72}, + [2479] = {.lex_state = 82, .external_lex_state = 4}, + [2480] = {.lex_state = 110, .external_lex_state = 8}, + [2481] = {.lex_state = 173, .external_lex_state = 2}, + [2482] = {.lex_state = 173, .external_lex_state = 2}, + [2483] = {.lex_state = 234, .external_lex_state = 27}, + [2484] = {.lex_state = 234, .external_lex_state = 27}, + [2485] = {.lex_state = 234, .external_lex_state = 27}, + [2486] = {.lex_state = 223, .external_lex_state = 16}, + [2487] = {.lex_state = 205, .external_lex_state = 24}, + [2488] = {.lex_state = 205, .external_lex_state = 24}, + [2489] = {.lex_state = 205, .external_lex_state = 16}, + [2490] = {.lex_state = 223, .external_lex_state = 16}, + [2491] = {.lex_state = 234, .external_lex_state = 27}, + [2492] = {.lex_state = 223, .external_lex_state = 16}, + [2493] = {.lex_state = 234, .external_lex_state = 27}, + [2494] = {.lex_state = 223, .external_lex_state = 16}, + [2495] = {.lex_state = 234, .external_lex_state = 27}, + [2496] = {.lex_state = 223, .external_lex_state = 16}, + [2497] = {.lex_state = 234, .external_lex_state = 27}, + [2498] = {.lex_state = 223, .external_lex_state = 16}, + [2499] = {.lex_state = 205, .external_lex_state = 24}, + [2500] = {.lex_state = 205, .external_lex_state = 24}, + [2501] = {.lex_state = 205, .external_lex_state = 24}, + [2502] = {.lex_state = 205, .external_lex_state = 24}, + [2503] = {.lex_state = 223, .external_lex_state = 16}, + [2504] = {.lex_state = 205, .external_lex_state = 24}, + [2505] = {.lex_state = 223, .external_lex_state = 16}, + [2506] = {.lex_state = 205, .external_lex_state = 24}, + [2507] = {.lex_state = 223, .external_lex_state = 16}, + [2508] = {.lex_state = 205, .external_lex_state = 24}, + [2509] = {.lex_state = 205, .external_lex_state = 24}, + [2510] = {.lex_state = 223, .external_lex_state = 24}, + [2511] = {.lex_state = 223, .external_lex_state = 24}, + [2512] = {.lex_state = 223, .external_lex_state = 24}, + [2513] = {.lex_state = 68}, + [2514] = {.lex_state = 68}, + [2515] = {.lex_state = 240, .external_lex_state = 28}, + [2516] = {.lex_state = 240, .external_lex_state = 28}, + [2517] = {.lex_state = 205, .external_lex_state = 24}, + [2518] = {.lex_state = 205, .external_lex_state = 24}, + [2519] = {.lex_state = 205, .external_lex_state = 16}, + [2520] = {.lex_state = 223, .external_lex_state = 16}, + [2521] = {.lex_state = 240, .external_lex_state = 28}, + [2522] = {.lex_state = 221, .external_lex_state = 16}, + [2523] = {.lex_state = 240, .external_lex_state = 28}, [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}, + [2526] = {.lex_state = 240, .external_lex_state = 28}, + [2527] = {.lex_state = 225}, + [2528] = {.lex_state = 223, .external_lex_state = 16}, + [2529] = {.lex_state = 225}, + [2530] = {.lex_state = 223, .external_lex_state = 16}, + [2531] = {.lex_state = 223, .external_lex_state = 16}, + [2532] = {.lex_state = 240, .external_lex_state = 28}, + [2533] = {.lex_state = 223, .external_lex_state = 16}, + [2534] = {.lex_state = 156, .external_lex_state = 25}, + [2535] = {.lex_state = 156, .external_lex_state = 25}, + [2536] = {.lex_state = 156, .external_lex_state = 25}, + [2537] = {.lex_state = 156, .external_lex_state = 13}, + [2538] = {.lex_state = 156, .external_lex_state = 13}, + [2539] = {.lex_state = 156, .external_lex_state = 13}, + [2540] = {.lex_state = 176, .external_lex_state = 19}, + [2541] = {.lex_state = 176, .external_lex_state = 19}, + [2542] = {.lex_state = 176, .external_lex_state = 19}, + [2543] = {.lex_state = 236, .external_lex_state = 13}, + [2544] = {.lex_state = 236, .external_lex_state = 13}, + [2545] = {.lex_state = 236, .external_lex_state = 13}, + [2546] = {.lex_state = 110, .external_lex_state = 21}, + [2547] = {.lex_state = 247, .external_lex_state = 7}, + [2548] = {.lex_state = 119}, + [2549] = {.lex_state = 56}, + [2550] = {.lex_state = 72}, + [2551] = {.lex_state = 56}, + [2552] = {.lex_state = 72}, + [2553] = {.lex_state = 72}, + [2554] = {.lex_state = 234, .external_lex_state = 23}, + [2555] = {.lex_state = 82, .external_lex_state = 3}, + [2556] = {.lex_state = 163}, + [2557] = {.lex_state = 82, .external_lex_state = 14}, + [2558] = {.lex_state = 82, .external_lex_state = 14}, + [2559] = {.lex_state = 82, .external_lex_state = 14}, + [2560] = {.lex_state = 82, .external_lex_state = 14}, + [2561] = {.lex_state = 82, .external_lex_state = 14}, + [2562] = {.lex_state = 145}, + [2563] = {.lex_state = 221, .external_lex_state = 16}, + [2564] = {.lex_state = 82, .external_lex_state = 14}, + [2565] = {.lex_state = 225}, + [2566] = {.lex_state = 223, .external_lex_state = 16}, + [2567] = {.lex_state = 62}, + [2568] = {.lex_state = 151, .external_lex_state = 16}, + [2569] = {.lex_state = 151, .external_lex_state = 16}, + [2570] = {.lex_state = 151, .external_lex_state = 16}, + [2571] = {.lex_state = 82, .external_lex_state = 14}, + [2572] = {.lex_state = 225}, [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}, + [2574] = {.lex_state = 82, .external_lex_state = 14}, + [2575] = {.lex_state = 225}, + [2576] = {.lex_state = 223, .external_lex_state = 16}, + [2577] = {.lex_state = 82, .external_lex_state = 14}, + [2578] = {.lex_state = 82, .external_lex_state = 14}, + [2579] = {.lex_state = 82, .external_lex_state = 10}, + [2580] = {.lex_state = 82, .external_lex_state = 10}, + [2581] = {.lex_state = 82, .external_lex_state = 10}, + [2582] = {.lex_state = 145}, + [2583] = {.lex_state = 221, .external_lex_state = 16}, + [2584] = {.lex_state = 82, .external_lex_state = 10}, + [2585] = {.lex_state = 225}, [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}, + [2587] = {.lex_state = 62}, + [2588] = {.lex_state = 151, .external_lex_state = 16}, + [2589] = {.lex_state = 151, .external_lex_state = 16}, + [2590] = {.lex_state = 151, .external_lex_state = 16}, + [2591] = {.lex_state = 82, .external_lex_state = 10}, + [2592] = {.lex_state = 225}, + [2593] = {.lex_state = 223, .external_lex_state = 16}, + [2594] = {.lex_state = 82, .external_lex_state = 10}, + [2595] = {.lex_state = 225}, + [2596] = {.lex_state = 223, .external_lex_state = 16}, + [2597] = {.lex_state = 82, .external_lex_state = 10}, + [2598] = {.lex_state = 82, .external_lex_state = 10}, + [2599] = {.lex_state = 110, .external_lex_state = 23}, + [2600] = {.lex_state = 247, .external_lex_state = 5}, + [2601] = {.lex_state = 247, .external_lex_state = 5}, + [2602] = {.lex_state = 247, .external_lex_state = 5}, + [2603] = {.lex_state = 247, .external_lex_state = 7}, + [2604] = {.lex_state = 173, .external_lex_state = 2}, + [2605] = {.lex_state = 173, .external_lex_state = 2}, + [2606] = {.lex_state = 173, .external_lex_state = 2}, + [2607] = {.lex_state = 72}, + [2608] = {.lex_state = 82, .external_lex_state = 4}, + [2609] = {.lex_state = 110, .external_lex_state = 8}, + [2610] = {.lex_state = 173, .external_lex_state = 2}, + [2611] = {.lex_state = 173, .external_lex_state = 2}, + [2612] = {.lex_state = 173, .external_lex_state = 2}, + [2613] = {.lex_state = 72}, + [2614] = {.lex_state = 82, .external_lex_state = 4}, + [2615] = {.lex_state = 110, .external_lex_state = 8}, + [2616] = {.lex_state = 173, .external_lex_state = 2}, + [2617] = {.lex_state = 234, .external_lex_state = 27}, + [2618] = {.lex_state = 234, .external_lex_state = 27}, + [2619] = {.lex_state = 234, .external_lex_state = 27}, + [2620] = {.lex_state = 234, .external_lex_state = 27}, + [2621] = {.lex_state = 223, .external_lex_state = 16}, + [2622] = {.lex_state = 234, .external_lex_state = 27}, [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}, + [2624] = {.lex_state = 234, .external_lex_state = 27}, + [2625] = {.lex_state = 223, .external_lex_state = 16}, + [2626] = {.lex_state = 234, .external_lex_state = 27}, + [2627] = {.lex_state = 234, .external_lex_state = 27}, + [2628] = {.lex_state = 205, .external_lex_state = 24}, + [2629] = {.lex_state = 205, .external_lex_state = 24}, + [2630] = {.lex_state = 205, .external_lex_state = 24}, + [2631] = {.lex_state = 240, .external_lex_state = 28}, + [2632] = {.lex_state = 240, .external_lex_state = 28}, + [2633] = {.lex_state = 240, .external_lex_state = 28}, + [2634] = {.lex_state = 223, .external_lex_state = 16}, + [2635] = {.lex_state = 205, .external_lex_state = 24}, + [2636] = {.lex_state = 205, .external_lex_state = 24}, + [2637] = {.lex_state = 205, .external_lex_state = 16}, + [2638] = {.lex_state = 223, .external_lex_state = 16}, + [2639] = {.lex_state = 240, .external_lex_state = 28}, + [2640] = {.lex_state = 223, .external_lex_state = 16}, + [2641] = {.lex_state = 240, .external_lex_state = 28}, + [2642] = {.lex_state = 223, .external_lex_state = 16}, + [2643] = {.lex_state = 240, .external_lex_state = 28}, [2644] = {.lex_state = 223, .external_lex_state = 16}, - [2645] = {.lex_state = 225}, + [2645] = {.lex_state = 240, .external_lex_state = 28}, [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}, + [2647] = {.lex_state = 110, .external_lex_state = 21}, + [2648] = {.lex_state = 110, .external_lex_state = 23}, + [2649] = {.lex_state = 72}, + [2650] = {.lex_state = 245, .external_lex_state = 10}, + [2651] = {.lex_state = 90}, + [2652] = {.lex_state = 97}, + [2653] = {.lex_state = 245, .external_lex_state = 10}, + [2654] = {.lex_state = 97, .external_lex_state = 6}, + [2655] = {.lex_state = 56, .external_lex_state = 2}, + [2656] = {.lex_state = 56, .external_lex_state = 2}, + [2657] = {.lex_state = 56, .external_lex_state = 2}, + [2658] = {.lex_state = 72}, + [2659] = {.lex_state = 247, .external_lex_state = 27}, + [2660] = {.lex_state = 247, .external_lex_state = 27}, + [2661] = {.lex_state = 247, .external_lex_state = 27}, + [2662] = {.lex_state = 247, .external_lex_state = 27}, + [2663] = {.lex_state = 234, .external_lex_state = 23}, + [2664] = {.lex_state = 82, .external_lex_state = 3}, + [2665] = {.lex_state = 163}, + [2666] = {.lex_state = 82, .external_lex_state = 14}, + [2667] = {.lex_state = 82, .external_lex_state = 14}, + [2668] = {.lex_state = 205, .external_lex_state = 24}, + [2669] = {.lex_state = 205, .external_lex_state = 24}, + [2670] = {.lex_state = 205, .external_lex_state = 16}, + [2671] = {.lex_state = 223, .external_lex_state = 16}, + [2672] = {.lex_state = 82, .external_lex_state = 14}, + [2673] = {.lex_state = 221, .external_lex_state = 16}, + [2674] = {.lex_state = 82, .external_lex_state = 14}, + [2675] = {.lex_state = 225}, + [2676] = {.lex_state = 223, .external_lex_state = 16}, + [2677] = {.lex_state = 82, .external_lex_state = 14}, + [2678] = {.lex_state = 225}, + [2679] = {.lex_state = 223, .external_lex_state = 16}, + [2680] = {.lex_state = 225}, + [2681] = {.lex_state = 223, .external_lex_state = 16}, + [2682] = {.lex_state = 223, .external_lex_state = 16}, + [2683] = {.lex_state = 82, .external_lex_state = 14}, + [2684] = {.lex_state = 223, .external_lex_state = 16}, + [2685] = {.lex_state = 82, .external_lex_state = 10}, + [2686] = {.lex_state = 82, .external_lex_state = 10}, + [2687] = {.lex_state = 205, .external_lex_state = 24}, + [2688] = {.lex_state = 205, .external_lex_state = 24}, + [2689] = {.lex_state = 205, .external_lex_state = 16}, + [2690] = {.lex_state = 223, .external_lex_state = 16}, + [2691] = {.lex_state = 82, .external_lex_state = 10}, + [2692] = {.lex_state = 221, .external_lex_state = 16}, + [2693] = {.lex_state = 82, .external_lex_state = 10}, + [2694] = {.lex_state = 225}, + [2695] = {.lex_state = 223, .external_lex_state = 16}, + [2696] = {.lex_state = 82, .external_lex_state = 10}, + [2697] = {.lex_state = 225}, + [2698] = {.lex_state = 223, .external_lex_state = 16}, + [2699] = {.lex_state = 225}, [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}, + [2701] = {.lex_state = 223, .external_lex_state = 16}, + [2702] = {.lex_state = 82, .external_lex_state = 10}, + [2703] = {.lex_state = 223, .external_lex_state = 16}, + [2704] = {.lex_state = 247, .external_lex_state = 5}, + [2705] = {.lex_state = 173, .external_lex_state = 2}, + [2706] = {.lex_state = 72}, + [2707] = {.lex_state = 82, .external_lex_state = 4}, + [2708] = {.lex_state = 110, .external_lex_state = 8}, + [2709] = {.lex_state = 173, .external_lex_state = 2}, + [2710] = {.lex_state = 72}, + [2711] = {.lex_state = 82, .external_lex_state = 4}, + [2712] = {.lex_state = 110, .external_lex_state = 8}, + [2713] = {.lex_state = 234, .external_lex_state = 27}, + [2714] = {.lex_state = 234, .external_lex_state = 27}, + [2715] = {.lex_state = 234, .external_lex_state = 27}, + [2716] = {.lex_state = 240, .external_lex_state = 28}, + [2717] = {.lex_state = 240, .external_lex_state = 28}, + [2718] = {.lex_state = 240, .external_lex_state = 28}, + [2719] = {.lex_state = 240, .external_lex_state = 28}, [2720] = {.lex_state = 223, .external_lex_state = 16}, - [2721] = {.lex_state = 82, .external_lex_state = 10}, + [2721] = {.lex_state = 240, .external_lex_state = 28}, [2722] = {.lex_state = 223, .external_lex_state = 16}, - [2723] = {.lex_state = 82, .external_lex_state = 10}, + [2723] = {.lex_state = 240, .external_lex_state = 28}, [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}, + [2725] = {.lex_state = 240, .external_lex_state = 28}, + [2726] = {.lex_state = 240, .external_lex_state = 28}, + [2727] = {.lex_state = 245, .external_lex_state = 10}, + [2728] = {.lex_state = 245, .external_lex_state = 10}, + [2729] = {.lex_state = 72}, + [2730] = {.lex_state = 245, .external_lex_state = 10}, + [2731] = {.lex_state = 245, .external_lex_state = 10}, + [2732] = {.lex_state = 145}, + [2733] = {.lex_state = 90}, [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}, + [2737] = {.lex_state = 62}, + [2738] = {.lex_state = 151, .external_lex_state = 16}, + [2739] = {.lex_state = 154, .external_lex_state = 6}, + [2740] = {.lex_state = 151, .external_lex_state = 16}, + [2741] = {.lex_state = 151, .external_lex_state = 16}, + [2742] = {.lex_state = 68}, + [2743] = {.lex_state = 163, .external_lex_state = 2}, + [2744] = {.lex_state = 68}, + [2745] = {.lex_state = 171, .external_lex_state = 2}, + [2746] = {.lex_state = 68}, + [2747] = {.lex_state = 163, .external_lex_state = 2}, + [2748] = {.lex_state = 247, .external_lex_state = 27}, + [2749] = {.lex_state = 247, .external_lex_state = 27}, + [2750] = {.lex_state = 247, .external_lex_state = 27}, + [2751] = {.lex_state = 82, .external_lex_state = 3}, + [2752] = {.lex_state = 82, .external_lex_state = 14}, + [2753] = {.lex_state = 82, .external_lex_state = 14}, [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}, + [2755] = {.lex_state = 223, .external_lex_state = 16}, + [2756] = {.lex_state = 205, .external_lex_state = 24}, + [2757] = {.lex_state = 205, .external_lex_state = 24}, + [2758] = {.lex_state = 205, .external_lex_state = 16}, + [2759] = {.lex_state = 223, .external_lex_state = 16}, + [2760] = {.lex_state = 82, .external_lex_state = 14}, + [2761] = {.lex_state = 223, .external_lex_state = 16}, + [2762] = {.lex_state = 82, .external_lex_state = 14}, + [2763] = {.lex_state = 223, .external_lex_state = 16}, [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}, + [2765] = {.lex_state = 223, .external_lex_state = 16}, + [2766] = {.lex_state = 82, .external_lex_state = 14}, + [2767] = {.lex_state = 223, .external_lex_state = 16}, [2768] = {.lex_state = 82, .external_lex_state = 10}, - [2769] = {.lex_state = 223, .external_lex_state = 16}, + [2769] = {.lex_state = 82, .external_lex_state = 10}, [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}, + [2772] = {.lex_state = 205, .external_lex_state = 24}, + [2773] = {.lex_state = 205, .external_lex_state = 24}, + [2774] = {.lex_state = 205, .external_lex_state = 16}, + [2775] = {.lex_state = 223, .external_lex_state = 16}, + [2776] = {.lex_state = 82, .external_lex_state = 10}, + [2777] = {.lex_state = 223, .external_lex_state = 16}, + [2778] = {.lex_state = 82, .external_lex_state = 10}, + [2779] = {.lex_state = 223, .external_lex_state = 16}, + [2780] = {.lex_state = 82, .external_lex_state = 10}, + [2781] = {.lex_state = 223, .external_lex_state = 16}, + [2782] = {.lex_state = 82, .external_lex_state = 10}, + [2783] = {.lex_state = 223, .external_lex_state = 16}, + [2784] = {.lex_state = 173, .external_lex_state = 2}, + [2785] = {.lex_state = 173, .external_lex_state = 2}, + [2786] = {.lex_state = 240, .external_lex_state = 28}, + [2787] = {.lex_state = 240, .external_lex_state = 28}, + [2788] = {.lex_state = 240, .external_lex_state = 28}, + [2789] = {.lex_state = 245, .external_lex_state = 10}, + [2790] = {.lex_state = 245, .external_lex_state = 10}, + [2791] = {.lex_state = 245, .external_lex_state = 10}, + [2792] = {.lex_state = 145}, + [2793] = {.lex_state = 221, .external_lex_state = 16}, + [2794] = {.lex_state = 245, .external_lex_state = 10}, + [2795] = {.lex_state = 225}, + [2796] = {.lex_state = 223, .external_lex_state = 16}, + [2797] = {.lex_state = 62}, + [2798] = {.lex_state = 151, .external_lex_state = 16}, + [2799] = {.lex_state = 151, .external_lex_state = 16}, + [2800] = {.lex_state = 151, .external_lex_state = 16}, [2801] = {.lex_state = 245, .external_lex_state = 10}, - [2802] = {.lex_state = 245, .external_lex_state = 10}, + [2802] = {.lex_state = 225}, [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}, + [2804] = {.lex_state = 245, .external_lex_state = 10}, + [2805] = {.lex_state = 225}, + [2806] = {.lex_state = 223, .external_lex_state = 16}, + [2807] = {.lex_state = 245, .external_lex_state = 10}, [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}, + [2809] = {.lex_state = 247, .external_lex_state = 27}, + [2810] = {.lex_state = 82, .external_lex_state = 14}, + [2811] = {.lex_state = 82, .external_lex_state = 14}, + [2812] = {.lex_state = 82, .external_lex_state = 14}, + [2813] = {.lex_state = 82, .external_lex_state = 14}, + [2814] = {.lex_state = 223, .external_lex_state = 16}, + [2815] = {.lex_state = 82, .external_lex_state = 14}, + [2816] = {.lex_state = 223, .external_lex_state = 16}, + [2817] = {.lex_state = 82, .external_lex_state = 14}, + [2818] = {.lex_state = 223, .external_lex_state = 16}, + [2819] = {.lex_state = 82, .external_lex_state = 14}, + [2820] = {.lex_state = 82, .external_lex_state = 14}, + [2821] = {.lex_state = 82, .external_lex_state = 10}, + [2822] = {.lex_state = 82, .external_lex_state = 10}, + [2823] = {.lex_state = 82, .external_lex_state = 10}, + [2824] = {.lex_state = 82, .external_lex_state = 10}, + [2825] = {.lex_state = 223, .external_lex_state = 16}, + [2826] = {.lex_state = 82, .external_lex_state = 10}, + [2827] = {.lex_state = 223, .external_lex_state = 16}, + [2828] = {.lex_state = 82, .external_lex_state = 10}, + [2829] = {.lex_state = 223, .external_lex_state = 16}, + [2830] = {.lex_state = 82, .external_lex_state = 10}, + [2831] = {.lex_state = 82, .external_lex_state = 10}, + [2832] = {.lex_state = 245, .external_lex_state = 10}, + [2833] = {.lex_state = 245, .external_lex_state = 10}, + [2834] = {.lex_state = 205, .external_lex_state = 24}, + [2835] = {.lex_state = 205, .external_lex_state = 24}, + [2836] = {.lex_state = 205, .external_lex_state = 16}, + [2837] = {.lex_state = 223, .external_lex_state = 16}, + [2838] = {.lex_state = 245, .external_lex_state = 10}, + [2839] = {.lex_state = 221, .external_lex_state = 16}, + [2840] = {.lex_state = 245, .external_lex_state = 10}, + [2841] = {.lex_state = 225}, + [2842] = {.lex_state = 223, .external_lex_state = 16}, + [2843] = {.lex_state = 245, .external_lex_state = 10}, + [2844] = {.lex_state = 225}, + [2845] = {.lex_state = 223, .external_lex_state = 16}, + [2846] = {.lex_state = 225}, + [2847] = {.lex_state = 223, .external_lex_state = 16}, + [2848] = {.lex_state = 223, .external_lex_state = 16}, + [2849] = {.lex_state = 245, .external_lex_state = 10}, + [2850] = {.lex_state = 223, .external_lex_state = 16}, + [2851] = {.lex_state = 82, .external_lex_state = 14}, + [2852] = {.lex_state = 82, .external_lex_state = 14}, + [2853] = {.lex_state = 82, .external_lex_state = 14}, + [2854] = {.lex_state = 82, .external_lex_state = 10}, + [2855] = {.lex_state = 82, .external_lex_state = 10}, + [2856] = {.lex_state = 82, .external_lex_state = 10}, + [2857] = {.lex_state = 245, .external_lex_state = 10}, + [2858] = {.lex_state = 245, .external_lex_state = 10}, + [2859] = {.lex_state = 245, .external_lex_state = 10}, + [2860] = {.lex_state = 223, .external_lex_state = 16}, + [2861] = {.lex_state = 205, .external_lex_state = 24}, + [2862] = {.lex_state = 205, .external_lex_state = 24}, + [2863] = {.lex_state = 205, .external_lex_state = 16}, + [2864] = {.lex_state = 223, .external_lex_state = 16}, + [2865] = {.lex_state = 245, .external_lex_state = 10}, + [2866] = {.lex_state = 223, .external_lex_state = 16}, + [2867] = {.lex_state = 245, .external_lex_state = 10}, + [2868] = {.lex_state = 223, .external_lex_state = 16}, + [2869] = {.lex_state = 245, .external_lex_state = 10}, + [2870] = {.lex_state = 223, .external_lex_state = 16}, + [2871] = {.lex_state = 245, .external_lex_state = 10}, + [2872] = {.lex_state = 223, .external_lex_state = 16}, + [2873] = {.lex_state = 245, .external_lex_state = 10}, + [2874] = {.lex_state = 245, .external_lex_state = 10}, + [2875] = {.lex_state = 245, .external_lex_state = 10}, + [2876] = {.lex_state = 245, .external_lex_state = 10}, + [2877] = {.lex_state = 223, .external_lex_state = 16}, + [2878] = {.lex_state = 245, .external_lex_state = 10}, + [2879] = {.lex_state = 223, .external_lex_state = 16}, + [2880] = {.lex_state = 245, .external_lex_state = 10}, + [2881] = {.lex_state = 223, .external_lex_state = 16}, + [2882] = {.lex_state = 245, .external_lex_state = 10}, + [2883] = {.lex_state = 245, .external_lex_state = 10}, + [2884] = {.lex_state = 245, .external_lex_state = 10}, + [2885] = {.lex_state = 245, .external_lex_state = 10}, + [2886] = {.lex_state = 245, .external_lex_state = 10}, }; enum { @@ -8119,7 +8177,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), - [aux_sym_SLASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(3), [anon_sym_COLON_QMARK] = ACTIONS(1), [anon_sym_COLON_DASH] = ACTIONS(1), @@ -9359,9 +9417,9 @@ 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(233), + [aux_sym_string_repeat1] = STATE(234), [anon_sym_DQUOTE] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(429), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), @@ -9369,60 +9427,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [44] = { - [sym_string] = STATE(235), + [sym_string] = STATE(236), [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(429), - [sym_raw_string] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(431), + [sym_raw_string] = ACTIONS(433), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_AT] = ACTIONS(429), - [anon_sym_QMARK] = ACTIONS(429), - [anon_sym_0] = ACTIONS(435), - [anon_sym__] = ACTIONS(435), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_0] = ACTIONS(437), + [anon_sym__] = ACTIONS(437), }, [45] = { [aux_sym_concatenation_repeat1] = STATE(231), [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(437), - [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_in] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(441), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(441), + [anon_sym_LF] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(441), }, [46] = { - [sym_subscript] = STATE(243), - [sym_variable_name] = ACTIONS(443), - [anon_sym_DOLLAR] = ACTIONS(445), - [anon_sym_POUND] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(445), + [sym_subscript] = STATE(244), + [sym_variable_name] = ACTIONS(445), + [anon_sym_DOLLAR] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(447), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(445), - [anon_sym_AT] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(445), - [anon_sym_0] = ACTIONS(451), - [anon_sym__] = ACTIONS(451), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_0] = ACTIONS(453), + [anon_sym__] = ACTIONS(453), }, [47] = { - [sym_for_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_function_definition] = STATE(244), - [sym_subshell] = STATE(244), - [sym_pipeline] = STATE(244), - [sym_list] = STATE(244), - [sym_negated_command] = STATE(244), - [sym_test_command] = STATE(244), - [sym_declaration_command] = STATE(244), - [sym_unset_command] = STATE(244), - [sym_command] = STATE(244), + [sym_for_statement] = STATE(245), + [sym_while_statement] = STATE(245), + [sym_if_statement] = STATE(245), + [sym_case_statement] = STATE(245), + [sym_function_definition] = STATE(245), + [sym_subshell] = STATE(245), + [sym_pipeline] = STATE(245), + [sym_list] = STATE(245), + [sym_negated_command] = STATE(245), + [sym_test_command] = STATE(245), + [sym_declaration_command] = STATE(245), + [sym_unset_command] = STATE(245), + [sym_command] = STATE(245), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(245), + [sym_variable_assignment] = STATE(246), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -9471,21 +9529,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [48] = { - [sym_for_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_case_statement] = STATE(246), - [sym_function_definition] = STATE(246), - [sym_subshell] = STATE(246), - [sym_pipeline] = STATE(246), - [sym_list] = STATE(246), - [sym_negated_command] = STATE(246), - [sym_test_command] = STATE(246), - [sym_declaration_command] = STATE(246), - [sym_unset_command] = STATE(246), - [sym_command] = STATE(246), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_if_statement] = STATE(247), + [sym_case_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_subshell] = STATE(247), + [sym_pipeline] = STATE(247), + [sym_list] = STATE(247), + [sym_negated_command] = STATE(247), + [sym_test_command] = STATE(247), + [sym_declaration_command] = STATE(247), + [sym_unset_command] = STATE(247), + [sym_command] = STATE(247), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(247), + [sym_variable_assignment] = STATE(248), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -9534,21 +9592,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [49] = { - [sym_for_statement] = STATE(248), - [sym_while_statement] = STATE(248), - [sym_if_statement] = STATE(248), - [sym_case_statement] = STATE(248), - [sym_function_definition] = STATE(248), - [sym_subshell] = STATE(248), - [sym_pipeline] = STATE(248), - [sym_list] = STATE(248), - [sym_negated_command] = STATE(248), - [sym_test_command] = STATE(248), - [sym_declaration_command] = STATE(248), - [sym_unset_command] = STATE(248), - [sym_command] = STATE(248), + [sym_for_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_function_definition] = STATE(249), + [sym_subshell] = STATE(249), + [sym_pipeline] = STATE(249), + [sym_list] = STATE(249), + [sym_negated_command] = STATE(249), + [sym_test_command] = STATE(249), + [sym_declaration_command] = STATE(249), + [sym_unset_command] = STATE(249), + [sym_command] = STATE(249), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(249), + [sym_variable_assignment] = STATE(250), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -9597,27 +9655,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [50] = { - [anon_sym_in] = ACTIONS(437), - [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_in] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(441), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(441), + [anon_sym_LF] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(441), }, [51] = { - [sym_compound_statement] = STATE(252), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(455), + [sym_compound_statement] = STATE(253), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(457), [sym_comment] = ACTIONS(53), }, [52] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_EQ] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(459), [sym_comment] = ACTIONS(53), }, [53] = { - [sym__terminated_statement] = STATE(254), + [sym__terminated_statement] = STATE(255), [sym_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), @@ -9682,7 +9740,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [54] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(459), + [sym_word] = ACTIONS(461), }, [55] = { [sym_subshell] = STATE(70), @@ -9725,11 +9783,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(103), }, [56] = { - [sym__expression] = STATE(256), - [sym_binary_expression] = STATE(256), - [sym_unary_expression] = STATE(256), - [sym_parenthesized_expression] = STATE(256), - [sym_concatenation] = STATE(256), + [sym__expression] = STATE(257), + [sym_binary_expression] = STATE(257), + [sym_unary_expression] = STATE(257), + [sym_parenthesized_expression] = STATE(257), + [sym_concatenation] = STATE(257), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), @@ -9752,11 +9810,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(131), }, [57] = { - [sym__expression] = STATE(257), - [sym_binary_expression] = STATE(257), - [sym_unary_expression] = STATE(257), - [sym_parenthesized_expression] = STATE(257), - [sym_concatenation] = STATE(257), + [sym__expression] = STATE(258), + [sym_binary_expression] = STATE(258), + [sym_unary_expression] = STATE(258), + [sym_parenthesized_expression] = STATE(258), + [sym_concatenation] = STATE(258), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), @@ -9779,27 +9837,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(155), }, [58] = { - [sym_variable_assignment] = STATE(262), - [sym_subscript] = STATE(261), - [sym_concatenation] = STATE(262), - [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(262), - [sym_variable_name] = ACTIONS(461), + [sym_variable_assignment] = STATE(263), + [sym_subscript] = STATE(262), + [sym_concatenation] = STATE(263), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [aux_sym_declaration_command_repeat1] = STATE(263), + [sym_variable_name] = ACTIONS(463), [anon_sym_PIPE] = ACTIONS(159), [anon_sym_RPAREN] = 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(463), + [sym__special_characters] = ACTIONS(465), [anon_sym_DQUOTE] = ACTIONS(163), [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(465), + [sym_raw_string] = ACTIONS(467), [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), [anon_sym_BQUOTE] = ACTIONS(173), @@ -9807,30 +9865,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(177), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(179), - [sym_word] = ACTIONS(465), + [sym_word] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_LF] = ACTIONS(181), [anon_sym_AMP] = ACTIONS(159), }, [59] = { - [sym_concatenation] = STATE(265), - [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(265), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(265), + [sym_simple_expansion] = STATE(265), + [sym_string_expansion] = STATE(265), + [sym_expansion] = STATE(265), + [sym_command_substitution] = STATE(265), + [sym_process_substitution] = STATE(265), + [aux_sym_unset_command_repeat1] = STATE(266), [anon_sym_PIPE] = ACTIONS(183), [anon_sym_RPAREN] = 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(467), + [sym__special_characters] = ACTIONS(469), [anon_sym_DQUOTE] = ACTIONS(187), [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(469), + [sym_raw_string] = ACTIONS(471), [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), [anon_sym_BQUOTE] = ACTIONS(197), @@ -9838,13 +9896,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(199), [sym_comment] = ACTIONS(177), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(201), - [sym_word] = ACTIONS(469), + [sym_word] = ACTIONS(471), [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LF] = ACTIONS(203), [anon_sym_AMP] = ACTIONS(183), }, [60] = { - [aux_sym_concatenation_repeat1] = STATE(266), + [aux_sym_concatenation_repeat1] = STATE(267), [sym__simple_heredoc_body] = ACTIONS(221), [sym__heredoc_body_beginning] = ACTIONS(221), [sym_file_descriptor] = ACTIONS(221), @@ -9883,7 +9941,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(225), }, [61] = { - [aux_sym_concatenation_repeat1] = STATE(266), + [aux_sym_concatenation_repeat1] = STATE(267), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), @@ -9922,7 +9980,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(249), }, [62] = { - [aux_sym_concatenation_repeat1] = STATE(266), + [aux_sym_concatenation_repeat1] = STATE(267), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), @@ -9930,7 +9988,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(249), [anon_sym_RPAREN] = ACTIONS(249), [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), [anon_sym_PIPE_AMP] = ACTIONS(249), [anon_sym_AMP_AMP] = ACTIONS(249), [anon_sym_PIPE_PIPE] = ACTIONS(249), @@ -9962,63 +10020,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(249), }, [63] = { - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(477), - [anon_sym_PIPE_AMP] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_SEMI_SEMI] = ACTIONS(479), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_LF] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_LF] = ACTIONS(483), + [anon_sym_AMP] = ACTIONS(479), }, [64] = { - [sym_file_redirect] = STATE(278), - [sym_heredoc_redirect] = STATE(278), + [sym_file_redirect] = STATE(279), + [sym_heredoc_redirect] = STATE(279), [sym_heredoc_body] = STATE(200), - [sym_herestring_redirect] = STATE(278), - [sym_concatenation] = STATE(279), - [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(278), - [aux_sym_command_repeat2] = STATE(279), + [sym_herestring_redirect] = STATE(279), + [sym_concatenation] = STATE(280), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [aux_sym_while_statement_repeat1] = STATE(279), + [aux_sym_command_repeat2] = STATE(280), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(483), + [sym_file_descriptor] = ACTIONS(485), [anon_sym_PIPE] = ACTIONS(343), [anon_sym_RPAREN] = 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(485), - [anon_sym_EQ_EQ] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(489), - [sym__special_characters] = ACTIONS(491), + [anon_sym_LT_LT_LT] = ACTIONS(491), + [sym__special_characters] = ACTIONS(493), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(493), + [sym_raw_string] = ACTIONS(495), [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(493), + [sym_word] = ACTIONS(495), [anon_sym_SEMI] = ACTIONS(343), [anon_sym_LF] = ACTIONS(367), [anon_sym_AMP] = ACTIONS(343), @@ -10026,12 +10084,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [65] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(477), - [anon_sym_PIPE_AMP] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_SEMI_SEMI] = ACTIONS(479), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -10050,32 +10108,32 @@ 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(477), - [anon_sym_LF] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_LF] = ACTIONS(483), + [anon_sym_AMP] = ACTIONS(479), }, [66] = { - [anon_sym_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_EQ] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(459), [sym_comment] = ACTIONS(53), }, [67] = { - [sym__terminated_statement] = STATE(282), - [sym_for_statement] = STATE(280), - [sym_while_statement] = STATE(280), - [sym_if_statement] = STATE(280), - [sym_case_statement] = STATE(280), - [sym_function_definition] = STATE(280), - [sym_subshell] = STATE(280), - [sym_pipeline] = STATE(280), - [sym_list] = STATE(280), - [sym_negated_command] = STATE(280), - [sym_test_command] = STATE(280), - [sym_declaration_command] = STATE(280), - [sym_unset_command] = STATE(280), - [sym_command] = STATE(280), + [sym__terminated_statement] = STATE(283), + [sym_for_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_function_definition] = STATE(281), + [sym_subshell] = STATE(281), + [sym_pipeline] = STATE(281), + [sym_list] = STATE(281), + [sym_negated_command] = STATE(281), + [sym_test_command] = STATE(281), + [sym_declaration_command] = STATE(281), + [sym_unset_command] = STATE(281), + [sym_command] = STATE(281), [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(281), + [sym_variable_assignment] = STATE(282), [sym_subscript] = STATE(66), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -10085,7 +10143,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(61), [sym_command_substitution] = STATE(61), [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(282), + [aux_sym_program_repeat1] = STATE(283), [aux_sym_command_repeat1] = STATE(68), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(85), @@ -10125,7 +10183,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(105), }, [68] = { - [sym_command_name] = STATE(283), + [sym_command_name] = STATE(284), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(71), [sym_file_redirect] = STATE(30), @@ -10146,7 +10204,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(495), + [sym__special_characters] = ACTIONS(497), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), [sym_raw_string] = ACTIONS(103), @@ -10160,61 +10218,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [69] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_PLUS_EQ] = ACTIONS(499), [sym_comment] = ACTIONS(53), }, [70] = { - [anon_sym_esac] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_RPAREN] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(499), - [anon_sym_PIPE_AMP] = ACTIONS(499), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_esac] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(501), + [anon_sym_PIPE_AMP] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_PIPE_PIPE] = ACTIONS(501), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_LF] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(501), }, [71] = { - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_PLUS_EQ] = ACTIONS(499), [sym_comment] = ACTIONS(53), }, [72] = { - [sym__expression] = STATE(288), - [sym_binary_expression] = STATE(288), - [sym_unary_expression] = STATE(288), - [sym_parenthesized_expression] = STATE(288), - [sym_concatenation] = STATE(288), - [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), + [sym__expression] = STATE(289), + [sym_binary_expression] = STATE(289), + [sym_unary_expression] = STATE(289), + [sym_parenthesized_expression] = STATE(289), + [sym_concatenation] = STATE(289), + [sym_string] = STATE(288), + [sym_simple_expansion] = STATE(288), + [sym_string_expansion] = STATE(288), + [sym_expansion] = STATE(288), + [sym_command_substitution] = STATE(288), + [sym_process_substitution] = STATE(288), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(503), - [sym__special_characters] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(505), + [sym__special_characters] = ACTIONS(507), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(507), + [sym_raw_string] = ACTIONS(509), [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(509), - [sym_test_operator] = ACTIONS(511), + [sym_word] = ACTIONS(511), + [sym_test_operator] = ACTIONS(513), }, [73] = { - [sym__expression] = STATE(289), - [sym_binary_expression] = STATE(289), - [sym_unary_expression] = STATE(289), - [sym_parenthesized_expression] = STATE(289), - [sym_concatenation] = STATE(289), + [sym__expression] = STATE(290), + [sym_binary_expression] = STATE(290), + [sym_unary_expression] = STATE(290), + [sym_parenthesized_expression] = STATE(290), + [sym_concatenation] = STATE(290), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), @@ -10237,27 +10295,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(131), }, [74] = { - [aux_sym_concatenation_repeat1] = STATE(291), - [sym__concat] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(515), - [anon_sym_PIPE_PIPE] = ACTIONS(515), - [anon_sym_RBRACK] = ACTIONS(515), - [anon_sym_EQ_TILDE] = ACTIONS(515), - [anon_sym_EQ_EQ] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_BANG_EQ] = ACTIONS(515), + [aux_sym_concatenation_repeat1] = STATE(292), + [sym__concat] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(517), + [anon_sym_PIPE_PIPE] = ACTIONS(517), + [anon_sym_RBRACK] = ACTIONS(517), + [anon_sym_EQ_TILDE] = ACTIONS(517), + [anon_sym_EQ_EQ] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(519), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_GT] = ACTIONS(517), + [anon_sym_BANG_EQ] = ACTIONS(517), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), }, [75] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(293), - [anon_sym_DQUOTE] = ACTIONS(519), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(295), + [anon_sym_DQUOTE] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), @@ -10265,65 +10323,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [76] = { - [sym_string] = STATE(295), + [sym_string] = STATE(297), [anon_sym_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(521), - [sym_raw_string] = ACTIONS(523), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(525), + [sym_raw_string] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(521), - [anon_sym_0] = ACTIONS(527), - [anon_sym__] = ACTIONS(527), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_AT] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(525), + [anon_sym_0] = ACTIONS(531), + [anon_sym__] = ACTIONS(531), }, [77] = { - [aux_sym_concatenation_repeat1] = STATE(291), - [sym__concat] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(529), - [anon_sym_EQ_TILDE] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), + [aux_sym_concatenation_repeat1] = STATE(292), + [sym__concat] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(533), + [anon_sym_PIPE_PIPE] = ACTIONS(533), + [anon_sym_RBRACK] = ACTIONS(533), + [anon_sym_EQ_TILDE] = ACTIONS(533), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_EQ] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(533), + [anon_sym_GT] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(529), + [sym_test_operator] = ACTIONS(533), }, [78] = { - [sym_subscript] = STATE(301), - [sym_variable_name] = ACTIONS(533), - [anon_sym_DOLLAR] = ACTIONS(535), - [anon_sym_POUND] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(535), + [sym_subscript] = STATE(303), + [sym_variable_name] = ACTIONS(537), + [anon_sym_DOLLAR] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(541), + [anon_sym_DASH] = ACTIONS(539), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(539), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_QMARK] = ACTIONS(535), - [anon_sym_0] = ACTIONS(541), - [anon_sym__] = ACTIONS(541), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_QMARK] = ACTIONS(539), + [anon_sym_0] = ACTIONS(545), + [anon_sym__] = ACTIONS(545), }, [79] = { - [sym_for_statement] = STATE(302), - [sym_while_statement] = STATE(302), - [sym_if_statement] = STATE(302), - [sym_case_statement] = STATE(302), - [sym_function_definition] = STATE(302), - [sym_subshell] = STATE(302), - [sym_pipeline] = STATE(302), - [sym_list] = STATE(302), - [sym_negated_command] = STATE(302), - [sym_test_command] = STATE(302), - [sym_declaration_command] = STATE(302), - [sym_unset_command] = STATE(302), - [sym_command] = STATE(302), + [sym_for_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_case_statement] = STATE(304), + [sym_function_definition] = STATE(304), + [sym_subshell] = STATE(304), + [sym_pipeline] = STATE(304), + [sym_list] = STATE(304), + [sym_negated_command] = STATE(304), + [sym_test_command] = STATE(304), + [sym_declaration_command] = STATE(304), + [sym_unset_command] = STATE(304), + [sym_command] = STATE(304), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(303), + [sym_variable_assignment] = STATE(305), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -10372,21 +10430,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [80] = { - [sym_for_statement] = STATE(304), - [sym_while_statement] = STATE(304), - [sym_if_statement] = STATE(304), - [sym_case_statement] = STATE(304), - [sym_function_definition] = STATE(304), - [sym_subshell] = STATE(304), - [sym_pipeline] = STATE(304), - [sym_list] = STATE(304), - [sym_negated_command] = STATE(304), - [sym_test_command] = STATE(304), - [sym_declaration_command] = STATE(304), - [sym_unset_command] = STATE(304), - [sym_command] = STATE(304), + [sym_for_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_function_definition] = STATE(306), + [sym_subshell] = STATE(306), + [sym_pipeline] = STATE(306), + [sym_list] = STATE(306), + [sym_negated_command] = STATE(306), + [sym_test_command] = STATE(306), + [sym_declaration_command] = STATE(306), + [sym_unset_command] = STATE(306), + [sym_command] = STATE(306), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(305), + [sym_variable_assignment] = STATE(307), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -10435,21 +10493,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [81] = { - [sym_for_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_function_definition] = STATE(306), - [sym_subshell] = STATE(306), - [sym_pipeline] = STATE(306), - [sym_list] = STATE(306), - [sym_negated_command] = STATE(306), - [sym_test_command] = STATE(306), - [sym_declaration_command] = STATE(306), - [sym_unset_command] = STATE(306), - [sym_command] = STATE(306), + [sym_for_statement] = STATE(308), + [sym_while_statement] = STATE(308), + [sym_if_statement] = STATE(308), + [sym_case_statement] = STATE(308), + [sym_function_definition] = STATE(308), + [sym_subshell] = STATE(308), + [sym_pipeline] = STATE(308), + [sym_list] = STATE(308), + [sym_negated_command] = STATE(308), + [sym_test_command] = STATE(308), + [sym_declaration_command] = STATE(308), + [sym_unset_command] = STATE(308), + [sym_command] = STATE(308), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(307), + [sym_variable_assignment] = STATE(309), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -10498,51 +10556,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [82] = { - [anon_sym_AMP_AMP] = ACTIONS(543), - [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_EQ_TILDE] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), + [sym_test_operator] = ACTIONS(547), }, [83] = { - [sym__expression] = STATE(311), - [sym_binary_expression] = STATE(311), - [sym_unary_expression] = STATE(311), - [sym_parenthesized_expression] = STATE(311), - [sym_concatenation] = STATE(311), - [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), + [sym__expression] = STATE(313), + [sym_binary_expression] = STATE(313), + [sym_unary_expression] = STATE(313), + [sym_parenthesized_expression] = STATE(313), + [sym_concatenation] = STATE(313), + [sym_string] = STATE(288), + [sym_simple_expansion] = STATE(288), + [sym_string_expansion] = STATE(288), + [sym_expansion] = STATE(288), + [sym_command_substitution] = STATE(288), + [sym_process_substitution] = STATE(288), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(503), - [sym__special_characters] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(505), + [sym__special_characters] = ACTIONS(507), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(507), + [sym_raw_string] = ACTIONS(509), [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(509), - [sym_test_operator] = ACTIONS(511), + [sym_word] = ACTIONS(511), + [sym_test_operator] = ACTIONS(513), }, [84] = { - [sym__expression] = STATE(312), - [sym_binary_expression] = STATE(312), - [sym_unary_expression] = STATE(312), - [sym_parenthesized_expression] = STATE(312), - [sym_concatenation] = STATE(312), + [sym__expression] = STATE(314), + [sym_binary_expression] = STATE(314), + [sym_unary_expression] = STATE(314), + [sym_parenthesized_expression] = STATE(314), + [sym_concatenation] = STATE(314), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), @@ -10565,27 +10623,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(155), }, [85] = { - [aux_sym_concatenation_repeat1] = STATE(314), - [sym__concat] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(515), - [anon_sym_PIPE_PIPE] = ACTIONS(515), - [anon_sym_RBRACK_RBRACK] = ACTIONS(515), - [anon_sym_EQ_TILDE] = ACTIONS(515), - [anon_sym_EQ_EQ] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_BANG_EQ] = ACTIONS(515), + [aux_sym_concatenation_repeat1] = STATE(316), + [sym__concat] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(517), + [anon_sym_PIPE_PIPE] = ACTIONS(517), + [anon_sym_RBRACK_RBRACK] = ACTIONS(517), + [anon_sym_EQ_TILDE] = ACTIONS(517), + [anon_sym_EQ_EQ] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(519), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_GT] = ACTIONS(517), + [anon_sym_BANG_EQ] = ACTIONS(517), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), }, [86] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(316), - [anon_sym_DQUOTE] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(319), + [anon_sym_DQUOTE] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(559), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), @@ -10593,65 +10651,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [87] = { - [sym_string] = STATE(318), + [sym_string] = STATE(321), [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(555), - [sym_raw_string] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(561), + [sym_raw_string] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(555), - [anon_sym_0] = ACTIONS(561), - [anon_sym__] = ACTIONS(561), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_0] = ACTIONS(567), + [anon_sym__] = ACTIONS(567), }, [88] = { - [aux_sym_concatenation_repeat1] = STATE(314), - [sym__concat] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_RBRACK_RBRACK] = ACTIONS(529), - [anon_sym_EQ_TILDE] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), + [aux_sym_concatenation_repeat1] = STATE(316), + [sym__concat] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(533), + [anon_sym_PIPE_PIPE] = ACTIONS(533), + [anon_sym_RBRACK_RBRACK] = ACTIONS(533), + [anon_sym_EQ_TILDE] = ACTIONS(533), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_EQ] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(533), + [anon_sym_GT] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(529), + [sym_test_operator] = ACTIONS(533), }, [89] = { - [sym_subscript] = STATE(324), - [sym_variable_name] = ACTIONS(563), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), + [sym_subscript] = STATE(327), + [sym_variable_name] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(571), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_0] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_0] = ACTIONS(577), + [anon_sym__] = ACTIONS(577), }, [90] = { - [sym_for_statement] = STATE(325), - [sym_while_statement] = STATE(325), - [sym_if_statement] = STATE(325), - [sym_case_statement] = STATE(325), - [sym_function_definition] = STATE(325), - [sym_subshell] = STATE(325), - [sym_pipeline] = STATE(325), - [sym_list] = STATE(325), - [sym_negated_command] = STATE(325), - [sym_test_command] = STATE(325), - [sym_declaration_command] = STATE(325), - [sym_unset_command] = STATE(325), - [sym_command] = STATE(325), + [sym_for_statement] = STATE(328), + [sym_while_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_case_statement] = STATE(328), + [sym_function_definition] = STATE(328), + [sym_subshell] = STATE(328), + [sym_pipeline] = STATE(328), + [sym_list] = STATE(328), + [sym_negated_command] = STATE(328), + [sym_test_command] = STATE(328), + [sym_declaration_command] = STATE(328), + [sym_unset_command] = STATE(328), + [sym_command] = STATE(328), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(326), + [sym_variable_assignment] = STATE(329), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -10700,21 +10758,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [91] = { - [sym_for_statement] = STATE(327), - [sym_while_statement] = STATE(327), - [sym_if_statement] = STATE(327), - [sym_case_statement] = STATE(327), - [sym_function_definition] = STATE(327), - [sym_subshell] = STATE(327), - [sym_pipeline] = STATE(327), - [sym_list] = STATE(327), - [sym_negated_command] = STATE(327), - [sym_test_command] = STATE(327), - [sym_declaration_command] = STATE(327), - [sym_unset_command] = STATE(327), - [sym_command] = STATE(327), + [sym_for_statement] = STATE(330), + [sym_while_statement] = STATE(330), + [sym_if_statement] = STATE(330), + [sym_case_statement] = STATE(330), + [sym_function_definition] = STATE(330), + [sym_subshell] = STATE(330), + [sym_pipeline] = STATE(330), + [sym_list] = STATE(330), + [sym_negated_command] = STATE(330), + [sym_test_command] = STATE(330), + [sym_declaration_command] = STATE(330), + [sym_unset_command] = STATE(330), + [sym_command] = STATE(330), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(328), + [sym_variable_assignment] = STATE(331), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -10763,21 +10821,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [92] = { - [sym_for_statement] = STATE(329), - [sym_while_statement] = STATE(329), - [sym_if_statement] = STATE(329), - [sym_case_statement] = STATE(329), - [sym_function_definition] = STATE(329), - [sym_subshell] = STATE(329), - [sym_pipeline] = STATE(329), - [sym_list] = STATE(329), - [sym_negated_command] = STATE(329), - [sym_test_command] = STATE(329), - [sym_declaration_command] = STATE(329), - [sym_unset_command] = STATE(329), - [sym_command] = STATE(329), + [sym_for_statement] = STATE(332), + [sym_while_statement] = STATE(332), + [sym_if_statement] = STATE(332), + [sym_case_statement] = STATE(332), + [sym_function_definition] = STATE(332), + [sym_subshell] = STATE(332), + [sym_pipeline] = STATE(332), + [sym_list] = STATE(332), + [sym_negated_command] = STATE(332), + [sym_test_command] = STATE(332), + [sym_declaration_command] = STATE(332), + [sym_unset_command] = STATE(332), + [sym_command] = STATE(332), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(330), + [sym_variable_assignment] = STATE(333), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -10826,56 +10884,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [93] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_RBRACK_RBRACK] = ACTIONS(549), + [anon_sym_EQ_TILDE] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), + [sym_test_operator] = ACTIONS(579), }, [94] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), [sym_comment] = ACTIONS(53), }, [95] = { - [aux_sym_concatenation_repeat1] = STATE(335), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_SEMI_SEMI] = ACTIONS(585), - [anon_sym_PIPE_AMP] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [sym__special_characters] = ACTIONS(585), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [sym_raw_string] = ACTIONS(585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LT_LPAREN] = ACTIONS(585), - [anon_sym_GT_LPAREN] = ACTIONS(585), + [aux_sym_concatenation_repeat1] = STATE(338), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_SEMI_SEMI] = ACTIONS(591), + [anon_sym_PIPE_AMP] = ACTIONS(591), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [sym__special_characters] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(591), + [sym_raw_string] = ACTIONS(591), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(591), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(585), - [sym_word] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), + [sym_word] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(591), }, [96] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(337), - [anon_sym_DQUOTE] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(341), + [anon_sym_DQUOTE] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(595), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), @@ -10883,186 +10941,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [97] = { - [sym_string] = STATE(339), - [anon_sym_DQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(591), - [sym_raw_string] = ACTIONS(593), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), + [sym_string] = STATE(343), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [sym_raw_string] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(591), - [anon_sym_0] = ACTIONS(597), - [anon_sym__] = ACTIONS(597), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_0] = ACTIONS(605), + [anon_sym__] = ACTIONS(605), }, [98] = { - [aux_sym_concatenation_repeat1] = STATE(335), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_SEMI_SEMI] = ACTIONS(601), - [anon_sym_PIPE_AMP] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [sym__special_characters] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_DOLLAR] = ACTIONS(601), - [sym_raw_string] = ACTIONS(601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(601), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), - [anon_sym_BQUOTE] = ACTIONS(601), - [anon_sym_LT_LPAREN] = ACTIONS(601), - [anon_sym_GT_LPAREN] = ACTIONS(601), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(601), - [sym_word] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - }, - [99] = { - [sym_subscript] = STATE(345), - [sym_variable_name] = ACTIONS(603), - [anon_sym_DOLLAR] = ACTIONS(605), - [anon_sym_POUND] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(605), + [aux_sym_concatenation_repeat1] = STATE(338), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_SEMI_SEMI] = ACTIONS(609), + [anon_sym_PIPE_AMP] = ACTIONS(609), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [sym__special_characters] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(609), + [sym_raw_string] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(609), + [anon_sym_LT_LPAREN] = ACTIONS(609), + [anon_sym_GT_LPAREN] = ACTIONS(609), [sym_comment] = ACTIONS(177), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_AT] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(605), - [anon_sym_0] = ACTIONS(611), - [anon_sym__] = ACTIONS(611), + [sym_word] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(609), + }, + [99] = { + [sym_subscript] = STATE(349), + [sym_variable_name] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(613), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_0] = ACTIONS(619), + [anon_sym__] = ACTIONS(619), }, [100] = { - [sym_for_statement] = STATE(346), - [sym_while_statement] = STATE(346), - [sym_if_statement] = STATE(346), - [sym_case_statement] = STATE(346), - [sym_function_definition] = STATE(346), - [sym_subshell] = STATE(346), - [sym_pipeline] = STATE(346), - [sym_list] = STATE(346), - [sym_negated_command] = STATE(346), - [sym_test_command] = STATE(346), - [sym_declaration_command] = STATE(346), - [sym_unset_command] = STATE(346), - [sym_command] = STATE(346), - [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(347), - [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), - }, - [101] = { - [sym_for_statement] = STATE(348), - [sym_while_statement] = STATE(348), - [sym_if_statement] = STATE(348), - [sym_case_statement] = STATE(348), - [sym_function_definition] = STATE(348), - [sym_subshell] = STATE(348), - [sym_pipeline] = STATE(348), - [sym_list] = STATE(348), - [sym_negated_command] = STATE(348), - [sym_test_command] = STATE(348), - [sym_declaration_command] = STATE(348), - [sym_unset_command] = STATE(348), - [sym_command] = STATE(348), - [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(349), - [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), - }, - [102] = { [sym_for_statement] = STATE(350), [sym_while_statement] = STATE(350), [sym_if_statement] = STATE(350), @@ -11125,72 +11057,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [103] = { - [sym_variable_name] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_SEMI_SEMI] = ACTIONS(615), - [anon_sym_PIPE_AMP] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [sym__special_characters] = ACTIONS(615), - [anon_sym_DQUOTE] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(615), - [sym_raw_string] = ACTIONS(615), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(615), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_LT_LPAREN] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(615), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(615), - [sym_word] = ACTIONS(615), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), - }, - [104] = { - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(579), + [101] = { + [sym_for_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_function_definition] = STATE(352), + [sym_subshell] = STATE(352), + [sym_pipeline] = STATE(352), + [sym_list] = STATE(352), + [sym_negated_command] = STATE(352), + [sym_test_command] = STATE(352), + [sym_declaration_command] = STATE(352), + [sym_unset_command] = STATE(352), + [sym_command] = STATE(352), + [sym_command_name] = STATE(181), + [sym_variable_assignment] = STATE(353), + [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), }, - [105] = { - [sym_variable_assignment] = STATE(352), - [sym_subscript] = STATE(104), - [sym_concatenation] = STATE(352), - [sym_string] = STATE(98), - [sym_simple_expansion] = STATE(98), - [sym_string_expansion] = STATE(98), - [sym_expansion] = STATE(98), - [sym_command_substitution] = STATE(98), - [sym_process_substitution] = STATE(98), - [aux_sym_declaration_command_repeat1] = STATE(352), - [sym_variable_name] = ACTIONS(157), - [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(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(179), - [sym_word] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(617), + [102] = { + [sym_for_statement] = STATE(354), + [sym_while_statement] = STATE(354), + [sym_if_statement] = STATE(354), + [sym_case_statement] = STATE(354), + [sym_function_definition] = STATE(354), + [sym_subshell] = STATE(354), + [sym_pipeline] = STATE(354), + [sym_list] = STATE(354), + [sym_negated_command] = STATE(354), + [sym_test_command] = STATE(354), + [sym_declaration_command] = STATE(354), + [sym_unset_command] = STATE(354), + [sym_command] = STATE(354), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(355), + [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), }, - [106] = { - [aux_sym_concatenation_repeat1] = STATE(354), - [sym__concat] = ACTIONS(621), + [103] = { + [sym_variable_name] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(623), [anon_sym_SEMI_SEMI] = ACTIONS(623), [anon_sym_PIPE_AMP] = ACTIONS(623), [anon_sym_AMP_AMP] = ACTIONS(623), @@ -11208,16 +11204,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), [sym_word] = ACTIONS(623), [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(625), + [anon_sym_LF] = ACTIONS(621), [anon_sym_AMP] = ACTIONS(623), }, + [104] = { + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [sym_comment] = ACTIONS(53), + }, + [105] = { + [sym_variable_assignment] = STATE(356), + [sym_subscript] = STATE(104), + [sym_concatenation] = STATE(356), + [sym_string] = STATE(98), + [sym_simple_expansion] = STATE(98), + [sym_string_expansion] = STATE(98), + [sym_expansion] = STATE(98), + [sym_command_substitution] = STATE(98), + [sym_process_substitution] = STATE(98), + [aux_sym_declaration_command_repeat1] = STATE(356), + [sym_variable_name] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_SEMI_SEMI] = ACTIONS(625), + [anon_sym_PIPE_AMP] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [sym__special_characters] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(165), + [sym_raw_string] = ACTIONS(167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(175), + [anon_sym_GT_LPAREN] = ACTIONS(175), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(179), + [sym_word] = ACTIONS(167), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(625), + }, + [106] = { + [aux_sym_concatenation_repeat1] = STATE(358), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(631), + [anon_sym_SEMI_SEMI] = ACTIONS(631), + [anon_sym_PIPE_AMP] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym__special_characters] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(631), + [sym_raw_string] = ACTIONS(631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_BQUOTE] = ACTIONS(631), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), + [sym_word] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_LF] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(631), + }, [107] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(356), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(361), + [anon_sym_DQUOTE] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(637), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), @@ -11225,74 +11283,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [108] = { - [sym_string] = STATE(358), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(631), - [sym_raw_string] = ACTIONS(633), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), + [sym_string] = STATE(363), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(641), + [sym_raw_string] = ACTIONS(643), + [anon_sym_POUND] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_0] = ACTIONS(637), - [anon_sym__] = ACTIONS(637), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(641), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_0] = ACTIONS(647), + [anon_sym__] = ACTIONS(647), }, [109] = { - [aux_sym_concatenation_repeat1] = STATE(354), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_SEMI_SEMI] = ACTIONS(639), - [anon_sym_PIPE_AMP] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [sym__special_characters] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(639), - [sym_raw_string] = ACTIONS(639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(639), - [anon_sym_BQUOTE] = ACTIONS(639), - [anon_sym_LT_LPAREN] = ACTIONS(639), - [anon_sym_GT_LPAREN] = ACTIONS(639), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(639), - [sym_word] = ACTIONS(639), - [anon_sym_SEMI] = ACTIONS(639), - [anon_sym_LF] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(639), - }, - [110] = { - [sym_subscript] = STATE(364), - [sym_variable_name] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_POUND] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(645), + [aux_sym_concatenation_repeat1] = STATE(358), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_SEMI_SEMI] = ACTIONS(649), + [anon_sym_PIPE_AMP] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [sym__special_characters] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(649), + [sym_raw_string] = ACTIONS(649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(649), + [anon_sym_BQUOTE] = ACTIONS(649), + [anon_sym_LT_LPAREN] = ACTIONS(649), + [anon_sym_GT_LPAREN] = ACTIONS(649), [sym_comment] = ACTIONS(177), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_QMARK] = ACTIONS(645), - [anon_sym_0] = ACTIONS(651), - [anon_sym__] = ACTIONS(651), + [sym_word] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_LF] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(649), + }, + [110] = { + [sym_subscript] = STATE(369), + [sym_variable_name] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(657), + [anon_sym_DASH] = ACTIONS(655), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_0] = ACTIONS(661), + [anon_sym__] = ACTIONS(661), }, [111] = { - [sym_for_statement] = STATE(365), - [sym_while_statement] = STATE(365), - [sym_if_statement] = STATE(365), - [sym_case_statement] = STATE(365), - [sym_function_definition] = STATE(365), - [sym_subshell] = STATE(365), - [sym_pipeline] = STATE(365), - [sym_list] = STATE(365), - [sym_negated_command] = STATE(365), - [sym_test_command] = STATE(365), - [sym_declaration_command] = STATE(365), - [sym_unset_command] = STATE(365), - [sym_command] = STATE(365), + [sym_for_statement] = STATE(370), + [sym_while_statement] = STATE(370), + [sym_if_statement] = STATE(370), + [sym_case_statement] = STATE(370), + [sym_function_definition] = STATE(370), + [sym_subshell] = STATE(370), + [sym_pipeline] = STATE(370), + [sym_list] = STATE(370), + [sym_negated_command] = STATE(370), + [sym_test_command] = STATE(370), + [sym_declaration_command] = STATE(370), + [sym_unset_command] = STATE(370), + [sym_command] = STATE(370), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(366), + [sym_variable_assignment] = STATE(371), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -11341,21 +11399,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [112] = { - [sym_for_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_function_definition] = STATE(367), - [sym_subshell] = STATE(367), - [sym_pipeline] = STATE(367), - [sym_list] = STATE(367), - [sym_negated_command] = STATE(367), - [sym_test_command] = STATE(367), - [sym_declaration_command] = STATE(367), - [sym_unset_command] = STATE(367), - [sym_command] = STATE(367), + [sym_for_statement] = STATE(372), + [sym_while_statement] = STATE(372), + [sym_if_statement] = STATE(372), + [sym_case_statement] = STATE(372), + [sym_function_definition] = STATE(372), + [sym_subshell] = STATE(372), + [sym_pipeline] = STATE(372), + [sym_list] = STATE(372), + [sym_negated_command] = STATE(372), + [sym_test_command] = STATE(372), + [sym_declaration_command] = STATE(372), + [sym_unset_command] = STATE(372), + [sym_command] = STATE(372), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(368), + [sym_variable_assignment] = STATE(373), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -11404,21 +11462,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [113] = { - [sym_for_statement] = STATE(369), - [sym_while_statement] = STATE(369), - [sym_if_statement] = STATE(369), - [sym_case_statement] = STATE(369), - [sym_function_definition] = STATE(369), - [sym_subshell] = STATE(369), - [sym_pipeline] = STATE(369), - [sym_list] = STATE(369), - [sym_negated_command] = STATE(369), - [sym_test_command] = STATE(369), - [sym_declaration_command] = STATE(369), - [sym_unset_command] = STATE(369), - [sym_command] = STATE(369), + [sym_for_statement] = STATE(374), + [sym_while_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [sym_function_definition] = STATE(374), + [sym_subshell] = STATE(374), + [sym_pipeline] = STATE(374), + [sym_list] = STATE(374), + [sym_negated_command] = STATE(374), + [sym_test_command] = STATE(374), + [sym_declaration_command] = STATE(374), + [sym_unset_command] = STATE(374), + [sym_command] = STATE(374), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(370), + [sym_variable_assignment] = STATE(375), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -11467,42 +11525,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [114] = { - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_SEMI_SEMI] = ACTIONS(653), - [anon_sym_PIPE_AMP] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(653), - [sym__special_characters] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(653), - [sym_raw_string] = ACTIONS(653), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(653), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(653), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_LT_LPAREN] = ACTIONS(653), - [anon_sym_GT_LPAREN] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [anon_sym_SEMI_SEMI] = ACTIONS(663), + [anon_sym_PIPE_AMP] = ACTIONS(663), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [sym__special_characters] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [sym_raw_string] = ACTIONS(663), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LT_LPAREN] = ACTIONS(663), + [anon_sym_GT_LPAREN] = ACTIONS(663), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(653), - [sym_word] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_LF] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(653), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(663), + [sym_word] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LF] = ACTIONS(665), + [anon_sym_AMP] = ACTIONS(663), }, [115] = { - [sym_concatenation] = STATE(371), + [sym_concatenation] = STATE(376), [sym_string] = STATE(109), [sym_simple_expansion] = STATE(109), [sym_string_expansion] = STATE(109), [sym_expansion] = STATE(109), [sym_command_substitution] = STATE(109), [sym_process_substitution] = STATE(109), - [aux_sym_unset_command_repeat1] = STATE(371), - [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), + [aux_sym_unset_command_repeat1] = STATE(376), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_SEMI_SEMI] = ACTIONS(667), + [anon_sym_PIPE_AMP] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(667), + [anon_sym_PIPE_PIPE] = ACTIONS(667), [sym__special_characters] = ACTIONS(185), [anon_sym_DQUOTE] = ACTIONS(187), [anon_sym_DOLLAR] = ACTIONS(189), @@ -11515,41 +11573,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(201), [sym_word] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_LF] = ACTIONS(659), - [anon_sym_AMP] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(667), }, [116] = { - [aux_sym_concatenation_repeat1] = STATE(373), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(661), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(661), - [anon_sym_LT_AMP] = ACTIONS(661), - [anon_sym_GT_AMP] = ACTIONS(661), - [sym__special_characters] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(661), - [anon_sym_BQUOTE] = ACTIONS(661), - [anon_sym_LT_LPAREN] = ACTIONS(661), - [anon_sym_GT_LPAREN] = ACTIONS(661), + [aux_sym_concatenation_repeat1] = STATE(378), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(671), + [anon_sym_LT_AMP] = ACTIONS(671), + [anon_sym_GT_AMP] = ACTIONS(671), + [sym__special_characters] = ACTIONS(671), + [anon_sym_DQUOTE] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_raw_string] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(671), + [anon_sym_BQUOTE] = ACTIONS(671), + [anon_sym_LT_LPAREN] = ACTIONS(671), + [anon_sym_GT_LPAREN] = ACTIONS(671), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(661), + [sym_word] = ACTIONS(671), }, [117] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(375), - [anon_sym_DQUOTE] = ACTIONS(667), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(381), + [anon_sym_DQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR] = ACTIONS(679), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), @@ -11557,74 +11615,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [118] = { - [sym_string] = STATE(377), + [sym_string] = STATE(383), [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(669), - [sym_raw_string] = ACTIONS(671), - [anon_sym_POUND] = ACTIONS(669), - [anon_sym_DASH] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(681), + [sym_raw_string] = ACTIONS(683), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AT] = ACTIONS(669), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_0] = ACTIONS(675), - [anon_sym__] = ACTIONS(675), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_0] = ACTIONS(687), + [anon_sym__] = ACTIONS(687), }, [119] = { - [aux_sym_concatenation_repeat1] = STATE(373), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [sym__special_characters] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(679), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), + [aux_sym_concatenation_repeat1] = STATE(378), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(691), + [sym_raw_string] = ACTIONS(689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(689), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(677), + [sym_word] = ACTIONS(689), }, [120] = { - [sym_subscript] = STATE(383), - [sym_variable_name] = ACTIONS(681), - [anon_sym_DOLLAR] = ACTIONS(683), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(683), + [sym_subscript] = STATE(389), + [sym_variable_name] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(695), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(683), - [anon_sym_QMARK] = ACTIONS(683), - [anon_sym_0] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_AT] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(695), + [anon_sym_0] = ACTIONS(701), + [anon_sym__] = ACTIONS(701), }, [121] = { - [sym_for_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_case_statement] = STATE(384), - [sym_function_definition] = STATE(384), - [sym_subshell] = STATE(384), - [sym_pipeline] = STATE(384), - [sym_list] = STATE(384), - [sym_negated_command] = STATE(384), - [sym_test_command] = STATE(384), - [sym_declaration_command] = STATE(384), - [sym_unset_command] = STATE(384), - [sym_command] = STATE(384), + [sym_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_if_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_subshell] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_command] = STATE(390), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(385), + [sym_variable_assignment] = STATE(391), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -11673,21 +11731,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [122] = { - [sym_for_statement] = STATE(386), - [sym_while_statement] = STATE(386), - [sym_if_statement] = STATE(386), - [sym_case_statement] = STATE(386), - [sym_function_definition] = STATE(386), - [sym_subshell] = STATE(386), - [sym_pipeline] = STATE(386), - [sym_list] = STATE(386), - [sym_negated_command] = STATE(386), - [sym_test_command] = STATE(386), - [sym_declaration_command] = STATE(386), - [sym_unset_command] = STATE(386), - [sym_command] = STATE(386), + [sym_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_subshell] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_command] = STATE(392), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(387), + [sym_variable_assignment] = STATE(393), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -11736,21 +11794,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [123] = { - [sym_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_if_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_subshell] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_command] = STATE(388), + [sym_for_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_case_statement] = STATE(394), + [sym_function_definition] = STATE(394), + [sym_subshell] = STATE(394), + [sym_pipeline] = STATE(394), + [sym_list] = STATE(394), + [sym_negated_command] = STATE(394), + [sym_test_command] = STATE(394), + [sym_declaration_command] = STATE(394), + [sym_unset_command] = STATE(394), + [sym_command] = STATE(394), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(389), + [sym_variable_assignment] = STATE(395), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -11799,176 +11857,177 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [124] = { - [sym_file_descriptor] = ACTIONS(677), - [sym_variable_name] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [sym__special_characters] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(679), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), + [sym_file_descriptor] = ACTIONS(689), + [sym_variable_name] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(691), + [sym_raw_string] = ACTIONS(689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(689), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(677), + [sym_word] = ACTIONS(689), }, [125] = { - [sym_string] = STATE(390), - [sym_simple_expansion] = STATE(390), - [sym_string_expansion] = STATE(390), - [sym_expansion] = STATE(390), - [sym_command_substitution] = STATE(390), - [sym_process_substitution] = STATE(390), - [sym__special_characters] = ACTIONS(691), + [sym_string] = STATE(396), + [sym_simple_expansion] = STATE(396), + [sym_string_expansion] = STATE(396), + [sym_expansion] = STATE(396), + [sym_command_substitution] = STATE(396), + [sym_process_substitution] = STATE(396), + [sym__special_characters] = ACTIONS(703), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(691), + [sym_raw_string] = ACTIONS(703), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(691), + [sym_word] = ACTIONS(703), }, [126] = { - [aux_sym_concatenation_repeat1] = STATE(391), - [sym__simple_heredoc_body] = ACTIONS(693), - [sym__heredoc_body_beginning] = ACTIONS(693), - [sym_file_descriptor] = ACTIONS(693), + [aux_sym_concatenation_repeat1] = STATE(397), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_EQ_TILDE] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_EQ_TILDE] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, [127] = { - [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_RPAREN] = ACTIONS(699), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [anon_sym_EQ_TILDE] = ACTIONS(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), - }, - [128] = { - [anon_sym_DOLLAR] = ACTIONS(701), - [sym__string_content] = ACTIONS(703), - [anon_sym_POUND] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [anon_sym_QMARK] = ACTIONS(705), - [anon_sym_0] = ACTIONS(701), - [anon_sym__] = ACTIONS(701), - }, - [129] = { + [sym__simple_heredoc_body] = ACTIONS(709), + [sym__heredoc_body_beginning] = ACTIONS(709), + [sym_file_descriptor] = ACTIONS(709), [sym__concat] = ACTIONS(709), + [anon_sym_esac] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(711), + [anon_sym_PIPE_AMP] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(711), + [anon_sym_PIPE_PIPE] = ACTIONS(711), + [anon_sym_EQ_TILDE] = ACTIONS(711), + [anon_sym_EQ_EQ] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(711), + [anon_sym_LT_AMP] = ACTIONS(711), + [anon_sym_GT_AMP] = ACTIONS(711), + [anon_sym_LT_LT] = ACTIONS(711), + [anon_sym_LT_LT_DASH] = ACTIONS(711), + [anon_sym_LT_LT_LT] = ACTIONS(711), + [sym__special_characters] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(711), [anon_sym_DOLLAR] = ACTIONS(711), - [sym__string_content] = ACTIONS(713), + [sym_raw_string] = ACTIONS(711), [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), [anon_sym_BQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(711), + [anon_sym_GT_LPAREN] = ACTIONS(711), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + }, + [128] = { + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [129] = { + [sym__concat] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym__string_content] = ACTIONS(727), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), [sym_comment] = ACTIONS(177), }, [130] = { - [sym_subscript] = STATE(400), - [sym_variable_name] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(717), + [sym_subscript] = STATE(407), + [sym_variable_name] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_POUND] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(731), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(717), - [anon_sym_AT] = ACTIONS(717), - [anon_sym_QMARK] = ACTIONS(717), - [anon_sym_0] = ACTIONS(723), - [anon_sym__] = ACTIONS(723), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(735), + [anon_sym_STAR] = ACTIONS(731), + [anon_sym_AT] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(731), + [anon_sym_0] = ACTIONS(737), + [anon_sym__] = ACTIONS(737), }, [131] = { - [sym_for_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_function_definition] = STATE(401), - [sym_subshell] = STATE(401), - [sym_pipeline] = STATE(401), - [sym_list] = STATE(401), - [sym_negated_command] = STATE(401), - [sym_test_command] = STATE(401), - [sym_declaration_command] = STATE(401), - [sym_unset_command] = STATE(401), - [sym_command] = STATE(401), + [sym_for_statement] = STATE(408), + [sym_while_statement] = STATE(408), + [sym_if_statement] = STATE(408), + [sym_case_statement] = STATE(408), + [sym_function_definition] = STATE(408), + [sym_subshell] = STATE(408), + [sym_pipeline] = STATE(408), + [sym_list] = STATE(408), + [sym_negated_command] = STATE(408), + [sym_test_command] = STATE(408), + [sym_declaration_command] = STATE(408), + [sym_unset_command] = STATE(408), + [sym_command] = STATE(408), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(402), + [sym_variable_assignment] = STATE(409), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -12017,21 +12076,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [132] = { - [sym_for_statement] = STATE(403), - [sym_while_statement] = STATE(403), - [sym_if_statement] = STATE(403), - [sym_case_statement] = STATE(403), - [sym_function_definition] = STATE(403), - [sym_subshell] = STATE(403), - [sym_pipeline] = STATE(403), - [sym_list] = STATE(403), - [sym_negated_command] = STATE(403), - [sym_test_command] = STATE(403), - [sym_declaration_command] = STATE(403), - [sym_unset_command] = STATE(403), - [sym_command] = STATE(403), + [sym_for_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_function_definition] = STATE(410), + [sym_subshell] = STATE(410), + [sym_pipeline] = STATE(410), + [sym_list] = STATE(410), + [sym_negated_command] = STATE(410), + [sym_test_command] = STATE(410), + [sym_declaration_command] = STATE(410), + [sym_unset_command] = STATE(410), + [sym_command] = STATE(410), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(404), + [sym_variable_assignment] = STATE(411), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -12083,9 +12142,9 @@ 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(406), - [anon_sym_DQUOTE] = ACTIONS(725), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(739), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), @@ -12093,242 +12152,242 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [134] = { - [sym__simple_heredoc_body] = ACTIONS(727), - [sym__heredoc_body_beginning] = ACTIONS(727), - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [anon_sym_EQ_TILDE] = ACTIONS(729), - [anon_sym_EQ_EQ] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(729), - [anon_sym_LT_AMP] = ACTIONS(729), - [anon_sym_GT_AMP] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(729), - [anon_sym_LT_LT_DASH] = ACTIONS(729), - [anon_sym_LT_LT_LT] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym__simple_heredoc_body] = ACTIONS(741), + [sym__heredoc_body_beginning] = ACTIONS(741), + [sym_file_descriptor] = ACTIONS(741), + [sym__concat] = ACTIONS(741), + [anon_sym_esac] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [anon_sym_EQ_TILDE] = ACTIONS(743), + [anon_sym_EQ_EQ] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(743), + [anon_sym_AMP_GT] = ACTIONS(743), + [anon_sym_AMP_GT_GT] = ACTIONS(743), + [anon_sym_LT_AMP] = ACTIONS(743), + [anon_sym_GT_AMP] = ACTIONS(743), + [anon_sym_LT_LT] = ACTIONS(743), + [anon_sym_LT_LT_DASH] = ACTIONS(743), + [anon_sym_LT_LT_LT] = ACTIONS(743), + [sym__special_characters] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), + [anon_sym_BQUOTE] = ACTIONS(743), + [anon_sym_LT_LPAREN] = ACTIONS(743), + [anon_sym_GT_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), + [sym_word] = ACTIONS(743), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), }, [135] = { - [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_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym__simple_heredoc_body] = ACTIONS(745), + [sym__heredoc_body_beginning] = ACTIONS(745), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(745), + [anon_sym_esac] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_PIPE_AMP] = ACTIONS(747), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), + [anon_sym_EQ_TILDE] = ACTIONS(747), + [anon_sym_EQ_EQ] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_GT] = ACTIONS(747), + [anon_sym_AMP_GT] = ACTIONS(747), + [anon_sym_AMP_GT_GT] = ACTIONS(747), + [anon_sym_LT_AMP] = ACTIONS(747), + [anon_sym_GT_AMP] = ACTIONS(747), + [anon_sym_LT_LT] = ACTIONS(747), + [anon_sym_LT_LT_DASH] = ACTIONS(747), + [anon_sym_LT_LT_LT] = ACTIONS(747), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [anon_sym_LT_LPAREN] = ACTIONS(747), + [anon_sym_GT_LPAREN] = ACTIONS(747), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [sym_word] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(747), }, [136] = { - [sym__simple_heredoc_body] = ACTIONS(735), - [sym__heredoc_body_beginning] = ACTIONS(735), - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(737), - [anon_sym_LT_LT_LT] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym__simple_heredoc_body] = ACTIONS(749), + [sym__heredoc_body_beginning] = ACTIONS(749), + [sym_file_descriptor] = ACTIONS(749), + [sym__concat] = ACTIONS(749), + [anon_sym_esac] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_PIPE_AMP] = ACTIONS(751), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), + [anon_sym_EQ_TILDE] = ACTIONS(751), + [anon_sym_EQ_EQ] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(751), + [anon_sym_AMP_GT] = ACTIONS(751), + [anon_sym_AMP_GT_GT] = ACTIONS(751), + [anon_sym_LT_AMP] = ACTIONS(751), + [anon_sym_GT_AMP] = ACTIONS(751), + [anon_sym_LT_LT] = ACTIONS(751), + [anon_sym_LT_LT_DASH] = ACTIONS(751), + [anon_sym_LT_LT_LT] = ACTIONS(751), + [sym__special_characters] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), + [anon_sym_BQUOTE] = ACTIONS(751), + [anon_sym_LT_LPAREN] = ACTIONS(751), + [anon_sym_GT_LPAREN] = ACTIONS(751), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), + [sym_word] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(751), }, [137] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(755), [sym_comment] = ACTIONS(53), }, [138] = { - [sym_concatenation] = STATE(419), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(419), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(745), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_COLON_QMARK] = ACTIONS(745), - [anon_sym_COLON_DASH] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_concatenation] = STATE(426), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(426), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(759), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(773), + [anon_sym_COLON] = ACTIONS(759), + [anon_sym_COLON_QMARK] = ACTIONS(759), + [anon_sym_COLON_DASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [139] = { - [sym_subscript] = STATE(423), - [sym_variable_name] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), + [sym_subscript] = STATE(430), + [sym_variable_name] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(771), - [anon_sym_0] = ACTIONS(775), - [anon_sym__] = ACTIONS(775), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_AT] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_0] = ACTIONS(789), + [anon_sym__] = ACTIONS(789), }, [140] = { - [sym_concatenation] = STATE(426), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(426), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(779), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(783), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_COLON_QMARK] = ACTIONS(779), - [anon_sym_COLON_DASH] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_concatenation] = STATE(433), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(433), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(793), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(793), + [anon_sym_COLON_QMARK] = ACTIONS(793), + [anon_sym_COLON_DASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [141] = { - [sym_concatenation] = STATE(429), - [sym_string] = STATE(413), - [sym_simple_expansion] = STATE(413), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(429), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(787), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(791), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_COLON_QMARK] = ACTIONS(787), - [anon_sym_COLON_DASH] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_concatenation] = STATE(436), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(436), + [anon_sym_RBRACE] = ACTIONS(799), + [anon_sym_EQ] = ACTIONS(801), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_COLON_QMARK] = ACTIONS(801), + [anon_sym_COLON_DASH] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [142] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_PLUS_EQ] = ACTIONS(807), [sym_comment] = ACTIONS(53), }, [143] = { [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), }, [144] = { - [sym__terminated_statement] = STATE(432), + [sym__terminated_statement] = STATE(439), [sym_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), @@ -12392,7 +12451,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [145] = { - [sym__terminated_statement] = STATE(433), + [sym__terminated_statement] = STATE(440), [sym_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), @@ -12456,46 +12515,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [146] = { - [sym_concatenation] = STATE(436), - [sym_string] = STATE(435), - [sym_simple_expansion] = STATE(435), - [sym_string_expansion] = STATE(435), - [sym_expansion] = STATE(435), - [sym_command_substitution] = STATE(435), - [sym_process_substitution] = STATE(435), - [sym__special_characters] = ACTIONS(797), + [sym_concatenation] = STATE(443), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [sym__special_characters] = ACTIONS(811), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(799), + [sym_raw_string] = ACTIONS(813), [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(799), + [sym_word] = ACTIONS(813), }, [147] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(801), + [sym_word] = ACTIONS(815), }, [148] = { - [sym__terminated_statement] = STATE(440), - [sym_for_statement] = STATE(438), - [sym_while_statement] = STATE(438), - [sym_if_statement] = STATE(438), - [sym_case_statement] = STATE(438), - [sym_function_definition] = STATE(438), - [sym_subshell] = STATE(438), - [sym_pipeline] = STATE(438), - [sym_list] = STATE(438), - [sym_negated_command] = STATE(438), - [sym_test_command] = STATE(438), - [sym_declaration_command] = STATE(438), - [sym_unset_command] = STATE(438), - [sym_command] = STATE(438), + [sym__terminated_statement] = STATE(447), + [sym_for_statement] = STATE(445), + [sym_while_statement] = STATE(445), + [sym_if_statement] = STATE(445), + [sym_case_statement] = STATE(445), + [sym_function_definition] = STATE(445), + [sym_subshell] = STATE(445), + [sym_pipeline] = STATE(445), + [sym_list] = STATE(445), + [sym_negated_command] = STATE(445), + [sym_test_command] = STATE(445), + [sym_declaration_command] = STATE(445), + [sym_unset_command] = STATE(445), + [sym_command] = STATE(445), [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(439), + [sym_variable_assignment] = STATE(446), [sym_subscript] = STATE(66), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -12505,7 +12564,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(61), [sym_command_substitution] = STATE(61), [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(440), + [aux_sym_program_repeat1] = STATE(447), [aux_sym_command_repeat1] = STATE(68), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(85), @@ -12545,9 +12604,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(105), }, [149] = { - [sym_subshell] = STATE(441), - [sym_test_command] = STATE(441), - [sym_command] = STATE(441), + [sym_subshell] = STATE(448), + [sym_test_command] = STATE(448), + [sym_command] = STATE(448), [sym_command_name] = STATE(164), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(71), @@ -12585,11 +12644,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(291), }, [150] = { - [sym__expression] = STATE(442), - [sym_binary_expression] = STATE(442), - [sym_unary_expression] = STATE(442), - [sym_parenthesized_expression] = STATE(442), - [sym_concatenation] = STATE(442), + [sym__expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_concatenation] = STATE(449), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), @@ -12612,11 +12671,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(131), }, [151] = { - [sym__expression] = STATE(443), - [sym_binary_expression] = STATE(443), - [sym_unary_expression] = STATE(443), - [sym_parenthesized_expression] = STATE(443), - [sym_concatenation] = STATE(443), + [sym__expression] = STATE(450), + [sym_binary_expression] = STATE(450), + [sym_unary_expression] = STATE(450), + [sym_parenthesized_expression] = STATE(450), + [sym_concatenation] = STATE(450), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), @@ -12639,68 +12698,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(155), }, [152] = { - [sym_variable_assignment] = STATE(455), - [sym_subscript] = STATE(454), - [sym_concatenation] = STATE(455), - [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(455), - [sym_variable_name] = ACTIONS(803), + [sym_variable_assignment] = STATE(462), + [sym_subscript] = STATE(461), + [sym_concatenation] = STATE(462), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_declaration_command_repeat1] = STATE(462), + [sym_variable_name] = ACTIONS(817), [anon_sym_PIPE] = ACTIONS(159), [anon_sym_RPAREN] = ACTIONS(181), [anon_sym_PIPE_AMP] = ACTIONS(181), [anon_sym_AMP_AMP] = ACTIONS(181), [anon_sym_PIPE_PIPE] = ACTIONS(181), - [sym__special_characters] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(811), - [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__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), + [anon_sym_BQUOTE] = ACTIONS(831), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(821), - [sym_word] = ACTIONS(823), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(835), + [sym_word] = ACTIONS(837), }, [153] = { - [sym_concatenation] = STATE(465), - [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(465), + [sym_concatenation] = STATE(472), + [sym_string] = STATE(466), + [sym_simple_expansion] = STATE(466), + [sym_string_expansion] = STATE(466), + [sym_expansion] = STATE(466), + [sym_command_substitution] = STATE(466), + [sym_process_substitution] = STATE(466), + [aux_sym_unset_command_repeat1] = STATE(472), [anon_sym_PIPE] = ACTIONS(183), [anon_sym_RPAREN] = ACTIONS(203), [anon_sym_PIPE_AMP] = ACTIONS(203), [anon_sym_AMP_AMP] = ACTIONS(203), [anon_sym_PIPE_PIPE] = ACTIONS(203), - [sym__special_characters] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(829), - [sym_raw_string] = ACTIONS(831), - [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__special_characters] = ACTIONS(839), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(851), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(841), - [sym_word] = ACTIONS(843), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), + [sym_word] = ACTIONS(857), }, [154] = { - [aux_sym_concatenation_repeat1] = STATE(467), + [aux_sym_concatenation_repeat1] = STATE(474), [sym__simple_heredoc_body] = ACTIONS(221), [sym__heredoc_body_beginning] = ACTIONS(221), [sym_file_descriptor] = ACTIONS(221), - [sym__concat] = ACTIONS(845), + [sym__concat] = ACTIONS(859), [anon_sym_PIPE] = ACTIONS(225), [anon_sym_RPAREN] = ACTIONS(221), [anon_sym_PIPE_AMP] = ACTIONS(221), @@ -12734,9 +12793,9 @@ 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(469), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(477), + [anon_sym_DQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(863), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), @@ -12744,26 +12803,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [156] = { - [sym_string] = STATE(471), + [sym_string] = STATE(479), [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(849), - [sym_raw_string] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(865), + [sym_raw_string] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(853), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(849), - [anon_sym_0] = ACTIONS(855), - [anon_sym__] = ACTIONS(855), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_0] = ACTIONS(871), + [anon_sym__] = ACTIONS(871), }, [157] = { - [aux_sym_concatenation_repeat1] = STATE(467), + [aux_sym_concatenation_repeat1] = STATE(474), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(845), + [sym__concat] = ACTIONS(859), [anon_sym_PIPE] = ACTIONS(249), [anon_sym_RPAREN] = ACTIONS(247), [anon_sym_PIPE_AMP] = ACTIONS(247), @@ -12794,35 +12853,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(249), }, [158] = { - [sym_subscript] = STATE(477), - [sym_variable_name] = ACTIONS(857), - [anon_sym_DOLLAR] = ACTIONS(859), - [anon_sym_POUND] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(859), + [sym_subscript] = STATE(485), + [sym_variable_name] = ACTIONS(873), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_AT] = ACTIONS(859), - [anon_sym_QMARK] = ACTIONS(859), - [anon_sym_0] = ACTIONS(865), - [anon_sym__] = ACTIONS(865), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_0] = ACTIONS(881), + [anon_sym__] = ACTIONS(881), }, [159] = { - [sym_for_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_function_definition] = STATE(478), - [sym_subshell] = STATE(478), - [sym_pipeline] = STATE(478), - [sym_list] = STATE(478), - [sym_negated_command] = STATE(478), - [sym_test_command] = STATE(478), - [sym_declaration_command] = STATE(478), - [sym_unset_command] = STATE(478), - [sym_command] = STATE(478), + [sym_for_statement] = STATE(486), + [sym_while_statement] = STATE(486), + [sym_if_statement] = STATE(486), + [sym_case_statement] = STATE(486), + [sym_function_definition] = STATE(486), + [sym_subshell] = STATE(486), + [sym_pipeline] = STATE(486), + [sym_list] = STATE(486), + [sym_negated_command] = STATE(486), + [sym_test_command] = STATE(486), + [sym_declaration_command] = STATE(486), + [sym_unset_command] = STATE(486), + [sym_command] = STATE(486), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(479), + [sym_variable_assignment] = STATE(487), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -12871,21 +12930,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [160] = { - [sym_for_statement] = STATE(480), - [sym_while_statement] = STATE(480), - [sym_if_statement] = STATE(480), - [sym_case_statement] = STATE(480), - [sym_function_definition] = STATE(480), - [sym_subshell] = STATE(480), - [sym_pipeline] = STATE(480), - [sym_list] = STATE(480), - [sym_negated_command] = STATE(480), - [sym_test_command] = STATE(480), - [sym_declaration_command] = STATE(480), - [sym_unset_command] = STATE(480), - [sym_command] = STATE(480), + [sym_for_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_if_statement] = STATE(488), + [sym_case_statement] = STATE(488), + [sym_function_definition] = STATE(488), + [sym_subshell] = STATE(488), + [sym_pipeline] = STATE(488), + [sym_list] = STATE(488), + [sym_negated_command] = STATE(488), + [sym_test_command] = STATE(488), + [sym_declaration_command] = STATE(488), + [sym_unset_command] = STATE(488), + [sym_command] = STATE(488), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(481), + [sym_variable_assignment] = STATE(489), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -12934,21 +12993,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [161] = { - [sym_for_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_if_statement] = STATE(482), - [sym_case_statement] = STATE(482), - [sym_function_definition] = STATE(482), - [sym_subshell] = STATE(482), - [sym_pipeline] = STATE(482), - [sym_list] = STATE(482), - [sym_negated_command] = STATE(482), - [sym_test_command] = STATE(482), - [sym_declaration_command] = STATE(482), - [sym_unset_command] = STATE(482), - [sym_command] = STATE(482), + [sym_for_statement] = STATE(490), + [sym_while_statement] = STATE(490), + [sym_if_statement] = STATE(490), + [sym_case_statement] = STATE(490), + [sym_function_definition] = STATE(490), + [sym_subshell] = STATE(490), + [sym_pipeline] = STATE(490), + [sym_list] = STATE(490), + [sym_negated_command] = STATE(490), + [sym_test_command] = STATE(490), + [sym_declaration_command] = STATE(490), + [sym_unset_command] = STATE(490), + [sym_command] = STATE(490), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(483), + [sym_variable_assignment] = STATE(491), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -12997,14 +13056,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [162] = { - [aux_sym_concatenation_repeat1] = STATE(467), + [aux_sym_concatenation_repeat1] = STATE(474), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(845), + [sym__concat] = ACTIONS(859), [anon_sym_PIPE] = ACTIONS(249), [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(883), [anon_sym_PIPE_AMP] = ACTIONS(247), [anon_sym_AMP_AMP] = ACTIONS(247), [anon_sym_PIPE_PIPE] = ACTIONS(247), @@ -13033,67 +13092,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(249), }, [163] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(871), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [sym_comment] = ACTIONS(53), }, [164] = { - [sym_file_redirect] = STATE(498), - [sym_heredoc_redirect] = STATE(498), - [sym_heredoc_body] = STATE(497), - [sym_herestring_redirect] = STATE(498), - [sym_concatenation] = STATE(499), - [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(498), - [aux_sym_command_repeat2] = STATE(499), - [sym__simple_heredoc_body] = ACTIONS(877), - [sym__heredoc_body_beginning] = ACTIONS(879), - [sym_file_descriptor] = ACTIONS(881), + [sym_file_redirect] = STATE(506), + [sym_heredoc_redirect] = STATE(506), + [sym_heredoc_body] = STATE(505), + [sym_herestring_redirect] = STATE(506), + [sym_concatenation] = STATE(507), + [sym_string] = STATE(504), + [sym_simple_expansion] = STATE(504), + [sym_string_expansion] = STATE(504), + [sym_expansion] = STATE(504), + [sym_command_substitution] = STATE(504), + [sym_process_substitution] = STATE(504), + [aux_sym_while_statement_repeat1] = STATE(506), + [aux_sym_command_repeat2] = STATE(507), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(897), [anon_sym_PIPE] = ACTIONS(343), [anon_sym_RPAREN] = ACTIONS(367), [anon_sym_PIPE_AMP] = ACTIONS(367), [anon_sym_AMP_AMP] = ACTIONS(367), [anon_sym_PIPE_PIPE] = ACTIONS(367), - [anon_sym_EQ_TILDE] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(887), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(887), - [anon_sym_LT_AMP] = ACTIONS(887), - [anon_sym_GT_AMP] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [sym__special_characters] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(903), + [anon_sym_LT_AMP] = ACTIONS(903), + [anon_sym_GT_AMP] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym__special_characters] = ACTIONS(911), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(897), + [sym_raw_string] = ACTIONS(913), [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(899), + [sym_word] = ACTIONS(915), }, [165] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(871), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -13114,8 +13173,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(369), }, [166] = { - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_PLUS_EQ] = ACTIONS(807), [sym_comment] = ACTIONS(53), }, [167] = { @@ -13152,7 +13211,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(249), }, [168] = { - [sym_command_name] = STATE(500), + [sym_command_name] = STATE(508), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(71), [sym_file_redirect] = STATE(30), @@ -13173,7 +13232,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(901), + [sym__special_characters] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), [sym_raw_string] = ACTIONS(291), @@ -13187,12 +13246,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [169] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), [sym_comment] = ACTIONS(53), }, [170] = { - [sym__terminated_statement] = STATE(502), + [sym__terminated_statement] = STATE(510), [sym_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), @@ -13257,12 +13316,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [171] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_word] = ACTIONS(921), }, [172] = { - [sym_subshell] = STATE(441), - [sym_test_command] = STATE(441), - [sym_command] = STATE(441), + [sym_subshell] = STATE(448), + [sym_test_command] = STATE(448), + [sym_command] = STATE(448), [sym_command_name] = STATE(181), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(71), @@ -13300,11 +13359,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(321), }, [173] = { - [sym__expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_parenthesized_expression] = STATE(504), - [sym_concatenation] = STATE(504), + [sym__expression] = STATE(512), + [sym_binary_expression] = STATE(512), + [sym_unary_expression] = STATE(512), + [sym_parenthesized_expression] = STATE(512), + [sym_concatenation] = STATE(512), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), @@ -13327,11 +13386,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(131), }, [174] = { - [sym__expression] = STATE(505), - [sym_binary_expression] = STATE(505), - [sym_unary_expression] = STATE(505), - [sym_parenthesized_expression] = STATE(505), - [sym_concatenation] = STATE(505), + [sym__expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_unary_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(513), + [sym_concatenation] = STATE(513), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), @@ -13354,66 +13413,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(155), }, [175] = { - [sym_variable_assignment] = STATE(510), - [sym_subscript] = STATE(509), - [sym_concatenation] = STATE(510), - [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(510), - [sym_variable_name] = ACTIONS(907), + [sym_variable_assignment] = STATE(518), + [sym_subscript] = STATE(517), + [sym_concatenation] = STATE(518), + [sym_string] = STATE(516), + [sym_simple_expansion] = STATE(516), + [sym_string_expansion] = STATE(516), + [sym_expansion] = STATE(516), + [sym_command_substitution] = STATE(516), + [sym_process_substitution] = STATE(516), + [aux_sym_declaration_command_repeat1] = STATE(518), + [sym_variable_name] = ACTIONS(923), [anon_sym_PIPE] = ACTIONS(159), [anon_sym_PIPE_AMP] = ACTIONS(181), [anon_sym_AMP_AMP] = ACTIONS(181), [anon_sym_PIPE_PIPE] = ACTIONS(181), - [sym__special_characters] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(815), + [sym__special_characters] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), [anon_sym_BQUOTE] = ACTIONS(181), - [anon_sym_LT_LPAREN] = ACTIONS(819), - [anon_sym_GT_LPAREN] = ACTIONS(819), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(821), - [sym_word] = ACTIONS(913), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(835), + [sym_word] = ACTIONS(929), }, [176] = { - [sym_concatenation] = STATE(513), - [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(513), + [sym_concatenation] = STATE(521), + [sym_string] = STATE(520), + [sym_simple_expansion] = STATE(520), + [sym_string_expansion] = STATE(520), + [sym_expansion] = STATE(520), + [sym_command_substitution] = STATE(520), + [sym_process_substitution] = STATE(520), + [aux_sym_unset_command_repeat1] = STATE(521), [anon_sym_PIPE] = ACTIONS(183), [anon_sym_PIPE_AMP] = ACTIONS(203), [anon_sym_AMP_AMP] = ACTIONS(203), [anon_sym_PIPE_PIPE] = ACTIONS(203), - [sym__special_characters] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(829), - [sym_raw_string] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LT_LPAREN] = ACTIONS(839), - [anon_sym_GT_LPAREN] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(841), - [sym_word] = ACTIONS(919), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), + [sym_word] = ACTIONS(935), }, [177] = { - [aux_sym_concatenation_repeat1] = STATE(514), + [aux_sym_concatenation_repeat1] = STATE(522), [sym__simple_heredoc_body] = ACTIONS(221), [sym__heredoc_body_beginning] = ACTIONS(221), [sym_file_descriptor] = ACTIONS(221), - [sym__concat] = ACTIONS(845), + [sym__concat] = ACTIONS(859), [anon_sym_PIPE] = ACTIONS(225), [anon_sym_PIPE_AMP] = ACTIONS(221), [anon_sym_AMP_AMP] = ACTIONS(221), @@ -13443,11 +13502,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(225), }, [178] = { - [aux_sym_concatenation_repeat1] = STATE(514), + [aux_sym_concatenation_repeat1] = STATE(522), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(845), + [sym__concat] = ACTIONS(859), [anon_sym_PIPE] = ACTIONS(249), [anon_sym_PIPE_AMP] = ACTIONS(247), [anon_sym_AMP_AMP] = ACTIONS(247), @@ -13477,13 +13536,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(249), }, [179] = { - [aux_sym_concatenation_repeat1] = STATE(514), + [aux_sym_concatenation_repeat1] = STATE(522), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(845), + [sym__concat] = ACTIONS(859), [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(937), [anon_sym_PIPE_AMP] = ACTIONS(247), [anon_sym_AMP_AMP] = ACTIONS(247), [anon_sym_PIPE_PIPE] = ACTIONS(247), @@ -13512,65 +13571,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(249), }, [180] = { - [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(871), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(887), [sym_comment] = ACTIONS(53), }, [181] = { - [sym_file_redirect] = STATE(524), - [sym_heredoc_redirect] = STATE(524), - [sym_heredoc_body] = STATE(497), - [sym_herestring_redirect] = STATE(524), - [sym_concatenation] = STATE(525), - [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(524), - [aux_sym_command_repeat2] = STATE(525), - [sym__simple_heredoc_body] = ACTIONS(877), - [sym__heredoc_body_beginning] = ACTIONS(879), - [sym_file_descriptor] = ACTIONS(929), + [sym_file_redirect] = STATE(532), + [sym_heredoc_redirect] = STATE(532), + [sym_heredoc_body] = STATE(505), + [sym_herestring_redirect] = STATE(532), + [sym_concatenation] = STATE(533), + [sym_string] = STATE(531), + [sym_simple_expansion] = STATE(531), + [sym_string_expansion] = STATE(531), + [sym_expansion] = STATE(531), + [sym_command_substitution] = STATE(531), + [sym_process_substitution] = STATE(531), + [aux_sym_while_statement_repeat1] = STATE(532), + [aux_sym_command_repeat2] = STATE(533), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(945), [anon_sym_PIPE] = ACTIONS(343), [anon_sym_PIPE_AMP] = ACTIONS(367), [anon_sym_AMP_AMP] = ACTIONS(367), [anon_sym_PIPE_PIPE] = ACTIONS(367), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [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), - [sym__special_characters] = ACTIONS(939), + [anon_sym_EQ_TILDE] = ACTIONS(947), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(953), + [sym__special_characters] = ACTIONS(955), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(941), + [sym_raw_string] = ACTIONS(957), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), [anon_sym_BQUOTE] = ACTIONS(367), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(943), + [sym_word] = ACTIONS(959), }, [182] = { [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_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -13584,19 +13643,19 @@ 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(871), + [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, [183] = { - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(919), [sym_comment] = ACTIONS(53), }, [184] = { - [sym_command_name] = STATE(526), + [sym_command_name] = STATE(534), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(71), [sym_file_redirect] = STATE(30), @@ -13617,7 +13676,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(945), + [sym__special_characters] = ACTIONS(961), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), [sym_raw_string] = ACTIONS(321), @@ -13630,21 +13689,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(321), }, [185] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [sym_comment] = ACTIONS(53), }, [186] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -13665,25 +13724,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(369), }, [187] = { - [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(965), [sym_comment] = ACTIONS(53), }, [188] = { - [sym_for_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_function_definition] = STATE(529), - [sym_subshell] = STATE(529), - [sym_pipeline] = STATE(529), - [sym_list] = STATE(529), - [sym_negated_command] = STATE(529), - [sym_test_command] = STATE(529), - [sym_declaration_command] = STATE(529), - [sym_unset_command] = STATE(529), - [sym_command] = STATE(529), + [sym_for_statement] = STATE(537), + [sym_while_statement] = STATE(537), + [sym_if_statement] = STATE(537), + [sym_case_statement] = STATE(537), + [sym_function_definition] = STATE(537), + [sym_subshell] = STATE(537), + [sym_pipeline] = STATE(537), + [sym_list] = STATE(537), + [sym_negated_command] = STATE(537), + [sym_test_command] = STATE(537), + [sym_declaration_command] = STATE(537), + [sym_unset_command] = STATE(537), + [sym_command] = STATE(537), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(530), + [sym_variable_assignment] = STATE(538), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -13732,66 +13791,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [189] = { - [sym_file_descriptor] = ACTIONS(951), - [sym_variable_name] = ACTIONS(951), - [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), - [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_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [ts_builtin_sym_end] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_done] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_fi] = ACTIONS(969), + [anon_sym_elif] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_esac] = ACTIONS(969), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(969), + [sym_raw_string] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(953), + [sym_word] = ACTIONS(969), }, [190] = { - [sym_for_statement] = STATE(531), - [sym_while_statement] = STATE(531), - [sym_if_statement] = STATE(531), - [sym_case_statement] = STATE(531), - [sym_function_definition] = STATE(531), - [sym_subshell] = STATE(531), - [sym_pipeline] = STATE(531), - [sym_list] = STATE(531), - [sym_negated_command] = STATE(531), - [sym_test_command] = STATE(531), - [sym_declaration_command] = STATE(531), - [sym_unset_command] = STATE(531), - [sym_command] = STATE(531), + [sym_for_statement] = STATE(539), + [sym_while_statement] = STATE(539), + [sym_if_statement] = STATE(539), + [sym_case_statement] = STATE(539), + [sym_function_definition] = STATE(539), + [sym_subshell] = STATE(539), + [sym_pipeline] = STATE(539), + [sym_list] = STATE(539), + [sym_negated_command] = STATE(539), + [sym_test_command] = STATE(539), + [sym_declaration_command] = STATE(539), + [sym_unset_command] = STATE(539), + [sym_command] = STATE(539), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(532), + [sym_variable_assignment] = STATE(540), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -13840,206 +13899,206 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [191] = { - [anon_sym_esac] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_SEMI_SEMI] = ACTIONS(955), - [anon_sym_PIPE_AMP] = ACTIONS(955), - [anon_sym_AMP_AMP] = ACTIONS(955), - [anon_sym_PIPE_PIPE] = ACTIONS(955), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(971), }, [192] = { - [sym_simple_expansion] = STATE(536), - [sym_expansion] = STATE(536), - [aux_sym_heredoc_body_repeat1] = STATE(536), - [sym__heredoc_body_middle] = ACTIONS(959), - [sym__heredoc_body_end] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(965), + [sym_simple_expansion] = STATE(544), + [sym_expansion] = STATE(544), + [aux_sym_heredoc_body_repeat1] = STATE(544), + [sym__heredoc_body_middle] = ACTIONS(975), + [sym__heredoc_body_end] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), [sym_comment] = ACTIONS(53), }, [193] = { - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(967), - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), [sym_comment] = ACTIONS(53), }, [194] = { - [sym_concatenation] = STATE(540), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [sym__special_characters] = ACTIONS(971), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(547), + [sym_simple_expansion] = STATE(547), + [sym_string_expansion] = STATE(547), + [sym_expansion] = STATE(547), + [sym_command_substitution] = STATE(547), + [sym_process_substitution] = STATE(547), + [sym__special_characters] = ACTIONS(987), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(973), + [sym_raw_string] = ACTIONS(989), [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(973), - [sym_regex] = ACTIONS(975), + [sym_word] = ACTIONS(989), + [sym_regex] = ACTIONS(991), }, [195] = { - [sym_concatenation] = STATE(543), - [sym_string] = STATE(542), - [sym_simple_expansion] = STATE(542), - [sym_string_expansion] = STATE(542), - [sym_expansion] = STATE(542), - [sym_command_substitution] = STATE(542), - [sym_process_substitution] = STATE(542), - [sym__special_characters] = ACTIONS(977), + [sym_concatenation] = STATE(551), + [sym_string] = STATE(550), + [sym_simple_expansion] = STATE(550), + [sym_string_expansion] = STATE(550), + [sym_expansion] = STATE(550), + [sym_command_substitution] = STATE(550), + [sym_process_substitution] = STATE(550), + [sym__special_characters] = ACTIONS(993), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(979), + [sym_raw_string] = ACTIONS(995), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(979), + [sym_word] = ACTIONS(995), }, [196] = { - [sym_heredoc_start] = ACTIONS(981), + [sym_heredoc_start] = ACTIONS(997), [sym_comment] = ACTIONS(53), }, [197] = { - [sym_concatenation] = STATE(547), - [sym_string] = STATE(546), - [sym_simple_expansion] = STATE(546), - [sym_string_expansion] = STATE(546), - [sym_expansion] = STATE(546), - [sym_command_substitution] = STATE(546), - [sym_process_substitution] = STATE(546), - [sym__special_characters] = ACTIONS(983), + [sym_concatenation] = STATE(555), + [sym_string] = STATE(554), + [sym_simple_expansion] = STATE(554), + [sym_string_expansion] = STATE(554), + [sym_expansion] = STATE(554), + [sym_command_substitution] = STATE(554), + [sym_process_substitution] = STATE(554), + [sym__special_characters] = ACTIONS(999), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(985), + [sym_raw_string] = ACTIONS(1001), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(985), + [sym_word] = ACTIONS(1001), }, [198] = { [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(987), - [sym__heredoc_body_beginning] = ACTIONS(987), - [sym_file_descriptor] = ACTIONS(987), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_AMP_GT] = ACTIONS(989), - [anon_sym_AMP_GT_GT] = ACTIONS(989), - [anon_sym_LT_AMP] = ACTIONS(989), - [anon_sym_GT_AMP] = ACTIONS(989), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_LT_LT_DASH] = ACTIONS(989), - [anon_sym_LT_LT_LT] = ACTIONS(989), - [sym__special_characters] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [sym_raw_string] = ACTIONS(989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), - [anon_sym_BQUOTE] = ACTIONS(989), - [anon_sym_LT_LPAREN] = ACTIONS(989), - [anon_sym_GT_LPAREN] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1005), + [anon_sym_PIPE_AMP] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_EQ_TILDE] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1005), + [anon_sym_LT_AMP] = ACTIONS(1005), + [anon_sym_GT_AMP] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1005), + [anon_sym_LT_LT_LT] = ACTIONS(1005), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [sym_raw_string] = ACTIONS(1005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1005), + [anon_sym_BQUOTE] = ACTIONS(1005), + [anon_sym_LT_LPAREN] = ACTIONS(1005), + [anon_sym_GT_LPAREN] = ACTIONS(1005), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_LF] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(989), + [sym_word] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), }, [199] = { [aux_sym_concatenation_repeat1] = STATE(126), - [sym__simple_heredoc_body] = ACTIONS(991), - [sym__heredoc_body_beginning] = ACTIONS(991), - [sym_file_descriptor] = ACTIONS(991), + [sym__simple_heredoc_body] = ACTIONS(1007), + [sym__heredoc_body_beginning] = ACTIONS(1007), + [sym_file_descriptor] = ACTIONS(1007), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_SEMI_SEMI] = ACTIONS(993), - [anon_sym_PIPE_AMP] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_EQ_TILDE] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_AMP_GT] = ACTIONS(993), - [anon_sym_AMP_GT_GT] = ACTIONS(993), - [anon_sym_LT_AMP] = ACTIONS(993), - [anon_sym_GT_AMP] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_LT_LT_DASH] = ACTIONS(993), - [anon_sym_LT_LT_LT] = ACTIONS(993), - [sym__special_characters] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(993), - [sym_raw_string] = ACTIONS(993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(993), - [anon_sym_BQUOTE] = ACTIONS(993), - [anon_sym_LT_LPAREN] = ACTIONS(993), - [anon_sym_GT_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_EQ_TILDE] = ACTIONS(1009), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1009), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym__special_characters] = ACTIONS(1009), + [anon_sym_DQUOTE] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1009), + [anon_sym_BQUOTE] = ACTIONS(1009), + [anon_sym_LT_LPAREN] = ACTIONS(1009), + [anon_sym_GT_LPAREN] = ACTIONS(1009), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LF] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(993), + [sym_word] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1009), + [anon_sym_LF] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), }, [200] = { - [anon_sym_esac] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_RPAREN] = 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_esac] = ACTIONS(1011), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, [201] = { - [sym_file_redirect] = STATE(549), - [sym_heredoc_redirect] = STATE(549), - [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(549), - [aux_sym_while_statement_repeat1] = STATE(549), + [sym_file_redirect] = STATE(557), + [sym_heredoc_redirect] = STATE(557), + [sym_heredoc_body] = STATE(556), + [sym_herestring_redirect] = STATE(557), + [aux_sym_while_statement_repeat1] = STATE(557), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [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_PIPE] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), [anon_sym_LT] = ACTIONS(347), [anon_sym_GT] = ACTIONS(347), [anon_sym_GT_GT] = ACTIONS(347), @@ -14051,32 +14110,32 @@ 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(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, [202] = { - [sym_file_redirect] = STATE(550), - [sym_heredoc_redirect] = STATE(550), - [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(550), - [sym_concatenation] = STATE(551), + [sym_file_redirect] = STATE(558), + [sym_heredoc_redirect] = STATE(558), + [sym_heredoc_body] = STATE(556), + [sym_herestring_redirect] = STATE(558), + [sym_concatenation] = STATE(559), [sym_string] = STATE(199), [sym_simple_expansion] = STATE(199), [sym_string_expansion] = STATE(199), [sym_expansion] = STATE(199), [sym_command_substitution] = STATE(199), [sym_process_substitution] = STATE(199), - [aux_sym_while_statement_repeat1] = STATE(550), - [aux_sym_command_repeat2] = STATE(551), + [aux_sym_while_statement_repeat1] = STATE(558), + [aux_sym_command_repeat2] = STATE(559), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [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_PIPE] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), [anon_sym_EQ_TILDE] = ACTIONS(345), [anon_sym_EQ_EQ] = ACTIONS(345), [anon_sym_LT] = ACTIONS(347), @@ -14100,9 +14159,9 @@ 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(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, [203] = { [sym__terminated_statement] = STATE(203), @@ -14132,66 +14191,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(19), [aux_sym_program_repeat1] = STATE(203), [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(999), - [sym_variable_name] = ACTIONS(1002), - [ts_builtin_sym_end] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1010), - [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_file_descriptor] = ACTIONS(1015), + [sym_variable_name] = ACTIONS(1018), + [ts_builtin_sym_end] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), + [anon_sym_declare] = ACTIONS(1050), + [anon_sym_typeset] = ACTIONS(1050), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_readonly] = ACTIONS(1050), + [anon_sym_local] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1053), + [anon_sym_unsetenv] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [sym__special_characters] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1083), + [anon_sym_GT_LPAREN] = ACTIONS(1083), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1070), + [sym_word] = ACTIONS(1086), }, [204] = { - [sym_file_redirect] = STATE(550), - [sym_heredoc_redirect] = STATE(550), - [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(550), - [sym_concatenation] = STATE(552), + [sym_file_redirect] = STATE(558), + [sym_heredoc_redirect] = STATE(558), + [sym_heredoc_body] = STATE(556), + [sym_herestring_redirect] = STATE(558), + [sym_concatenation] = STATE(560), [sym_string] = STATE(199), [sym_simple_expansion] = STATE(199), [sym_string_expansion] = STATE(199), [sym_expansion] = STATE(199), [sym_command_substitution] = STATE(199), [sym_process_substitution] = STATE(199), - [aux_sym_while_statement_repeat1] = STATE(550), - [aux_sym_command_repeat2] = STATE(552), + [aux_sym_while_statement_repeat1] = STATE(558), + [aux_sym_command_repeat2] = STATE(560), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [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_PIPE] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), [anon_sym_EQ_TILDE] = ACTIONS(345), [anon_sym_EQ_EQ] = ACTIONS(345), [anon_sym_LT] = ACTIONS(347), @@ -14215,216 +14274,216 @@ 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(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, [205] = { [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(71), [sym_file_redirect] = STATE(30), [aux_sym_command_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(1073), - [sym_variable_name] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1079), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [sym__special_characters] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(1087), - [sym_raw_string] = ACTIONS(1085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), - [anon_sym_BQUOTE] = ACTIONS(1085), - [anon_sym_LT_LPAREN] = ACTIONS(1085), - [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1089), + [sym_variable_name] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1095), + [anon_sym_GT] = ACTIONS(1095), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_AMP_GT] = ACTIONS(1095), + [anon_sym_AMP_GT_GT] = ACTIONS(1098), + [anon_sym_LT_AMP] = ACTIONS(1098), + [anon_sym_GT_AMP] = ACTIONS(1098), + [sym__special_characters] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1103), + [sym_raw_string] = ACTIONS(1101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1101), + [anon_sym_LT_LPAREN] = ACTIONS(1101), + [anon_sym_GT_LPAREN] = ACTIONS(1101), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1085), + [sym_word] = ACTIONS(1101), }, [206] = { - [aux_sym_concatenation_repeat1] = STATE(373), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [sym__special_characters] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1091), - [sym_raw_string] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), + [aux_sym_concatenation_repeat1] = STATE(378), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1105), + [anon_sym_LT_AMP] = ACTIONS(1105), + [anon_sym_GT_AMP] = ACTIONS(1105), + [sym__special_characters] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(1107), + [sym_raw_string] = ACTIONS(1105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1089), + [sym_word] = ACTIONS(1105), }, [207] = { - [aux_sym_concatenation_repeat1] = STATE(373), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1095), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1093), - }, - [208] = { - [sym_file_descriptor] = ACTIONS(1093), - [sym_variable_name] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1095), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1093), - }, - [209] = { - [aux_sym_concatenation_repeat1] = STATE(555), - [sym__concat] = ACTIONS(1097), - [anon_sym_RBRACK] = ACTIONS(1099), - [sym_comment] = ACTIONS(53), - }, - [210] = { - [aux_sym_concatenation_repeat1] = STATE(555), - [sym__concat] = ACTIONS(1101), - [anon_sym_RBRACK] = ACTIONS(1103), - [sym_comment] = ACTIONS(53), - }, - [211] = { - [sym__concat] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1103), - [sym_comment] = ACTIONS(53), - }, - [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), - [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), + [aux_sym_concatenation_repeat1] = STATE(378), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_AMP_GT] = ACTIONS(1109), + [anon_sym_AMP_GT] = ACTIONS(1111), [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), + [anon_sym_DOLLAR] = ACTIONS(1111), [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_comment] = ACTIONS(53), [sym_word] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), + }, + [208] = { + [sym_file_descriptor] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1109), + [anon_sym_AMP_GT] = ACTIONS(1111), + [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(1111), + [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(53), + [sym_word] = ACTIONS(1109), + }, + [209] = { + [aux_sym_concatenation_repeat1] = STATE(563), + [sym__concat] = ACTIONS(1113), + [anon_sym_RBRACK] = ACTIONS(1115), + [sym_comment] = ACTIONS(53), + }, + [210] = { + [aux_sym_concatenation_repeat1] = STATE(563), + [sym__concat] = ACTIONS(1117), + [anon_sym_RBRACK] = ACTIONS(1119), + [sym_comment] = ACTIONS(53), + }, + [211] = { + [sym__concat] = ACTIONS(1121), + [anon_sym_RBRACK] = ACTIONS(1119), + [sym_comment] = ACTIONS(53), + }, + [212] = { + [sym_file_descriptor] = ACTIONS(1123), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_esac] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(1125), + [anon_sym_SEMI_SEMI] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1125), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(1125), + [anon_sym_LT_AMP] = ACTIONS(1125), + [anon_sym_GT_AMP] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1125), + [anon_sym_GT_LPAREN] = ACTIONS(1125), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_LF] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), }, [213] = { - [sym_concatenation] = STATE(568), - [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(568), - [anon_sym_RPAREN] = ACTIONS(1111), - [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_concatenation] = STATE(576), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(576), + [anon_sym_RPAREN] = ACTIONS(1127), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1119), + [sym_word] = ACTIONS(1135), }, [214] = { - [aux_sym_concatenation_repeat1] = STATE(570), - [sym_file_descriptor] = ACTIONS(1129), - [sym__concat] = ACTIONS(1131), - [sym_variable_name] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [sym__special_characters] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), + [aux_sym_concatenation_repeat1] = STATE(578), + [sym_file_descriptor] = ACTIONS(1145), + [sym__concat] = ACTIONS(1147), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_SEMI_SEMI] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1149), + [anon_sym_PIPE_PIPE] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1149), + [anon_sym_GT_GT] = ACTIONS(1149), + [anon_sym_AMP_GT] = ACTIONS(1149), + [anon_sym_AMP_GT_GT] = ACTIONS(1149), + [anon_sym_LT_AMP] = ACTIONS(1149), + [anon_sym_GT_AMP] = ACTIONS(1149), + [sym__special_characters] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), + [anon_sym_BQUOTE] = ACTIONS(1149), + [anon_sym_LT_LPAREN] = ACTIONS(1149), + [anon_sym_GT_LPAREN] = ACTIONS(1149), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1133), + [sym_word] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1149), }, [215] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(572), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(581), + [anon_sym_DQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1153), [sym__string_content] = ACTIONS(231), [anon_sym_DOLLAR_LBRACE] = ACTIONS(233), [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), @@ -14432,82 +14491,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(177), }, [216] = { - [sym_string] = STATE(574), + [sym_string] = STATE(583), [anon_sym_DQUOTE] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(1137), - [sym_raw_string] = ACTIONS(1139), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1155), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_QMARK] = ACTIONS(1137), - [anon_sym_0] = ACTIONS(1143), - [anon_sym__] = ACTIONS(1143), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_QMARK] = ACTIONS(1155), + [anon_sym_0] = ACTIONS(1161), + [anon_sym__] = ACTIONS(1161), }, [217] = { - [aux_sym_concatenation_repeat1] = STATE(570), - [sym_file_descriptor] = ACTIONS(1107), - [sym__concat] = ACTIONS(1131), - [sym_variable_name] = ACTIONS(1107), - [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), + [aux_sym_concatenation_repeat1] = STATE(578), + [sym_file_descriptor] = ACTIONS(1123), + [sym__concat] = ACTIONS(1147), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_SEMI_SEMI] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1125), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(1125), + [anon_sym_LT_AMP] = ACTIONS(1125), + [anon_sym_GT_AMP] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1125), + [anon_sym_GT_LPAREN] = ACTIONS(1125), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), + [sym_word] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_LF] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), }, [218] = { - [sym_subscript] = STATE(580), - [sym_variable_name] = ACTIONS(1145), - [anon_sym_DOLLAR] = ACTIONS(1147), - [anon_sym_POUND] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), + [sym_subscript] = STATE(589), + [sym_variable_name] = ACTIONS(1163), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_POUND] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(1147), - [anon_sym_QMARK] = ACTIONS(1147), - [anon_sym_0] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AT] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_0] = ACTIONS(1171), + [anon_sym__] = ACTIONS(1171), }, [219] = { - [sym_for_statement] = STATE(581), - [sym_while_statement] = STATE(581), - [sym_if_statement] = STATE(581), - [sym_case_statement] = STATE(581), - [sym_function_definition] = STATE(581), - [sym_subshell] = STATE(581), - [sym_pipeline] = STATE(581), - [sym_list] = STATE(581), - [sym_negated_command] = STATE(581), - [sym_test_command] = STATE(581), - [sym_declaration_command] = STATE(581), - [sym_unset_command] = STATE(581), - [sym_command] = STATE(581), + [sym_for_statement] = STATE(590), + [sym_while_statement] = STATE(590), + [sym_if_statement] = STATE(590), + [sym_case_statement] = STATE(590), + [sym_function_definition] = STATE(590), + [sym_subshell] = STATE(590), + [sym_pipeline] = STATE(590), + [sym_list] = STATE(590), + [sym_negated_command] = STATE(590), + [sym_test_command] = STATE(590), + [sym_declaration_command] = STATE(590), + [sym_unset_command] = STATE(590), + [sym_command] = STATE(590), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(582), + [sym_variable_assignment] = STATE(591), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -14556,21 +14615,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [220] = { - [sym_for_statement] = STATE(583), - [sym_while_statement] = STATE(583), - [sym_if_statement] = STATE(583), - [sym_case_statement] = STATE(583), - [sym_function_definition] = STATE(583), - [sym_subshell] = STATE(583), - [sym_pipeline] = STATE(583), - [sym_list] = STATE(583), - [sym_negated_command] = STATE(583), - [sym_test_command] = STATE(583), - [sym_declaration_command] = STATE(583), - [sym_unset_command] = STATE(583), - [sym_command] = STATE(583), + [sym_for_statement] = STATE(592), + [sym_while_statement] = STATE(592), + [sym_if_statement] = STATE(592), + [sym_case_statement] = STATE(592), + [sym_function_definition] = STATE(592), + [sym_subshell] = STATE(592), + [sym_pipeline] = STATE(592), + [sym_list] = STATE(592), + [sym_negated_command] = STATE(592), + [sym_test_command] = STATE(592), + [sym_declaration_command] = STATE(592), + [sym_unset_command] = STATE(592), + [sym_command] = STATE(592), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(584), + [sym_variable_assignment] = STATE(593), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -14619,21 +14678,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(323), }, [221] = { - [sym_for_statement] = STATE(585), - [sym_while_statement] = STATE(585), - [sym_if_statement] = STATE(585), - [sym_case_statement] = STATE(585), - [sym_function_definition] = STATE(585), - [sym_subshell] = STATE(585), - [sym_pipeline] = STATE(585), - [sym_list] = STATE(585), - [sym_negated_command] = STATE(585), - [sym_test_command] = STATE(585), - [sym_declaration_command] = STATE(585), - [sym_unset_command] = STATE(585), - [sym_command] = STATE(585), + [sym_for_statement] = STATE(594), + [sym_while_statement] = STATE(594), + [sym_if_statement] = STATE(594), + [sym_case_statement] = STATE(594), + [sym_function_definition] = STATE(594), + [sym_subshell] = STATE(594), + [sym_pipeline] = STATE(594), + [sym_list] = STATE(594), + [sym_negated_command] = STATE(594), + [sym_test_command] = STATE(594), + [sym_declaration_command] = STATE(594), + [sym_unset_command] = STATE(594), + [sym_command] = STATE(594), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(586), + [sym_variable_assignment] = STATE(595), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -14682,33 +14741,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(301), }, [222] = { - [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), + [sym_concatenation] = STATE(598), + [sym_string] = STATE(597), + [sym_simple_expansion] = STATE(597), + [sym_string_expansion] = STATE(597), + [sym_expansion] = STATE(597), + [sym_command_substitution] = STATE(597), + [sym_process_substitution] = STATE(597), + [aux_sym_for_statement_repeat1] = STATE(598), + [sym__special_characters] = ACTIONS(1173), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1175), [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(1157), + [sym_word] = ACTIONS(1175), }, [223] = { - [sym_do_group] = STATE(591), - [anon_sym_do] = ACTIONS(1159), + [sym_do_group] = STATE(600), + [anon_sym_do] = ACTIONS(1177), [sym_comment] = ACTIONS(53), }, [224] = { - [sym__terminated_statement] = STATE(593), + [sym__terminated_statement] = STATE(602), [sym_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), @@ -14733,13 +14792,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(593), + [aux_sym_program_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_done] = ACTIONS(1161), + [anon_sym_done] = ACTIONS(1179), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), @@ -14774,19 +14833,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [225] = { - [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_file_redirect] = STATE(604), + [sym_heredoc_redirect] = STATE(604), + [sym_heredoc_body] = STATE(603), + [sym_herestring_redirect] = STATE(604), + [aux_sym_while_statement_repeat1] = STATE(604), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [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_PIPE] = ACTIONS(1181), + [anon_sym_SEMI_SEMI] = ACTIONS(1181), + [anon_sym_PIPE_AMP] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1181), [anon_sym_LT] = ACTIONS(347), [anon_sym_GT] = ACTIONS(347), [anon_sym_GT_GT] = ACTIONS(347), @@ -14798,22 +14857,22 @@ 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(1163), - [anon_sym_LF] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_LF] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1181), }, [226] = { - [anon_sym_do] = ACTIONS(951), - [anon_sym_then] = ACTIONS(951), + [anon_sym_do] = ACTIONS(967), + [anon_sym_then] = ACTIONS(967), [sym_comment] = ACTIONS(53), }, [227] = { - [sym__terminated_statement] = STATE(601), + [sym__terminated_statement] = STATE(610), [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_elif_clause] = STATE(608), + [sym_else_clause] = STATE(609), [sym_case_statement] = STATE(26), [sym_function_definition] = STATE(26), [sym_subshell] = STATE(26), @@ -14835,17 +14894,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(601), - [aux_sym_if_statement_repeat1] = STATE(602), + [aux_sym_program_repeat1] = STATE(610), + [aux_sym_if_statement_repeat1] = STATE(611), [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(1167), - [anon_sym_elif] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1171), + [anon_sym_fi] = ACTIONS(1185), + [anon_sym_elif] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1189), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -14879,338 +14938,283 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [228] = { - [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), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [sym__special_characters] = ACTIONS(1191), [anon_sym_DQUOTE] = ACTIONS(69), [anon_sym_DOLLAR] = ACTIONS(71), - [sym_raw_string] = ACTIONS(1173), + [sym_raw_string] = ACTIONS(1191), [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(1173), + [sym_word] = ACTIONS(1191), }, [229] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1175), + [anon_sym_SEMI_SEMI] = ACTIONS(1193), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LF] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1193), }, [230] = { - [anon_sym_in] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1197), [sym_comment] = ACTIONS(53), }, [231] = { - [aux_sym_concatenation_repeat1] = STATE(606), + [aux_sym_concatenation_repeat1] = STATE(615), [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_in] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, [232] = { - [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__concat] = ACTIONS(709), + [anon_sym_in] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(711), + [sym__special_characters] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), + [anon_sym_BQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(711), + [anon_sym_GT_LPAREN] = ACTIONS(711), [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(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), }, [233] = { + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [234] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1201), [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), }, - [234] = { - [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), - }, [235] = { - [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__concat] = ACTIONS(741), + [anon_sym_in] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [sym__special_characters] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), + [anon_sym_BQUOTE] = ACTIONS(743), + [anon_sym_LT_LPAREN] = ACTIONS(743), + [anon_sym_GT_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [sym_word] = ACTIONS(743), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), }, [236] = { - [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__concat] = ACTIONS(745), + [anon_sym_in] = ACTIONS(747), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [anon_sym_LT_LPAREN] = ACTIONS(747), + [anon_sym_GT_LPAREN] = ACTIONS(747), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), + [sym_word] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(747), }, [237] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1183), + [sym__concat] = ACTIONS(749), + [anon_sym_in] = ACTIONS(751), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [sym__special_characters] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), + [anon_sym_BQUOTE] = ACTIONS(751), + [anon_sym_LT_LPAREN] = ACTIONS(751), + [anon_sym_GT_LPAREN] = ACTIONS(751), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_LF] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1183), + [sym_word] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(751), }, [238] = { - [anon_sym_in] = ACTIONS(1187), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI_SEMI] = ACTIONS(1203), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LF] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1203), }, [239] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_in] = ACTIONS(1207), [sym_comment] = ACTIONS(53), }, [240] = { - [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(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(1195), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(1209), + [sym_comment] = ACTIONS(53), }, [241] = { - [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(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), + [sym_concatenation] = STATE(623), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(623), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1213), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_COLON_QMARK] = ACTIONS(1213), + [anon_sym_COLON_DASH] = ACTIONS(1213), + [anon_sym_PERCENT] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [242] = { - [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(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(1211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_subscript] = STATE(627), + [sym_variable_name] = ACTIONS(1219), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AT] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_0] = ACTIONS(1225), + [anon_sym__] = ACTIONS(1225), }, [243] = { - [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(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(1219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_concatenation] = STATE(630), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(630), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1229), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [244] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1223), - [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(633), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(633), + [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1237), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_COLON] = ACTIONS(1237), + [anon_sym_COLON_QMARK] = ACTIONS(1237), + [anon_sym_COLON_DASH] = ACTIONS(1237), + [anon_sym_PERCENT] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [245] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1223), - [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), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [246] = { - [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(1223), - [sym_comment] = ACTIONS(53), - }, - [247] = { [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(1223), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [248] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [249] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -15230,27 +15234,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [250] = { - [anon_sym_RPAREN] = ACTIONS(1227), + [247] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(1243), [sym_comment] = ACTIONS(53), }, + [248] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(1243), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [249] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [250] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, [251] = { - [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), + [anon_sym_RPAREN] = ACTIONS(1247), + [sym_comment] = ACTIONS(53), + }, + [252] = { + [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_command_name] = STATE(27), - [sym_variable_assignment] = STATE(629), + [sym_variable_assignment] = STATE(639), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -15260,7 +15333,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(630), + [aux_sym_program_repeat1] = STATE(640), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -15270,7 +15343,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(1229), + [anon_sym_RBRACE] = ACTIONS(1249), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -15300,171 +15373,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [252] = { - [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(1233), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1233), - }, [253] = { + [sym_file_redirect] = STATE(643), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1253), + [anon_sym_PIPE_AMP] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1255), + [anon_sym_AMP_GT_GT] = ACTIONS(1255), + [anon_sym_LT_AMP] = ACTIONS(1255), + [anon_sym_GT_AMP] = ACTIONS(1255), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1253), + }, + [254] = { [sym_concatenation] = STATE(212), - [sym_string] = STATE(635), + [sym_string] = STATE(645), [sym_array] = STATE(212), - [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_simple_expansion] = STATE(645), + [sym_string_expansion] = STATE(645), + [sym_expansion] = STATE(645), + [sym_command_substitution] = STATE(645), + [sym_process_substitution] = STATE(645), [sym__empty_value] = ACTIONS(385), [anon_sym_LPAREN] = ACTIONS(387), - [sym__special_characters] = ACTIONS(1239), + [sym__special_characters] = ACTIONS(1259), [anon_sym_DQUOTE] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(393), - [sym_raw_string] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1261), [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(1241), + [sym_word] = ACTIONS(1261), }, - [254] = { - [sym_do_group] = STATE(636), + [255] = { + [sym_do_group] = STATE(646), [anon_sym_do] = ACTIONS(411), [sym_comment] = ACTIONS(53), }, - [255] = { - [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(1245), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), + [sym_compound_statement] = STATE(648), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(457), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), }, [257] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), + [sym_test_operator] = ACTIONS(547), }, [258] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_PLUS_EQ] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(579), }, [259] = { - [aux_sym_concatenation_repeat1] = STATE(641), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_SEMI_SEMI] = ACTIONS(585), - [anon_sym_PIPE_AMP] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [sym__special_characters] = ACTIONS(585), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [sym_raw_string] = ACTIONS(585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LT_LPAREN] = ACTIONS(585), - [anon_sym_GT_LPAREN] = ACTIONS(585), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(585), - [sym_word] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - }, - [260] = { - [aux_sym_concatenation_repeat1] = STATE(641), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_SEMI_SEMI] = ACTIONS(601), - [anon_sym_PIPE_AMP] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [sym__special_characters] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_DOLLAR] = ACTIONS(601), - [sym_raw_string] = ACTIONS(601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(601), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), - [anon_sym_BQUOTE] = ACTIONS(601), - [anon_sym_LT_LPAREN] = ACTIONS(601), - [anon_sym_GT_LPAREN] = ACTIONS(601), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(601), - [sym_word] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - }, - [261] = { - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_PLUS_EQ] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1267), [sym_comment] = ACTIONS(53), }, + [260] = { + [aux_sym_concatenation_repeat1] = STATE(651), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_SEMI_SEMI] = ACTIONS(591), + [anon_sym_PIPE_AMP] = ACTIONS(591), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [sym__special_characters] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(591), + [sym_raw_string] = ACTIONS(591), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(591), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(591), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), + [sym_word] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(591), + }, + [261] = { + [aux_sym_concatenation_repeat1] = STATE(651), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_SEMI_SEMI] = ACTIONS(609), + [anon_sym_PIPE_AMP] = ACTIONS(609), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [sym__special_characters] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(609), + [sym_raw_string] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(609), + [anon_sym_LT_LPAREN] = ACTIONS(609), + [anon_sym_GT_LPAREN] = ACTIONS(609), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), + [sym_word] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(609), + }, [262] = { - [sym_variable_assignment] = STATE(642), - [sym_subscript] = STATE(261), - [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(642), - [sym_variable_name] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [sym__special_characters] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1267), + [sym_comment] = ACTIONS(53), + }, + [263] = { + [sym_variable_assignment] = STATE(652), + [sym_subscript] = STATE(262), + [sym_concatenation] = STATE(652), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [aux_sym_declaration_command_repeat1] = STATE(652), + [sym_variable_name] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_SEMI_SEMI] = ACTIONS(625), + [anon_sym_PIPE_AMP] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [sym__special_characters] = ACTIONS(465), [anon_sym_DQUOTE] = ACTIONS(163), [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(465), + [sym_raw_string] = ACTIONS(467), [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), [anon_sym_BQUOTE] = ACTIONS(173), @@ -15472,80 +15545,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(177), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(179), - [sym_word] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(617), - }, - [263] = { - [aux_sym_concatenation_repeat1] = STATE(643), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_SEMI_SEMI] = ACTIONS(623), - [anon_sym_PIPE_AMP] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [sym__special_characters] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(623), - [sym_raw_string] = ACTIONS(623), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(623), - [anon_sym_BQUOTE] = ACTIONS(623), - [anon_sym_LT_LPAREN] = ACTIONS(623), - [anon_sym_GT_LPAREN] = ACTIONS(623), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), - [sym_word] = ACTIONS(623), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(623), + [sym_word] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(625), }, [264] = { - [aux_sym_concatenation_repeat1] = STATE(643), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(639), - [anon_sym_SEMI_SEMI] = ACTIONS(639), - [anon_sym_PIPE_AMP] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [sym__special_characters] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(639), - [sym_raw_string] = ACTIONS(639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(639), - [anon_sym_BQUOTE] = ACTIONS(639), - [anon_sym_LT_LPAREN] = ACTIONS(639), - [anon_sym_GT_LPAREN] = ACTIONS(639), + [aux_sym_concatenation_repeat1] = STATE(653), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_SEMI_SEMI] = ACTIONS(631), + [anon_sym_PIPE_AMP] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym__special_characters] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(631), + [sym_raw_string] = ACTIONS(631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_BQUOTE] = ACTIONS(631), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(639), - [sym_word] = ACTIONS(639), - [anon_sym_SEMI] = ACTIONS(639), - [anon_sym_LF] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(639), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), + [sym_word] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_LF] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(631), }, [265] = { - [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(644), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_SEMI_SEMI] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(657), - [sym__special_characters] = ACTIONS(467), + [aux_sym_concatenation_repeat1] = STATE(653), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_SEMI_SEMI] = ACTIONS(649), + [anon_sym_PIPE_AMP] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [sym__special_characters] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(649), + [sym_raw_string] = ACTIONS(649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(649), + [anon_sym_BQUOTE] = ACTIONS(649), + [anon_sym_LT_LPAREN] = ACTIONS(649), + [anon_sym_GT_LPAREN] = ACTIONS(649), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), + [sym_word] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_LF] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(649), + }, + [266] = { + [sym_concatenation] = STATE(654), + [sym_string] = STATE(265), + [sym_simple_expansion] = STATE(265), + [sym_string_expansion] = STATE(265), + [sym_expansion] = STATE(265), + [sym_command_substitution] = STATE(265), + [sym_process_substitution] = STATE(265), + [aux_sym_unset_command_repeat1] = STATE(654), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(667), + [anon_sym_SEMI_SEMI] = ACTIONS(667), + [anon_sym_PIPE_AMP] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(667), + [anon_sym_PIPE_PIPE] = ACTIONS(667), + [sym__special_characters] = ACTIONS(469), [anon_sym_DQUOTE] = ACTIONS(187), [anon_sym_DOLLAR] = ACTIONS(189), - [sym_raw_string] = ACTIONS(469), + [sym_raw_string] = ACTIONS(471), [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), [anon_sym_BQUOTE] = ACTIONS(197), @@ -15553,185 +15626,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(199), [sym_comment] = ACTIONS(177), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(201), - [sym_word] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_LF] = ACTIONS(659), - [anon_sym_AMP] = ACTIONS(657), - }, - [266] = { - [aux_sym_concatenation_repeat1] = STATE(645), - [sym__simple_heredoc_body] = ACTIONS(693), - [sym__heredoc_body_beginning] = ACTIONS(693), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_EQ_TILDE] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), + [sym_word] = ACTIONS(471), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(667), }, [267] = { - [anon_sym_RPAREN] = ACTIONS(1249), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(655), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_EQ_TILDE] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, [268] = { - [sym_for_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_function_definition] = STATE(529), - [sym_subshell] = STATE(529), - [sym_pipeline] = STATE(529), - [sym_list] = STATE(529), - [sym_negated_command] = STATE(529), - [sym_test_command] = STATE(529), - [sym_declaration_command] = STATE(529), - [sym_unset_command] = STATE(529), - [sym_command] = STATE(529), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(530), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_command_repeat1] = STATE(68), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(85), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(87), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_typeset] = ACTIONS(97), - [anon_sym_export] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_local] = ACTIONS(97), - [anon_sym_unset] = ACTIONS(99), - [anon_sym_unsetenv] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [anon_sym_RPAREN] = ACTIONS(1269), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(105), }, [269] = { - [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(1251), - [anon_sym_LF] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1251), - }, - [270] = { - [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(1255), - [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), - }, - [271] = { - [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_for_statement] = STATE(537), + [sym_while_statement] = STATE(537), + [sym_if_statement] = STATE(537), + [sym_case_statement] = STATE(537), + [sym_function_definition] = STATE(537), + [sym_subshell] = STATE(537), + [sym_pipeline] = STATE(537), + [sym_list] = STATE(537), + [sym_negated_command] = STATE(537), + [sym_test_command] = STATE(537), + [sym_declaration_command] = STATE(537), + [sym_unset_command] = STATE(537), + [sym_command] = STATE(537), [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(649), + [sym_variable_assignment] = STATE(538), [sym_subscript] = STATE(66), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -15779,256 +15737,371 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(105), }, - [272] = { - [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), + [270] = { + [anon_sym_esac] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1271), + }, + [271] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(969), + [sym_raw_string] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(969), + }, + [272] = { + [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_command_name] = STATE(64), + [sym_variable_assignment] = STATE(659), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(61), + [sym_simple_expansion] = STATE(61), + [sym_string_expansion] = STATE(61), + [sym_expansion] = STATE(61), + [sym_command_substitution] = STATE(61), + [sym_process_substitution] = STATE(61), + [aux_sym_command_repeat1] = STATE(68), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(85), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(87), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(105), }, [273] = { - [sym_concatenation] = STATE(540), - [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(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(1263), - [sym_regex] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_GT] = ACTIONS(1277), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(1277), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym_comment] = ACTIONS(53), }, [274] = { - [sym_concatenation] = STATE(543), - [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(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(1267), - }, - [275] = { - [sym_concatenation] = STATE(547), - [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(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(1271), - }, - [276] = { - [aux_sym_concatenation_repeat1] = STATE(266), - [sym__simple_heredoc_body] = ACTIONS(987), - [sym__heredoc_body_beginning] = ACTIONS(987), - [sym_file_descriptor] = ACTIONS(987), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_RPAREN] = ACTIONS(989), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_AMP_GT] = ACTIONS(989), - [anon_sym_AMP_GT_GT] = ACTIONS(989), - [anon_sym_LT_AMP] = ACTIONS(989), - [anon_sym_GT_AMP] = ACTIONS(989), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_LT_LT_DASH] = ACTIONS(989), - [anon_sym_LT_LT_LT] = ACTIONS(989), - [sym__special_characters] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [sym_raw_string] = ACTIONS(989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), - [anon_sym_BQUOTE] = ACTIONS(989), - [anon_sym_LT_LPAREN] = ACTIONS(989), - [anon_sym_GT_LPAREN] = ACTIONS(989), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_LF] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(989), - }, - [277] = { - [aux_sym_concatenation_repeat1] = STATE(266), - [sym__simple_heredoc_body] = ACTIONS(991), - [sym__heredoc_body_beginning] = ACTIONS(991), - [sym_file_descriptor] = ACTIONS(991), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_SEMI_SEMI] = ACTIONS(993), - [anon_sym_PIPE_AMP] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_EQ_TILDE] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_AMP_GT] = ACTIONS(993), - [anon_sym_AMP_GT_GT] = ACTIONS(993), - [anon_sym_LT_AMP] = ACTIONS(993), - [anon_sym_GT_AMP] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_LT_LT_DASH] = ACTIONS(993), - [anon_sym_LT_LT_LT] = ACTIONS(993), - [sym__special_characters] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(993), - [sym_raw_string] = ACTIONS(993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(993), - [anon_sym_BQUOTE] = ACTIONS(993), - [anon_sym_LT_LPAREN] = ACTIONS(993), - [anon_sym_GT_LPAREN] = ACTIONS(993), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LF] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(993), - }, - [278] = { - [sym_file_redirect] = STATE(657), - [sym_heredoc_redirect] = STATE(657), - [sym_heredoc_body] = STATE(548), - [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(995), - [anon_sym_RPAREN] = 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(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(489), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), - }, - [279] = { - [sym_file_redirect] = STATE(658), - [sym_heredoc_redirect] = STATE(658), - [sym_heredoc_body] = STATE(548), - [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(658), - [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(995), - [anon_sym_RPAREN] = 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(485), - [anon_sym_EQ_EQ] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(489), - [sym__special_characters] = ACTIONS(491), + [sym_concatenation] = STATE(548), + [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(1281), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(493), + [sym_raw_string] = ACTIONS(1283), [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(493), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), + [sym_word] = ACTIONS(1283), + [sym_regex] = ACTIONS(991), + }, + [275] = { + [sym_concatenation] = STATE(551), + [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(1285), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1287), + }, + [276] = { + [sym_concatenation] = STATE(555), + [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(1289), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1291), + }, + [277] = { + [aux_sym_concatenation_repeat1] = STATE(267), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1005), + [anon_sym_PIPE_AMP] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_EQ_TILDE] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1005), + [anon_sym_LT_AMP] = ACTIONS(1005), + [anon_sym_GT_AMP] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1005), + [anon_sym_LT_LT_LT] = ACTIONS(1005), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [sym_raw_string] = ACTIONS(1005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1005), + [anon_sym_BQUOTE] = ACTIONS(1005), + [anon_sym_LT_LPAREN] = ACTIONS(1005), + [anon_sym_GT_LPAREN] = ACTIONS(1005), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + }, + [278] = { + [aux_sym_concatenation_repeat1] = STATE(267), + [sym__simple_heredoc_body] = ACTIONS(1007), + [sym__heredoc_body_beginning] = ACTIONS(1007), + [sym_file_descriptor] = ACTIONS(1007), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_RPAREN] = ACTIONS(1009), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_EQ_TILDE] = ACTIONS(1009), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1009), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym__special_characters] = ACTIONS(1009), + [anon_sym_DQUOTE] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1009), + [anon_sym_BQUOTE] = ACTIONS(1009), + [anon_sym_LT_LPAREN] = ACTIONS(1009), + [anon_sym_GT_LPAREN] = ACTIONS(1009), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1009), + [anon_sym_LF] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + }, + [279] = { + [sym_file_redirect] = STATE(667), + [sym_heredoc_redirect] = STATE(667), + [sym_heredoc_body] = STATE(556), + [sym_herestring_redirect] = STATE(667), + [aux_sym_while_statement_repeat1] = STATE(667), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(491), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, [280] = { - [anon_sym_PIPE] = ACTIONS(473), - [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_file_redirect] = STATE(668), + [sym_heredoc_redirect] = STATE(668), + [sym_heredoc_body] = STATE(556), + [sym_herestring_redirect] = STATE(668), + [sym_concatenation] = STATE(669), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [aux_sym_while_statement_repeat1] = STATE(668), + [aux_sym_command_repeat2] = STATE(669), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(491), + [sym__special_characters] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(495), + [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(1275), - [anon_sym_LF] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1275), + [sym_word] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, [281] = { + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(1293), + [anon_sym_SEMI_SEMI] = ACTIONS(1295), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_LF] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1295), + }, + [282] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(473), - [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), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(1293), + [anon_sym_SEMI_SEMI] = ACTIONS(1295), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -16047,12 +16120,12 @@ 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(1275), - [anon_sym_LF] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_LF] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1295), }, - [282] = { - [sym__terminated_statement] = STATE(282), + [283] = { + [sym__terminated_statement] = STATE(283), [sym_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), @@ -16077,428 +16150,442 @@ 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(282), + [aux_sym_program_repeat1] = STATE(283), [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_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_file_descriptor] = ACTIONS(1015), + [sym_variable_name] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), + [anon_sym_declare] = ACTIONS(1050), + [anon_sym_typeset] = ACTIONS(1050), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_readonly] = ACTIONS(1050), + [anon_sym_local] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1053), + [anon_sym_unsetenv] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [sym__special_characters] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1083), + [anon_sym_GT_LPAREN] = ACTIONS(1083), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1070), + [sym_word] = ACTIONS(1086), }, - [283] = { - [sym_file_redirect] = STATE(658), - [sym_heredoc_redirect] = STATE(658), - [sym_heredoc_body] = STATE(548), - [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(658), - [aux_sym_command_repeat2] = STATE(661), + [284] = { + [sym_file_redirect] = STATE(668), + [sym_heredoc_redirect] = STATE(668), + [sym_heredoc_body] = STATE(556), + [sym_herestring_redirect] = STATE(668), + [sym_concatenation] = STATE(671), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [aux_sym_while_statement_repeat1] = STATE(668), + [aux_sym_command_repeat2] = STATE(671), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_RPAREN] = 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(485), - [anon_sym_EQ_EQ] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(489), - [sym__special_characters] = ACTIONS(491), + [anon_sym_LT_LT_LT] = ACTIONS(491), + [sym__special_characters] = ACTIONS(493), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(493), + [sym_raw_string] = ACTIONS(495), [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(493), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), + [sym_word] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, - [284] = { - [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), + [285] = { + [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(1299), + [anon_sym_LPAREN] = ACTIONS(1301), + [sym__special_characters] = ACTIONS(1303), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1285), + [sym_raw_string] = ACTIONS(1305), [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(1285), + [sym_word] = ACTIONS(1305), }, - [285] = { - [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), - [sym_expansion] = STATE(287), - [sym_command_substitution] = STATE(287), - [sym_process_substitution] = STATE(287), + [286] = { + [sym__expression] = STATE(676), + [sym_binary_expression] = STATE(676), + [sym_unary_expression] = STATE(676), + [sym_parenthesized_expression] = STATE(676), + [sym_concatenation] = STATE(676), + [sym_string] = STATE(288), + [sym_simple_expansion] = STATE(288), + [sym_string_expansion] = STATE(288), + [sym_expansion] = STATE(288), + [sym_command_substitution] = STATE(288), + [sym_process_substitution] = STATE(288), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(503), - [sym__special_characters] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(505), + [sym__special_characters] = ACTIONS(507), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(507), + [sym_raw_string] = ACTIONS(509), [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(509), - [sym_test_operator] = ACTIONS(511), - }, - [286] = { - [aux_sym_concatenation_repeat1] = STATE(667), - [sym__concat] = ACTIONS(551), - [anon_sym_RPAREN] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(515), - [anon_sym_PIPE_PIPE] = ACTIONS(515), - [anon_sym_EQ_TILDE] = ACTIONS(515), - [anon_sym_EQ_EQ] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_BANG_EQ] = ACTIONS(515), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(515), + [sym_word] = ACTIONS(511), + [sym_test_operator] = ACTIONS(513), }, [287] = { - [aux_sym_concatenation_repeat1] = STATE(667), - [sym__concat] = ACTIONS(551), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_EQ_TILDE] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), + [aux_sym_concatenation_repeat1] = STATE(677), + [sym__concat] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(517), + [anon_sym_AMP_AMP] = ACTIONS(517), + [anon_sym_PIPE_PIPE] = ACTIONS(517), + [anon_sym_EQ_TILDE] = ACTIONS(517), + [anon_sym_EQ_EQ] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(519), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_GT] = ACTIONS(517), + [anon_sym_BANG_EQ] = ACTIONS(517), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(529), + [sym_test_operator] = ACTIONS(517), }, [288] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(677), + [sym__concat] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(533), + [anon_sym_PIPE_PIPE] = ACTIONS(533), + [anon_sym_EQ_TILDE] = ACTIONS(533), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_EQ] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(533), + [anon_sym_GT] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1289), + [sym_test_operator] = ACTIONS(533), }, [289] = { - [anon_sym_AMP_AMP] = ACTIONS(543), - [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(1295), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_EQ_TILDE] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1311), + [anon_sym_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), + [sym_test_operator] = ACTIONS(1309), }, [290] = { - [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_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(1315), + [anon_sym_EQ_TILDE] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(547), + }, + [291] = { + [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(1317), [anon_sym_DQUOTE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1297), + [sym_raw_string] = ACTIONS(1317), [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(1297), - }, - [291] = { - [aux_sym_concatenation_repeat1] = STATE(672), - [sym__concat] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_RBRACK] = ACTIONS(693), - [anon_sym_EQ_TILDE] = ACTIONS(693), - [anon_sym_EQ_EQ] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(693), + [sym_word] = ACTIONS(1317), }, [292] = { - [sym__concat] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_EQ_TILDE] = ACTIONS(697), - [anon_sym_EQ_EQ] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_BANG_EQ] = ACTIONS(697), + [aux_sym_concatenation_repeat1] = STATE(682), + [sym__concat] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_RBRACK] = ACTIONS(705), + [anon_sym_EQ_TILDE] = ACTIONS(705), + [anon_sym_EQ_EQ] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG_EQ] = ACTIONS(705), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(697), + [sym_test_operator] = ACTIONS(705), }, [293] = { + [sym__concat] = ACTIONS(709), + [anon_sym_AMP_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(709), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_EQ_TILDE] = ACTIONS(709), + [anon_sym_EQ_EQ] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_BANG_EQ] = ACTIONS(709), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(709), + }, + [294] = { + [anon_sym_DQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [295] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1299), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1321), [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), }, - [294] = { - [sym__concat] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_RBRACK] = ACTIONS(727), - [anon_sym_EQ_TILDE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(727), - }, - [295] = { - [sym__concat] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(731), - [anon_sym_EQ_TILDE] = ACTIONS(731), - [anon_sym_EQ_EQ] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG_EQ] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(731), - }, [296] = { - [sym__concat] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_RBRACK] = ACTIONS(735), - [anon_sym_EQ_TILDE] = ACTIONS(735), - [anon_sym_EQ_EQ] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), + [sym__concat] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(735), + [sym_test_operator] = ACTIONS(741), }, [297] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1301), + [sym__concat] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_RBRACK] = ACTIONS(745), + [anon_sym_EQ_TILDE] = ACTIONS(745), + [anon_sym_EQ_EQ] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(745), + [anon_sym_GT] = ACTIONS(745), + [anon_sym_BANG_EQ] = ACTIONS(745), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(745), }, [298] = { - [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(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(1307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [anon_sym_RBRACK] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_EQ] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(749), }, [299] = { - [sym_subscript] = STATE(681), - [sym_variable_name] = ACTIONS(1311), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(1323), [sym_comment] = ACTIONS(53), - [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(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(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(1323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_concatenation] = STATE(688), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(688), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1327), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_COLON] = ACTIONS(1327), + [anon_sym_COLON_QMARK] = ACTIONS(1327), + [anon_sym_COLON_DASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [301] = { - [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(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(1331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_subscript] = STATE(692), + [sym_variable_name] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_0] = ACTIONS(1339), + [anon_sym__] = ACTIONS(1339), }, [302] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1335), - [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(695), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(695), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_EQ] = ACTIONS(1343), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1343), + [anon_sym_COLON_QMARK] = ACTIONS(1343), + [anon_sym_COLON_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [303] = { + [sym_concatenation] = STATE(698), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(698), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_EQ] = ACTIONS(1351), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_COLON] = ACTIONS(1351), + [anon_sym_COLON_QMARK] = ACTIONS(1351), + [anon_sym_COLON_DASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [304] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [305] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -16518,56 +16605,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [304] = { - [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(1335), - [sym_comment] = ACTIONS(53), - }, - [305] = { - [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(1335), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, [306] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(1357), [sym_comment] = ACTIONS(53), }, [307] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(1357), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [308] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [309] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -16587,12 +16674,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [308] = { - [sym__expression] = STATE(690), - [sym_binary_expression] = STATE(690), - [sym_unary_expression] = STATE(690), - [sym_parenthesized_expression] = STATE(690), - [sym_concatenation] = STATE(690), + [310] = { + [sym__expression] = STATE(701), + [sym_binary_expression] = STATE(701), + [sym_unary_expression] = STATE(701), + [sym_parenthesized_expression] = STATE(701), + [sym_concatenation] = STATE(701), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), @@ -16614,390 +16701,335 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(129), [sym_test_operator] = ACTIONS(131), }, - [309] = { - [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), + [311] = { + [sym_file_redirect] = STATE(706), + [sym_heredoc_redirect] = STATE(706), + [sym_herestring_redirect] = STATE(706), + [aux_sym_while_statement_repeat1] = STATE(706), + [sym_file_descriptor] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_SEMI_SEMI] = ACTIONS(1363), + [anon_sym_PIPE_AMP] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE_PIPE] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1365), + [anon_sym_GT_GT] = ACTIONS(1365), + [anon_sym_AMP_GT] = ACTIONS(1365), + [anon_sym_AMP_GT_GT] = ACTIONS(1365), + [anon_sym_LT_AMP] = ACTIONS(1365), + [anon_sym_GT_AMP] = ACTIONS(1365), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_LT_LT_DASH] = ACTIONS(1367), + [anon_sym_LT_LT_LT] = ACTIONS(1369), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_LF] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1363), }, - [310] = { - [sym__expression] = STATE(690), - [sym_binary_expression] = STATE(690), - [sym_unary_expression] = STATE(690), - [sym_parenthesized_expression] = STATE(690), - [sym_concatenation] = STATE(690), + [312] = { + [sym__expression] = STATE(701), + [sym_binary_expression] = STATE(701), + [sym_unary_expression] = STATE(701), + [sym_parenthesized_expression] = STATE(701), + [sym_concatenation] = STATE(701), [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(1351), + [anon_sym_LPAREN] = ACTIONS(1373), [anon_sym_BANG] = ACTIONS(111), - [sym__special_characters] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1355), + [sym__special_characters] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1377), [anon_sym_DOLLAR] = ACTIONS(117), [sym_raw_string] = ACTIONS(129), - [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), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1383), + [anon_sym_LT_LPAREN] = ACTIONS(1385), + [anon_sym_GT_LPAREN] = ACTIONS(1385), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(129), [sym_test_operator] = ACTIONS(111), - [sym_regex] = ACTIONS(1365), - }, - [311] = { - [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(1289), - }, - [312] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1295), - [anon_sym_EQ_TILDE] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), + [sym_regex] = ACTIONS(1387), }, [313] = { - [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_RPAREN] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_EQ_TILDE] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1311), + [anon_sym_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1309), + }, + [314] = { + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1315), + [anon_sym_EQ_TILDE] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(579), + }, + [315] = { + [sym_string] = STATE(709), + [sym_simple_expansion] = STATE(709), + [sym_string_expansion] = STATE(709), + [sym_expansion] = STATE(709), + [sym_command_substitution] = STATE(709), + [sym_process_substitution] = STATE(709), + [sym__special_characters] = ACTIONS(1391), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(1369), + [sym_raw_string] = ACTIONS(1391), [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(1369), - }, - [314] = { - [aux_sym_concatenation_repeat1] = STATE(699), - [sym__concat] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_RBRACK_RBRACK] = ACTIONS(693), - [anon_sym_EQ_TILDE] = ACTIONS(693), - [anon_sym_EQ_EQ] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(693), - }, - [315] = { - [sym__concat] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_RBRACK_RBRACK] = ACTIONS(697), - [anon_sym_EQ_TILDE] = ACTIONS(697), - [anon_sym_EQ_EQ] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_BANG_EQ] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(697), + [sym_word] = ACTIONS(1391), }, [316] = { + [aux_sym_concatenation_repeat1] = STATE(710), + [sym__concat] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_RBRACK_RBRACK] = ACTIONS(705), + [anon_sym_EQ_TILDE] = ACTIONS(705), + [anon_sym_EQ_EQ] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG_EQ] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(705), + }, + [317] = { + [sym__concat] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_AMP_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(709), + [anon_sym_RBRACK_RBRACK] = ACTIONS(709), + [anon_sym_EQ_TILDE] = ACTIONS(709), + [anon_sym_EQ_EQ] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_BANG_EQ] = ACTIONS(709), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(709), + }, + [318] = { + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [319] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1371), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1395), [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), }, - [317] = { - [sym__concat] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_RBRACK_RBRACK] = ACTIONS(727), - [anon_sym_EQ_TILDE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(727), - }, - [318] = { - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_RBRACK_RBRACK] = ACTIONS(731), - [anon_sym_EQ_TILDE] = ACTIONS(731), - [anon_sym_EQ_EQ] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG_EQ] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(731), - }, - [319] = { - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_RBRACK_RBRACK] = ACTIONS(735), - [anon_sym_EQ_TILDE] = ACTIONS(735), - [anon_sym_EQ_EQ] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(735), - }, [320] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1373), + [sym__concat] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_RBRACK_RBRACK] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(741), }, [321] = { - [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(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(1379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_RBRACK_RBRACK] = ACTIONS(745), + [anon_sym_EQ_TILDE] = ACTIONS(745), + [anon_sym_EQ_EQ] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(745), + [anon_sym_GT] = ACTIONS(745), + [anon_sym_BANG_EQ] = ACTIONS(745), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(745), }, [322] = { - [sym_subscript] = STATE(708), - [sym_variable_name] = ACTIONS(1383), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), + [sym__concat] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [anon_sym_RBRACK_RBRACK] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_EQ] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), [sym_comment] = ACTIONS(53), - [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), + [sym_test_operator] = ACTIONS(749), }, [323] = { - [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(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(1395), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(1397), + [sym_comment] = ACTIONS(53), }, [324] = { - [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(714), + [sym_concatenation] = STATE(716), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(716), [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), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(1405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [325] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1407), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_subscript] = STATE(720), + [sym_variable_name] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AT] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(1409), + [anon_sym_0] = ACTIONS(1413), + [anon_sym__] = ACTIONS(1413), }, [326] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1407), - [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(723), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(723), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_EQ] = ACTIONS(1417), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(1417), + [anon_sym_COLON_QMARK] = ACTIONS(1417), + [anon_sym_COLON_DASH] = ACTIONS(1417), + [anon_sym_PERCENT] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [327] = { - [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(1407), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(726), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(726), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1425), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_COLON_QMARK] = ACTIONS(1425), + [anon_sym_COLON_DASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [328] = { - [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(1407), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [329] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [330] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -17017,12 +17049,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, + [330] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_comment] = ACTIONS(53), + }, [331] = { - [sym__expression] = STATE(717), - [sym_binary_expression] = STATE(717), - [sym_unary_expression] = STATE(717), - [sym_parenthesized_expression] = STATE(717), - [sym_concatenation] = STATE(717), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(1431), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [332] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [333] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [334] = { + [sym__expression] = STATE(729), + [sym_binary_expression] = STATE(729), + [sym_unary_expression] = STATE(729), + [sym_parenthesized_expression] = STATE(729), + [sym_concatenation] = STATE(729), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), @@ -17044,407 +17145,352 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(153), [sym_test_operator] = ACTIONS(155), }, - [332] = { - [sym__expression] = STATE(717), - [sym_binary_expression] = STATE(717), - [sym_unary_expression] = STATE(717), - [sym_parenthesized_expression] = STATE(717), - [sym_concatenation] = STATE(717), + [335] = { + [sym__expression] = STATE(729), + [sym_binary_expression] = STATE(729), + [sym_unary_expression] = STATE(729), + [sym_parenthesized_expression] = STATE(729), + [sym_concatenation] = STATE(729), [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(1411), + [anon_sym_LPAREN] = ACTIONS(1435), [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1415), + [sym__special_characters] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1439), [anon_sym_DOLLAR] = ACTIONS(141), [sym_raw_string] = ACTIONS(153), - [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), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1441), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1445), + [anon_sym_LT_LPAREN] = ACTIONS(1447), + [anon_sym_GT_LPAREN] = ACTIONS(1447), [sym_comment] = ACTIONS(177), [sym_word] = ACTIONS(153), [sym_test_operator] = ACTIONS(135), - [sym_regex] = ACTIONS(1425), - }, - [333] = { - [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(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(1443), - }, - [335] = { - [aux_sym_concatenation_repeat1] = STATE(724), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), + [sym_regex] = ACTIONS(1449), }, [336] = { - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), - [sym_word] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), + [sym_concatenation] = STATE(731), + [sym_string] = STATE(734), + [sym_array] = STATE(731), + [sym_simple_expansion] = STATE(734), + [sym_string_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [sym__empty_value] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1453), + [sym__special_characters] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(165), + [sym_raw_string] = ACTIONS(1457), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1459), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1461), + [anon_sym_BQUOTE] = ACTIONS(1463), + [anon_sym_LT_LPAREN] = ACTIONS(1465), + [anon_sym_GT_LPAREN] = ACTIONS(1465), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1457), }, [337] = { + [sym_string] = STATE(735), + [sym_simple_expansion] = STATE(735), + [sym_string_expansion] = STATE(735), + [sym_expansion] = STATE(735), + [sym_command_substitution] = STATE(735), + [sym_process_substitution] = STATE(735), + [sym__special_characters] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(165), + [sym_raw_string] = ACTIONS(1467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1459), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1461), + [anon_sym_BQUOTE] = ACTIONS(1463), + [anon_sym_LT_LPAREN] = ACTIONS(1465), + [anon_sym_GT_LPAREN] = ACTIONS(1465), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1467), + }, + [338] = { + [aux_sym_concatenation_repeat1] = STATE(736), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [339] = { + [sym__concat] = ACTIONS(709), + [sym_variable_name] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(711), + [anon_sym_PIPE_AMP] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(711), + [anon_sym_PIPE_PIPE] = ACTIONS(711), + [sym__special_characters] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), + [anon_sym_BQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(711), + [anon_sym_GT_LPAREN] = ACTIONS(711), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + }, + [340] = { + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [341] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym_DOLLAR] = ACTIONS(1471), [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), }, - [338] = { - [sym__concat] = ACTIONS(727), - [sym_variable_name] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), - [sym_word] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - }, - [339] = { - [sym__concat] = ACTIONS(731), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [340] = { - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [341] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1447), - [sym_comment] = ACTIONS(53), - }, [342] = { - [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(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(1453), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(741), + [sym_variable_name] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [sym__special_characters] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), + [anon_sym_BQUOTE] = ACTIONS(743), + [anon_sym_LT_LPAREN] = ACTIONS(743), + [anon_sym_GT_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), + [sym_word] = ACTIONS(743), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), }, [343] = { - [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(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), + [sym__concat] = ACTIONS(745), + [sym_variable_name] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_PIPE_AMP] = ACTIONS(747), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [anon_sym_LT_LPAREN] = ACTIONS(747), + [anon_sym_GT_LPAREN] = ACTIONS(747), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [sym_word] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(747), }, [344] = { - [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(736), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_EQ] = ACTIONS(1467), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), + [sym__concat] = ACTIONS(749), + [sym_variable_name] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_PIPE_AMP] = ACTIONS(751), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), + [sym__special_characters] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(751), [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1469), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_raw_string] = ACTIONS(751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), + [anon_sym_BQUOTE] = ACTIONS(751), + [anon_sym_LT_LPAREN] = ACTIONS(751), + [anon_sym_GT_LPAREN] = ACTIONS(751), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), + [sym_word] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(751), }, [345] = { - [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(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(1477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(1473), + [sym_comment] = ACTIONS(53), }, [346] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1481), - [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(742), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(742), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1477), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_COLON] = ACTIONS(1477), + [anon_sym_COLON_QMARK] = ACTIONS(1477), + [anon_sym_COLON_DASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [347] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1481), - [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_subscript] = STATE(746), + [sym_variable_name] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(1485), + [anon_sym_QMARK] = ACTIONS(1485), + [anon_sym_0] = ACTIONS(1489), + [anon_sym__] = ACTIONS(1489), }, [348] = { - [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(1481), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(749), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(749), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_COLON] = ACTIONS(1493), + [anon_sym_COLON_QMARK] = ACTIONS(1493), + [anon_sym_COLON_DASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [349] = { - [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(1481), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_concatenation] = STATE(752), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(752), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1501), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1503), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_COLON] = ACTIONS(1501), + [anon_sym_COLON_QMARK] = ACTIONS(1501), + [anon_sym_COLON_DASH] = ACTIONS(1501), + [anon_sym_PERCENT] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [350] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [sym_comment] = ACTIONS(53), }, [351] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -17465,383 +17511,397 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(369), }, [352] = { - [sym_variable_assignment] = STATE(352), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_comment] = ACTIONS(53), + }, + [353] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(1507), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [354] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [355] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [356] = { + [sym_variable_assignment] = STATE(356), [sym_subscript] = STATE(104), - [sym_concatenation] = STATE(352), + [sym_concatenation] = STATE(356), [sym_string] = STATE(98), [sym_simple_expansion] = STATE(98), [sym_string_expansion] = STATE(98), [sym_expansion] = STATE(98), [sym_command_substitution] = STATE(98), [sym_process_substitution] = STATE(98), - [aux_sym_declaration_command_repeat1] = STATE(352), - [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), + [aux_sym_declaration_command_repeat1] = STATE(356), + [sym_variable_name] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_SEMI_SEMI] = ACTIONS(1514), + [anon_sym_PIPE_AMP] = ACTIONS(1514), + [anon_sym_AMP_AMP] = ACTIONS(1514), + [anon_sym_PIPE_PIPE] = ACTIONS(1514), + [sym__special_characters] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1522), + [sym_raw_string] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_LT_LPAREN] = ACTIONS(1537), + [anon_sym_GT_LPAREN] = ACTIONS(1537), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1540), + [sym_word] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_LF] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1514), }, - [353] = { - [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), + [357] = { + [sym_string] = STATE(755), + [sym_simple_expansion] = STATE(755), + [sym_string_expansion] = STATE(755), + [sym_expansion] = STATE(755), + [sym_command_substitution] = STATE(755), + [sym_process_substitution] = STATE(755), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(639), [anon_sym_DOLLAR] = ACTIONS(189), - [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_raw_string] = ACTIONS(1545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), + [anon_sym_BQUOTE] = ACTIONS(1551), + [anon_sym_LT_LPAREN] = ACTIONS(1553), + [anon_sym_GT_LPAREN] = ACTIONS(1553), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1519), + [sym_word] = ACTIONS(1545), }, - [354] = { - [aux_sym_concatenation_repeat1] = STATE(743), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), + [358] = { + [aux_sym_concatenation_repeat1] = STATE(756), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, - [355] = { - [sym__concat] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(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), + [359] = { + [sym__concat] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(711), + [anon_sym_PIPE_AMP] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(711), + [anon_sym_PIPE_PIPE] = ACTIONS(711), + [sym__special_characters] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), + [anon_sym_BQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(711), + [anon_sym_GT_LPAREN] = ACTIONS(711), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), - [sym_word] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), }, - [356] = { + [360] = { + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [361] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_DOLLAR] = ACTIONS(1557), [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), }, - [357] = { - [sym__concat] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), - [sym_word] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - }, - [358] = { - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [359] = { - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [360] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1531), - [sym_comment] = ACTIONS(53), - }, - [361] = { - [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(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(1537), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, [362] = { - [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(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), + [sym__concat] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [sym__special_characters] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), + [anon_sym_BQUOTE] = ACTIONS(743), + [anon_sym_LT_LPAREN] = ACTIONS(743), + [anon_sym_GT_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), + [sym_word] = ACTIONS(743), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), }, [363] = { - [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(755), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_EQ] = ACTIONS(1551), + [sym__concat] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_PIPE_AMP] = ACTIONS(747), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1553), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [anon_sym_LT_LPAREN] = ACTIONS(747), + [anon_sym_GT_LPAREN] = ACTIONS(747), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [sym_word] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(747), }, [364] = { - [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(758), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_EQ] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), + [sym__concat] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_PIPE_AMP] = ACTIONS(751), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), + [sym__special_characters] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(751), [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_raw_string] = ACTIONS(751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), + [anon_sym_BQUOTE] = ACTIONS(751), + [anon_sym_LT_LPAREN] = ACTIONS(751), + [anon_sym_GT_LPAREN] = ACTIONS(751), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), + [sym_word] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(751), }, [365] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(1559), [sym_comment] = ACTIONS(53), }, [366] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1565), - [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(762), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(762), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_EQ] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [367] = { - [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(1565), + [sym_subscript] = STATE(766), + [sym_variable_name] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1571), + [anon_sym_0] = ACTIONS(1575), + [anon_sym__] = ACTIONS(1575), }, [368] = { - [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(1565), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_concatenation] = STATE(769), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(769), + [anon_sym_RBRACE] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1579), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_COLON] = ACTIONS(1579), + [anon_sym_COLON_QMARK] = ACTIONS(1579), + [anon_sym_COLON_DASH] = ACTIONS(1579), + [anon_sym_PERCENT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [369] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1567), - [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(772), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(772), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_EQ] = ACTIONS(1587), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_COLON] = ACTIONS(1587), + [anon_sym_COLON_QMARK] = ACTIONS(1587), + [anon_sym_COLON_DASH] = ACTIONS(1587), + [anon_sym_PERCENT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [370] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1593), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [371] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1593), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -17861,656 +17921,411 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [371] = { - [sym_concatenation] = STATE(371), + [372] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(1593), + [sym_comment] = ACTIONS(53), + }, + [373] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(1593), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [374] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [375] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [376] = { + [sym_concatenation] = STATE(376), [sym_string] = STATE(109), [sym_simple_expansion] = STATE(109), [sym_string_expansion] = STATE(109), [sym_expansion] = STATE(109), [sym_command_substitution] = STATE(109), [sym_process_substitution] = STATE(109), - [aux_sym_unset_command_repeat1] = STATE(371), - [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), + [aux_sym_unset_command_repeat1] = STATE(376), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_SEMI_SEMI] = ACTIONS(1597), + [anon_sym_PIPE_AMP] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [sym__special_characters] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1605), + [sym_raw_string] = ACTIONS(1608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1617), + [anon_sym_LT_LPAREN] = ACTIONS(1620), + [anon_sym_GT_LPAREN] = ACTIONS(1620), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1623), + [sym_word] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_LF] = ACTIONS(1626), + [anon_sym_AMP] = ACTIONS(1597), }, - [372] = { - [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), + [377] = { + [sym_string] = STATE(775), + [sym_simple_expansion] = STATE(775), + [sym_string_expansion] = STATE(775), + [sym_expansion] = STATE(775), + [sym_command_substitution] = STATE(775), + [sym_process_substitution] = STATE(775), + [sym__special_characters] = ACTIONS(1628), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1600), + [sym_raw_string] = ACTIONS(1628), [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(1600), + [sym_word] = ACTIONS(1628), }, - [373] = { - [aux_sym_concatenation_repeat1] = STATE(762), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_AMP] = ACTIONS(693), - [sym__special_characters] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), + [378] = { + [aux_sym_concatenation_repeat1] = STATE(776), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(705), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(705), + [anon_sym_LT_AMP] = ACTIONS(705), + [anon_sym_GT_AMP] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(693), + [sym_word] = ACTIONS(705), }, - [374] = { - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_GT] = ACTIONS(697), - [anon_sym_AMP_GT] = ACTIONS(699), - [anon_sym_AMP_GT_GT] = ACTIONS(697), - [anon_sym_LT_AMP] = ACTIONS(697), - [anon_sym_GT_AMP] = ACTIONS(697), - [sym__special_characters] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(699), - [sym_raw_string] = ACTIONS(697), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), + [379] = { + [sym_file_descriptor] = ACTIONS(709), + [sym__concat] = ACTIONS(709), + [sym_variable_name] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_PIPE_AMP] = ACTIONS(709), + [anon_sym_AMP_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(709), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(709), + [anon_sym_LT_AMP] = ACTIONS(709), + [anon_sym_GT_AMP] = ACTIONS(709), + [sym__special_characters] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LT_LPAREN] = ACTIONS(709), + [anon_sym_GT_LPAREN] = ACTIONS(709), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(697), + [sym_word] = ACTIONS(709), }, - [375] = { + [380] = { + [anon_sym_DQUOTE] = ACTIONS(1630), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [381] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(1630), + [anon_sym_DOLLAR] = ACTIONS(1632), [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), }, - [376] = { - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(727), - [sym_variable_name] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_PIPE_AMP] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(727), - [anon_sym_LT_AMP] = ACTIONS(727), - [anon_sym_GT_AMP] = ACTIONS(727), - [sym__special_characters] = ACTIONS(727), - [anon_sym_DQUOTE] = ACTIONS(727), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(727), - [anon_sym_GT_LPAREN] = ACTIONS(727), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(727), - }, - [377] = { - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(731), - }, - [378] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(735), - [anon_sym_LT_AMP] = ACTIONS(735), - [anon_sym_GT_AMP] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(735), - }, - [379] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1604), - [sym_comment] = ACTIONS(53), - }, - [380] = { - [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(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(1610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [381] = { - [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(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(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(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(1626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(741), + [sym__concat] = ACTIONS(741), + [sym_variable_name] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_PIPE_AMP] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(741), + [anon_sym_AMP_GT] = ACTIONS(743), + [anon_sym_AMP_GT_GT] = ACTIONS(741), + [anon_sym_LT_AMP] = ACTIONS(741), + [anon_sym_GT_AMP] = ACTIONS(741), + [sym__special_characters] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), + [anon_sym_LT_LPAREN] = ACTIONS(741), + [anon_sym_GT_LPAREN] = ACTIONS(741), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(741), }, [383] = { - [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(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(1634), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(745), + [sym_variable_name] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_AMP_GT] = ACTIONS(747), + [anon_sym_AMP_GT_GT] = ACTIONS(745), + [anon_sym_LT_AMP] = ACTIONS(745), + [anon_sym_GT_AMP] = ACTIONS(745), + [sym__special_characters] = ACTIONS(745), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(745), + [anon_sym_LT_LPAREN] = ACTIONS(745), + [anon_sym_GT_LPAREN] = ACTIONS(745), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(745), }, [384] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym_file_descriptor] = ACTIONS(749), + [sym__concat] = ACTIONS(749), + [sym_variable_name] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_PIPE_AMP] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(749), + [anon_sym_AMP_GT] = ACTIONS(751), + [anon_sym_AMP_GT_GT] = ACTIONS(749), + [anon_sym_LT_AMP] = ACTIONS(749), + [anon_sym_GT_AMP] = ACTIONS(749), + [sym__special_characters] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), + [anon_sym_BQUOTE] = ACTIONS(749), + [anon_sym_LT_LPAREN] = ACTIONS(749), + [anon_sym_GT_LPAREN] = ACTIONS(749), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(749), }, [385] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1638), - [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), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(1634), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [386] = { - [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(1638), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(782), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(782), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1638), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1642), + [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_COLON_QMARK] = ACTIONS(1638), + [anon_sym_COLON_DASH] = ACTIONS(1638), + [anon_sym_PERCENT] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [387] = { - [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(1638), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_subscript] = STATE(786), + [sym_variable_name] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1646), + [anon_sym_QMARK] = ACTIONS(1646), + [anon_sym_0] = ACTIONS(1650), + [anon_sym__] = ACTIONS(1650), }, [388] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1640), - [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(789), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(789), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(1654), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1658), + [anon_sym_COLON] = ACTIONS(1654), + [anon_sym_COLON_QMARK] = ACTIONS(1654), + [anon_sym_COLON_DASH] = ACTIONS(1654), + [anon_sym_PERCENT] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [389] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1640), - [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(792), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(792), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_EQ] = ACTIONS(1662), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1666), + [anon_sym_COLON] = ACTIONS(1662), + [anon_sym_COLON_QMARK] = ACTIONS(1662), + [anon_sym_COLON_DASH] = ACTIONS(1662), + [anon_sym_PERCENT] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [390] = { - [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(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), }, [391] = { - [aux_sym_concatenation_repeat1] = STATE(391), - [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(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [392] = { - [sym__concat] = ACTIONS(727), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym__string_content] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - }, - [393] = { - [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] = { - [sym__concat] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym__string_content] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - }, - [395] = { - [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(1655), - [sym_comment] = ACTIONS(53), - }, - [397] = { - [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(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(1661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [398] = { - [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(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(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(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(1677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [400] = { - [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(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(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [401] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [402] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -18530,21 +18345,354 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, + [392] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(1668), + [sym_comment] = ACTIONS(53), + }, + [393] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(1668), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [394] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [395] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [396] = { + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1672), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_EQ_TILDE] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [397] = { + [aux_sym_concatenation_repeat1] = STATE(397), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_EQ_TILDE] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [398] = { + [sym__simple_heredoc_body] = ACTIONS(1679), + [sym__heredoc_body_beginning] = ACTIONS(1679), + [sym_file_descriptor] = ACTIONS(1679), + [sym__concat] = ACTIONS(1679), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_EQ_TILDE] = ACTIONS(1681), + [anon_sym_EQ_EQ] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + }, + [399] = { + [sym__concat] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym__string_content] = ACTIONS(741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), + [anon_sym_BQUOTE] = ACTIONS(743), + [sym_comment] = ACTIONS(177), + }, + [400] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym__string_content] = ACTIONS(1687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_comment] = ACTIONS(177), + }, + [401] = { + [sym__concat] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym__string_content] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), + [anon_sym_BQUOTE] = ACTIONS(751), + [sym_comment] = ACTIONS(177), + }, + [402] = { + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym__string_content] = ACTIONS(1687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_comment] = ACTIONS(177), + }, [403] = { - [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(1689), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(1689), [sym_comment] = ACTIONS(53), }, [404] = { + [sym_concatenation] = STATE(799), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(799), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_COLON] = ACTIONS(1693), + [anon_sym_COLON_QMARK] = ACTIONS(1693), + [anon_sym_COLON_DASH] = ACTIONS(1693), + [anon_sym_PERCENT] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [405] = { + [sym_subscript] = STATE(803), + [sym_variable_name] = ACTIONS(1699), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_AT] = ACTIONS(1701), + [anon_sym_QMARK] = ACTIONS(1701), + [anon_sym_0] = ACTIONS(1705), + [anon_sym__] = ACTIONS(1705), + }, + [406] = { + [sym_concatenation] = STATE(806), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(806), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_EQ] = ACTIONS(1709), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1709), + [anon_sym_COLON_QMARK] = ACTIONS(1709), + [anon_sym_COLON_DASH] = ACTIONS(1709), + [anon_sym_PERCENT] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [407] = { + [sym_concatenation] = STATE(809), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(809), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_EQ] = ACTIONS(1717), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1721), + [anon_sym_COLON] = ACTIONS(1717), + [anon_sym_COLON_QMARK] = ACTIONS(1717), + [anon_sym_COLON_DASH] = ACTIONS(1717), + [anon_sym_PERCENT] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [408] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [409] = { [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_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -18558,252 +18706,261 @@ 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(1689), + [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), }, - [405] = { - [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(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LF] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), + [410] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(1723), + [sym_comment] = ACTIONS(53), }, - [406] = { + [411] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(1723), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [412] = { + [anon_sym_DQUOTE] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [413] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [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), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1727), + [sym__string_content] = ACTIONS(1730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1736), + [anon_sym_BQUOTE] = ACTIONS(1739), [sym_comment] = ACTIONS(177), }, - [407] = { - [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), + [414] = { + [sym_concatenation] = STATE(815), + [sym_string] = STATE(814), + [sym_simple_expansion] = STATE(814), + [sym_string_expansion] = STATE(814), + [sym_expansion] = STATE(814), + [sym_command_substitution] = STATE(814), + [sym_process_substitution] = STATE(814), + [sym__special_characters] = ACTIONS(1742), [anon_sym_DQUOTE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(1744), [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(1712), + [sym_word] = ACTIONS(1744), }, - [408] = { - [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), + [415] = { + [sym_concatenation] = STATE(825), + [sym_string] = STATE(820), + [sym_simple_expansion] = STATE(820), + [sym_string_expansion] = STATE(820), + [sym_expansion] = STATE(820), + [sym_command_substitution] = STATE(820), + [sym_process_substitution] = STATE(820), + [anon_sym_RBRACE] = ACTIONS(1746), + [sym__special_characters] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1722), + [sym_word] = ACTIONS(1754), }, - [409] = { - [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), + [416] = { + [sym__simple_heredoc_body] = ACTIONS(1764), + [sym__heredoc_body_beginning] = ACTIONS(1764), + [sym_file_descriptor] = ACTIONS(1764), + [sym__concat] = ACTIONS(1764), + [anon_sym_esac] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_EQ_TILDE] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_AMP_GT] = ACTIONS(1766), + [anon_sym_AMP_GT_GT] = ACTIONS(1766), + [anon_sym_LT_AMP] = ACTIONS(1766), + [anon_sym_GT_AMP] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LT_LT_DASH] = ACTIONS(1766), + [anon_sym_LT_LT_LT] = ACTIONS(1766), + [sym__special_characters] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_LF] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1734), + [sym_word] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_LF] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), }, - [410] = { - [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), + [417] = { + [aux_sym_concatenation_repeat1] = STATE(827), + [sym__concat] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [sym__special_characters] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1772), + [anon_sym_COLON_QMARK] = ACTIONS(1772), + [anon_sym_COLON_DASH] = ACTIONS(1772), + [anon_sym_PERCENT] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1740), + [sym_word] = ACTIONS(1772), }, - [411] = { + [418] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(812), - [anon_sym_DQUOTE] = ACTIONS(1742), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(830), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1776), [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), }, - [412] = { - [sym_string] = STATE(814), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(1744), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), + [419] = { + [sym_string] = STATE(832), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(1778), + [sym_raw_string] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_AT] = ACTIONS(1778), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_0] = ACTIONS(1784), + [anon_sym__] = ACTIONS(1784), }, - [413] = { - [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), + [420] = { + [aux_sym_concatenation_repeat1] = STATE(827), + [sym__concat] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1788), + [sym_raw_string] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1786), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1786), + [anon_sym_BQUOTE] = ACTIONS(1786), + [anon_sym_LT_LPAREN] = ACTIONS(1786), + [anon_sym_GT_LPAREN] = ACTIONS(1786), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1754), + [sym_word] = ACTIONS(1788), }, - [414] = { - [sym_subscript] = STATE(820), - [sym_variable_name] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1758), + [421] = { + [sym_subscript] = STATE(838), + [sym_variable_name] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1792), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_QMARK] = ACTIONS(1792), + [anon_sym_0] = ACTIONS(1798), + [anon_sym__] = ACTIONS(1798), }, - [415] = { + [422] = { [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(1766), + [sym_regex_without_right_brace] = ACTIONS(1800), }, - [416] = { - [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), + [423] = { + [sym_for_statement] = STATE(840), + [sym_while_statement] = STATE(840), + [sym_if_statement] = STATE(840), + [sym_case_statement] = STATE(840), + [sym_function_definition] = STATE(840), + [sym_subshell] = STATE(840), + [sym_pipeline] = STATE(840), + [sym_list] = STATE(840), + [sym_negated_command] = STATE(840), + [sym_test_command] = STATE(840), + [sym_declaration_command] = STATE(840), + [sym_unset_command] = STATE(840), + [sym_command] = STATE(840), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(823), + [sym_variable_assignment] = STATE(841), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -18851,22 +19008,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [417] = { - [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), + [424] = { + [sym_for_statement] = STATE(842), + [sym_while_statement] = STATE(842), + [sym_if_statement] = STATE(842), + [sym_case_statement] = STATE(842), + [sym_function_definition] = STATE(842), + [sym_subshell] = STATE(842), + [sym_pipeline] = STATE(842), + [sym_list] = STATE(842), + [sym_negated_command] = STATE(842), + [sym_test_command] = STATE(842), + [sym_declaration_command] = STATE(842), + [sym_unset_command] = STATE(842), + [sym_command] = STATE(842), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(825), + [sym_variable_assignment] = STATE(843), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -18914,22 +19071,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [418] = { - [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), + [425] = { + [sym_for_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_case_statement] = STATE(844), + [sym_function_definition] = STATE(844), + [sym_subshell] = STATE(844), + [sym_pipeline] = STATE(844), + [sym_list] = STATE(844), + [sym_negated_command] = STATE(844), + [sym_test_command] = STATE(844), + [sym_declaration_command] = STATE(844), + [sym_unset_command] = STATE(844), + [sym_command] = STATE(844), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(827), + [sym_variable_assignment] = STATE(845), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -18977,369 +19134,369 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [419] = { - [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(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(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), - }, - [420] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1774), - [sym_comment] = ACTIONS(53), - }, - [421] = { - [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(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(1780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [422] = { - [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(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(1788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [423] = { - [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(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(1794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [424] = { - [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(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(1802), - }, [426] = { - [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(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(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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [427] = { - [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(1808), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_LF] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(1808), + [sym_comment] = ACTIONS(53), }, [428] = { + [sym_concatenation] = STATE(851), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(851), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1816), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(1810), + [sym_word] = ACTIONS(781), }, [429] = { - [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(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(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_concatenation] = STATE(854), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(854), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1820), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1824), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [430] = { - [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), + [sym_concatenation] = STATE(856), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(856), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_EQ] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_COLON] = ACTIONS(1826), + [anon_sym_COLON_QMARK] = ACTIONS(1826), + [anon_sym_COLON_DASH] = ACTIONS(1826), + [anon_sym_PERCENT] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [431] = { + [sym__simple_heredoc_body] = ACTIONS(1832), + [sym__heredoc_body_beginning] = ACTIONS(1832), + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_EQ_TILDE] = ACTIONS(1834), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1834), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [432] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(1836), + }, + [433] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [434] = { + [sym__simple_heredoc_body] = ACTIONS(1840), + [sym__heredoc_body_beginning] = ACTIONS(1840), + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1842), + [anon_sym_PIPE_AMP] = ACTIONS(1842), + [anon_sym_AMP_AMP] = ACTIONS(1842), + [anon_sym_PIPE_PIPE] = ACTIONS(1842), + [anon_sym_EQ_TILDE] = ACTIONS(1842), + [anon_sym_EQ_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1842), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1842), + [anon_sym_LT_AMP] = ACTIONS(1842), + [anon_sym_GT_AMP] = ACTIONS(1842), + [anon_sym_LT_LT] = ACTIONS(1842), + [anon_sym_LT_LT_DASH] = ACTIONS(1842), + [anon_sym_LT_LT_LT] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1842), + [anon_sym_GT_LPAREN] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [435] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(1844), + }, + [436] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [437] = { + [sym_concatenation] = STATE(672), + [sym_string] = STATE(861), + [sym_array] = STATE(672), + [sym_simple_expansion] = STATE(861), + [sym_string_expansion] = STATE(861), + [sym_expansion] = STATE(861), + [sym_command_substitution] = STATE(861), + [sym_process_substitution] = STATE(861), + [sym__empty_value] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1301), + [sym__special_characters] = ACTIONS(1846), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1814), + [sym_raw_string] = ACTIONS(1848), [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(1814), - }, - [431] = { - [anon_sym_in] = ACTIONS(1816), - [anon_sym_SEMI_SEMI] = ACTIONS(1818), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_LF] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1818), - }, - [432] = { - [sym_do_group] = STATE(847), - [anon_sym_do] = ACTIONS(1822), - [sym_comment] = ACTIONS(53), - }, - [433] = { - [anon_sym_then] = ACTIONS(1824), - [sym_comment] = ACTIONS(53), - }, - [434] = { - [aux_sym_concatenation_repeat1] = STATE(231), - [sym__concat] = ACTIONS(419), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_SEMI_SEMI] = ACTIONS(1828), - [sym_comment] = ACTIONS(177), - [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(1832), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - }, - [436] = { - [anon_sym_in] = ACTIONS(1832), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - }, - [437] = { - [sym_compound_statement] = STATE(855), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1848), }, [438] = { - [anon_sym_PIPE] = ACTIONS(473), - [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), + [anon_sym_in] = ACTIONS(1850), + [anon_sym_SEMI_SEMI] = ACTIONS(1852), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_LF] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1852), }, [439] = { + [sym_do_group] = STATE(865), + [anon_sym_do] = ACTIONS(1856), + [sym_comment] = ACTIONS(53), + }, + [440] = { + [anon_sym_then] = ACTIONS(1858), + [sym_comment] = ACTIONS(53), + }, + [441] = { + [aux_sym_concatenation_repeat1] = STATE(231), + [sym__concat] = ACTIONS(419), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1862), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1862), + }, + [442] = { + [aux_sym_concatenation_repeat1] = STATE(231), + [sym__concat] = ACTIONS(419), + [anon_sym_in] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1868), + }, + [443] = { + [anon_sym_in] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1868), + }, + [444] = { + [sym_compound_statement] = STATE(873), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [sym_comment] = ACTIONS(53), + }, + [445] = { + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1878), + }, + [446] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(473), - [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), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -19358,27 +19515,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(1844), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1878), }, - [440] = { - [sym__terminated_statement] = STATE(282), - [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), + [447] = { + [sym__terminated_statement] = STATE(283), + [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(64), - [sym_variable_assignment] = STATE(859), + [sym_variable_assignment] = STATE(877), [sym_subscript] = STATE(66), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -19388,7 +19545,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(61), [sym_command_substitution] = STATE(61), [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(282), + [aux_sym_program_repeat1] = STATE(283), [aux_sym_command_repeat1] = STATE(68), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(85), @@ -19427,462 +19584,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(105), }, - [441] = { - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_BQUOTE] = ACTIONS(501), - [sym_comment] = ACTIONS(53), - }, - [442] = { - [anon_sym_AMP_AMP] = ACTIONS(543), - [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(1848), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), - }, - [443] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1848), - [anon_sym_EQ_TILDE] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), - }, - [444] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_PLUS_EQ] = ACTIONS(1850), - [sym_comment] = ACTIONS(53), - }, - [445] = { - [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), - [anon_sym_PIPE_AMP] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [sym__special_characters] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_DOLLAR] = ACTIONS(585), - [sym_raw_string] = ACTIONS(583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(583), - [anon_sym_LT_LPAREN] = ACTIONS(583), - [anon_sym_GT_LPAREN] = ACTIONS(583), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(585), - [sym_word] = ACTIONS(585), - }, - [446] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [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), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [447] = { - [sym_string] = STATE(867), - [anon_sym_DQUOTE] = ACTIONS(807), - [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(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(863), - [sym__concat] = ACTIONS(1852), - [sym_variable_name] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_PIPE_AMP] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [sym__special_characters] = ACTIONS(599), - [anon_sym_DQUOTE] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(601), - [sym_raw_string] = ACTIONS(599), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(599), - [anon_sym_BQUOTE] = ACTIONS(599), - [anon_sym_LT_LPAREN] = ACTIONS(599), - [anon_sym_GT_LPAREN] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(503), + [anon_sym_PIPE_PIPE] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(601), - [sym_word] = ACTIONS(601), }, [449] = { - [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(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), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_EQ_TILDE] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(547), }, [450] = { - [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(875), - [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), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1882), + [anon_sym_EQ_TILDE] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [sym_test_operator] = ACTIONS(579), }, [451] = { - [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(877), - [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), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PLUS_EQ] = ACTIONS(1884), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), }, [452] = { - [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(879), - [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), + [aux_sym_concatenation_repeat1] = STATE(881), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [sym__special_characters] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(591), + [sym_raw_string] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(301), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), + [sym_word] = ACTIONS(591), }, [453] = { - [sym_variable_name] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_PIPE_AMP] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [sym__special_characters] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(615), - [sym_raw_string] = ACTIONS(613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(613), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(613), - [anon_sym_LT_LPAREN] = ACTIONS(613), - [anon_sym_GT_LPAREN] = ACTIONS(613), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(615), - [sym_word] = ACTIONS(615), - }, - [454] = { - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_PLUS_EQ] = ACTIONS(1850), - [sym_comment] = ACTIONS(53), - }, - [455] = { - [sym_variable_assignment] = STATE(880), - [sym_subscript] = STATE(454), - [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(880), - [sym_variable_name] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_PIPE_AMP] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [sym__special_characters] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(811), - [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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(821), - [sym_word] = ACTIONS(823), - }, - [456] = { - [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), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [sym__special_characters] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR] = ACTIONS(623), - [sym_raw_string] = ACTIONS(625), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(625), - [anon_sym_LT_LPAREN] = ACTIONS(625), - [anon_sym_GT_LPAREN] = ACTIONS(625), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), - [sym_word] = ACTIONS(623), - }, - [457] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), [aux_sym_string_repeat1] = STATE(884), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1890), [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), }, - [458] = { + [454] = { [sym_string] = STATE(886), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), [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(1896), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_AT] = ACTIONS(1892), + [anon_sym_QMARK] = ACTIONS(1892), + [anon_sym_0] = ACTIONS(1898), + [anon_sym__] = ACTIONS(1898), }, - [459] = { - [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), - [anon_sym_AMP_AMP] = ACTIONS(641), - [anon_sym_PIPE_PIPE] = ACTIONS(641), - [sym__special_characters] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(639), - [sym_raw_string] = ACTIONS(641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), - [anon_sym_BQUOTE] = ACTIONS(641), - [anon_sym_LT_LPAREN] = ACTIONS(641), - [anon_sym_GT_LPAREN] = ACTIONS(641), + [455] = { + [aux_sym_concatenation_repeat1] = STATE(881), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_PIPE_AMP] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [sym__special_characters] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(609), + [sym_raw_string] = ACTIONS(607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(607), + [anon_sym_BQUOTE] = ACTIONS(607), + [anon_sym_LT_LPAREN] = ACTIONS(607), + [anon_sym_GT_LPAREN] = ACTIONS(607), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(639), - [sym_word] = ACTIONS(639), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), + [sym_word] = ACTIONS(609), }, - [460] = { + [456] = { [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_variable_name] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1902), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1902), + [anon_sym_QMARK] = ACTIONS(1902), + [anon_sym_0] = ACTIONS(1908), + [anon_sym__] = ACTIONS(1908), }, - [461] = { + [457] = { [sym_for_statement] = STATE(893), [sym_while_statement] = STATE(893), [sym_if_statement] = STATE(893), @@ -19945,7 +19774,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [462] = { + [458] = { [sym_for_statement] = STATE(895), [sym_while_statement] = STATE(895), [sym_if_statement] = STATE(895), @@ -20008,7 +19837,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [463] = { + [459] = { [sym_for_statement] = STATE(897), [sym_while_statement] = STATE(897), [sym_if_statement] = STATE(897), @@ -20071,448 +19900,721 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [464] = { - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(655), - [anon_sym_PIPE_AMP] = ACTIONS(655), - [anon_sym_AMP_AMP] = ACTIONS(655), - [anon_sym_PIPE_PIPE] = ACTIONS(655), - [sym__special_characters] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [anon_sym_DOLLAR] = ACTIONS(653), - [sym_raw_string] = ACTIONS(655), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(655), - [anon_sym_LT_LPAREN] = ACTIONS(655), - [anon_sym_GT_LPAREN] = ACTIONS(655), + [460] = { + [sym_variable_name] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_PIPE_AMP] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [sym__special_characters] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(623), + [sym_raw_string] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LT_LPAREN] = ACTIONS(621), + [anon_sym_GT_LPAREN] = ACTIONS(621), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(653), - [sym_word] = ACTIONS(653), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), + [sym_word] = ACTIONS(623), }, - [465] = { + [461] = { + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PLUS_EQ] = ACTIONS(1884), + [sym_comment] = ACTIONS(53), + }, + [462] = { + [sym_variable_assignment] = STATE(899), + [sym_subscript] = STATE(461), [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(899), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_PIPE_AMP] = ACTIONS(659), - [anon_sym_AMP_AMP] = ACTIONS(659), - [anon_sym_PIPE_PIPE] = ACTIONS(659), - [sym__special_characters] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(829), - [sym_raw_string] = ACTIONS(831), - [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_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_declaration_command_repeat1] = STATE(899), + [sym_variable_name] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_PIPE_AMP] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), + [anon_sym_BQUOTE] = ACTIONS(831), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(841), - [sym_word] = ACTIONS(843), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(835), + [sym_word] = ACTIONS(837), }, - [466] = { - [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(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(1896), - }, - [467] = { + [463] = { [aux_sym_concatenation_repeat1] = STATE(901), - [sym__simple_heredoc_body] = ACTIONS(693), - [sym__heredoc_body_beginning] = ACTIONS(693), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_EQ_TILDE] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_AMP] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(693), - [anon_sym_LT_LT_LT] = ACTIONS(693), - [sym__special_characters] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_PIPE_AMP] = ACTIONS(633), + [anon_sym_AMP_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(633), + [sym__special_characters] = ACTIONS(633), + [anon_sym_DQUOTE] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(631), + [sym_raw_string] = ACTIONS(633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), + [anon_sym_BQUOTE] = ACTIONS(633), + [anon_sym_LT_LPAREN] = ACTIONS(633), + [anon_sym_GT_LPAREN] = ACTIONS(633), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(695), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), + [sym_word] = ACTIONS(631), }, - [468] = { - [sym__simple_heredoc_body] = ACTIONS(697), - [sym__heredoc_body_beginning] = ACTIONS(697), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_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(697), - [anon_sym_AMP_GT] = ACTIONS(699), - [anon_sym_AMP_GT_GT] = ACTIONS(697), - [anon_sym_LT_AMP] = ACTIONS(697), - [anon_sym_GT_AMP] = ACTIONS(697), - [anon_sym_LT_LT] = ACTIONS(699), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(697), - [sym__special_characters] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(699), - [sym_raw_string] = ACTIONS(697), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(699), - }, - [469] = { + [464] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(904), + [anon_sym_DQUOTE] = ACTIONS(1912), + [anon_sym_DOLLAR] = ACTIONS(1914), [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), }, - [470] = { - [sym__simple_heredoc_body] = ACTIONS(727), - [sym__heredoc_body_beginning] = ACTIONS(727), - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_PIPE_AMP] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [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(727), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(727), - [anon_sym_LT_AMP] = ACTIONS(727), - [anon_sym_GT_AMP] = ACTIONS(727), - [anon_sym_LT_LT] = ACTIONS(729), - [anon_sym_LT_LT_DASH] = ACTIONS(727), - [anon_sym_LT_LT_LT] = ACTIONS(727), - [sym__special_characters] = ACTIONS(727), - [anon_sym_DQUOTE] = ACTIONS(727), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(727), - [anon_sym_GT_LPAREN] = ACTIONS(727), + [465] = { + [sym_string] = STATE(906), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(1916), + [sym_raw_string] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_QMARK] = ACTIONS(1916), + [anon_sym_0] = ACTIONS(1922), + [anon_sym__] = ACTIONS(1922), + }, + [466] = { + [aux_sym_concatenation_repeat1] = STATE(901), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(651), + [anon_sym_PIPE_AMP] = ACTIONS(651), + [anon_sym_AMP_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(651), + [sym__special_characters] = ACTIONS(651), + [anon_sym_DQUOTE] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [sym_raw_string] = ACTIONS(651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(651), + [anon_sym_LT_LPAREN] = ACTIONS(651), + [anon_sym_GT_LPAREN] = ACTIONS(651), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(729), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), + [sym_word] = ACTIONS(649), + }, + [467] = { + [sym_subscript] = STATE(912), + [sym_variable_name] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1926), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1926), + [anon_sym_QMARK] = ACTIONS(1926), + [anon_sym_0] = ACTIONS(1932), + [anon_sym__] = ACTIONS(1932), + }, + [468] = { + [sym_for_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_function_definition] = STATE(913), + [sym_subshell] = STATE(913), + [sym_pipeline] = STATE(913), + [sym_list] = STATE(913), + [sym_negated_command] = STATE(913), + [sym_test_command] = STATE(913), + [sym_declaration_command] = STATE(913), + [sym_unset_command] = STATE(913), + [sym_command] = STATE(913), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(914), + [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), + }, + [469] = { + [sym_for_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_case_statement] = STATE(915), + [sym_function_definition] = STATE(915), + [sym_subshell] = STATE(915), + [sym_pipeline] = STATE(915), + [sym_list] = STATE(915), + [sym_negated_command] = STATE(915), + [sym_test_command] = STATE(915), + [sym_declaration_command] = STATE(915), + [sym_unset_command] = STATE(915), + [sym_command] = STATE(915), + [sym_command_name] = STATE(181), + [sym_variable_assignment] = STATE(916), + [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), + }, + [470] = { + [sym_for_statement] = STATE(917), + [sym_while_statement] = STATE(917), + [sym_if_statement] = STATE(917), + [sym_case_statement] = STATE(917), + [sym_function_definition] = STATE(917), + [sym_subshell] = STATE(917), + [sym_pipeline] = STATE(917), + [sym_list] = STATE(917), + [sym_negated_command] = STATE(917), + [sym_test_command] = STATE(917), + [sym_declaration_command] = STATE(917), + [sym_unset_command] = STATE(917), + [sym_command] = STATE(917), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(918), + [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), }, [471] = { - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(665), + [anon_sym_PIPE_AMP] = ACTIONS(665), + [anon_sym_AMP_AMP] = ACTIONS(665), + [anon_sym_PIPE_PIPE] = ACTIONS(665), + [sym__special_characters] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(663), + [sym_raw_string] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_BQUOTE] = ACTIONS(665), + [anon_sym_LT_LPAREN] = ACTIONS(665), + [anon_sym_GT_LPAREN] = ACTIONS(665), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(733), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(663), + [sym_word] = ACTIONS(663), }, [472] = { - [sym__simple_heredoc_body] = ACTIONS(735), - [sym__heredoc_body_beginning] = ACTIONS(735), - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(735), - [anon_sym_LT_AMP] = ACTIONS(735), - [anon_sym_GT_AMP] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(735), - [anon_sym_LT_LT_LT] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_concatenation] = STATE(919), + [sym_string] = STATE(466), + [sym_simple_expansion] = STATE(466), + [sym_string_expansion] = STATE(466), + [sym_expansion] = STATE(466), + [sym_command_substitution] = STATE(466), + [sym_process_substitution] = STATE(466), + [aux_sym_unset_command_repeat1] = STATE(919), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [sym__special_characters] = ACTIONS(839), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(851), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(737), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), + [sym_word] = ACTIONS(857), }, [473] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(1900), + [sym_string] = STATE(920), + [sym_simple_expansion] = STATE(920), + [sym_string_expansion] = STATE(920), + [sym_expansion] = STATE(920), + [sym_command_substitution] = STATE(920), + [sym_process_substitution] = STATE(920), + [sym__special_characters] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(1934), + [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(1934), }, [474] = { - [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(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(1906), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(921), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_EQ_TILDE] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(705), + [anon_sym_LT_AMP] = ACTIONS(705), + [anon_sym_GT_AMP] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(705), + [anon_sym_LT_LT_LT] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(707), }, [475] = { - [sym_subscript] = STATE(910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), + [sym__simple_heredoc_body] = ACTIONS(709), + [sym__heredoc_body_beginning] = ACTIONS(709), + [sym_file_descriptor] = ACTIONS(709), + [sym__concat] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_PIPE_AMP] = ACTIONS(709), + [anon_sym_AMP_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(709), + [anon_sym_EQ_TILDE] = ACTIONS(711), + [anon_sym_EQ_EQ] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(709), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(709), + [anon_sym_LT_AMP] = ACTIONS(709), + [anon_sym_GT_AMP] = ACTIONS(709), + [anon_sym_LT_LT] = ACTIONS(711), + [anon_sym_LT_LT_DASH] = ACTIONS(709), + [anon_sym_LT_LT_LT] = ACTIONS(709), + [sym__special_characters] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LT_LPAREN] = ACTIONS(709), + [anon_sym_GT_LPAREN] = ACTIONS(709), [sym_comment] = ACTIONS(53), - [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), + [sym_word] = ACTIONS(711), }, [476] = { - [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(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(1922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), }, [477] = { - [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(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(1930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [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(413), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [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), }, [478] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym__simple_heredoc_body] = ACTIONS(741), + [sym__heredoc_body_beginning] = ACTIONS(741), + [sym_file_descriptor] = ACTIONS(741), + [sym__concat] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_PIPE_AMP] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(743), + [anon_sym_EQ_EQ] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(741), + [anon_sym_AMP_GT] = ACTIONS(743), + [anon_sym_AMP_GT_GT] = ACTIONS(741), + [anon_sym_LT_AMP] = ACTIONS(741), + [anon_sym_GT_AMP] = ACTIONS(741), + [anon_sym_LT_LT] = ACTIONS(743), + [anon_sym_LT_LT_DASH] = ACTIONS(741), + [anon_sym_LT_LT_LT] = ACTIONS(741), + [sym__special_characters] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), + [anon_sym_LT_LPAREN] = ACTIONS(741), + [anon_sym_GT_LPAREN] = ACTIONS(741), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(743), }, [479] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1934), - [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__simple_heredoc_body] = ACTIONS(745), + [sym__heredoc_body_beginning] = ACTIONS(745), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_EQ_TILDE] = ACTIONS(747), + [anon_sym_EQ_EQ] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_AMP_GT] = ACTIONS(747), + [anon_sym_AMP_GT_GT] = ACTIONS(745), + [anon_sym_LT_AMP] = ACTIONS(745), + [anon_sym_GT_AMP] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(747), + [anon_sym_LT_LT_DASH] = ACTIONS(745), + [anon_sym_LT_LT_LT] = ACTIONS(745), + [sym__special_characters] = ACTIONS(745), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(745), + [anon_sym_LT_LPAREN] = ACTIONS(745), + [anon_sym_GT_LPAREN] = ACTIONS(745), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), + [sym_word] = ACTIONS(747), }, [480] = { - [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(1934), + [sym__simple_heredoc_body] = ACTIONS(749), + [sym__heredoc_body_beginning] = ACTIONS(749), + [sym_file_descriptor] = ACTIONS(749), + [sym__concat] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_PIPE_AMP] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(751), + [anon_sym_EQ_EQ] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(749), + [anon_sym_AMP_GT] = ACTIONS(751), + [anon_sym_AMP_GT_GT] = ACTIONS(749), + [anon_sym_LT_AMP] = ACTIONS(749), + [anon_sym_GT_AMP] = ACTIONS(749), + [anon_sym_LT_LT] = ACTIONS(751), + [anon_sym_LT_LT_DASH] = ACTIONS(749), + [anon_sym_LT_LT_LT] = ACTIONS(749), + [sym__special_characters] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), + [anon_sym_BQUOTE] = ACTIONS(749), + [anon_sym_LT_LPAREN] = ACTIONS(749), + [anon_sym_GT_LPAREN] = ACTIONS(749), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(751), }, [481] = { - [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(1934), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(1940), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [482] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1936), - [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(927), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(927), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_EQ] = ACTIONS(1944), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_COLON] = ACTIONS(1944), + [anon_sym_COLON_QMARK] = ACTIONS(1944), + [anon_sym_COLON_DASH] = ACTIONS(1944), + [anon_sym_PERCENT] = ACTIONS(1944), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [483] = { + [sym_subscript] = STATE(931), + [sym_variable_name] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_QMARK] = ACTIONS(1952), + [anon_sym_0] = ACTIONS(1956), + [anon_sym__] = ACTIONS(1956), + }, + [484] = { + [sym_concatenation] = STATE(934), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(934), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_EQ] = ACTIONS(1960), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1964), + [anon_sym_COLON] = ACTIONS(1960), + [anon_sym_COLON_QMARK] = ACTIONS(1960), + [anon_sym_COLON_DASH] = ACTIONS(1960), + [anon_sym_PERCENT] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [485] = { + [sym_concatenation] = STATE(937), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(937), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_EQ] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(1968), + [anon_sym_COLON_QMARK] = ACTIONS(1968), + [anon_sym_COLON_DASH] = ACTIONS(1968), + [anon_sym_PERCENT] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [486] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [487] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(1936), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -20532,791 +20634,797 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [484] = { - [anon_sym_RPAREN] = ACTIONS(1938), - [sym_comment] = ACTIONS(53), - }, - [485] = { - [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(921), - [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), - }, - [486] = { - [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(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - }, - [487] = { - [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(923), - [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), - }, [488] = { - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(1974), [sym_comment] = ACTIONS(53), }, [489] = { - [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_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(1974), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), }, [490] = { - [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), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [sym_comment] = ACTIONS(53), }, [491] = { - [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(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(1956), - [sym_regex] = ACTIONS(1966), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), }, [492] = { - [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(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), + [anon_sym_RPAREN] = ACTIONS(1978), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1970), }, [493] = { - [sym_heredoc_start] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - }, - [494] = { - [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), + [sym_for_statement] = STATE(941), + [sym_while_statement] = STATE(941), + [sym_if_statement] = STATE(941), + [sym_case_statement] = STATE(941), + [sym_function_definition] = STATE(941), + [sym_subshell] = STATE(941), + [sym_pipeline] = STATE(941), + [sym_list] = STATE(941), + [sym_negated_command] = STATE(941), + [sym_test_command] = STATE(941), + [sym_declaration_command] = STATE(941), + [sym_unset_command] = STATE(941), + [sym_command] = STATE(941), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(942), + [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(1976), + [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(1976), + [sym_word] = ACTIONS(301), + }, + [494] = { + [sym__simple_heredoc_body] = ACTIONS(1980), + [sym__heredoc_body_beginning] = ACTIONS(1980), + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(1980), + [anon_sym_esac] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1982), + [anon_sym_PIPE_AMP] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_PIPE_PIPE] = ACTIONS(1982), + [anon_sym_EQ_TILDE] = ACTIONS(1982), + [anon_sym_EQ_EQ] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1982), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1982), + [anon_sym_LT_AMP] = ACTIONS(1982), + [anon_sym_GT_AMP] = ACTIONS(1982), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1982), + [anon_sym_LT_LT_LT] = ACTIONS(1982), + [sym__special_characters] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(1982), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), }, [495] = { - [aux_sym_concatenation_repeat1] = STATE(467), - [sym__simple_heredoc_body] = ACTIONS(987), - [sym__heredoc_body_beginning] = ACTIONS(987), - [sym_file_descriptor] = ACTIONS(987), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_PIPE_AMP] = ACTIONS(987), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(987), - [anon_sym_AMP_GT] = ACTIONS(989), - [anon_sym_AMP_GT_GT] = ACTIONS(987), - [anon_sym_LT_AMP] = ACTIONS(987), - [anon_sym_GT_AMP] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_LT_LT_DASH] = ACTIONS(987), - [anon_sym_LT_LT_LT] = ACTIONS(987), - [sym__special_characters] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(989), - [sym_raw_string] = ACTIONS(987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(987), - [anon_sym_BQUOTE] = ACTIONS(987), - [anon_sym_LT_LPAREN] = ACTIONS(987), - [anon_sym_GT_LPAREN] = ACTIONS(987), + [sym_for_statement] = STATE(943), + [sym_while_statement] = STATE(943), + [sym_if_statement] = STATE(943), + [sym_case_statement] = STATE(943), + [sym_function_definition] = STATE(943), + [sym_subshell] = STATE(943), + [sym_pipeline] = STATE(943), + [sym_list] = STATE(943), + [sym_negated_command] = STATE(943), + [sym_test_command] = STATE(943), + [sym_declaration_command] = STATE(943), + [sym_unset_command] = STATE(943), + [sym_command] = STATE(943), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(944), + [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(989), + [sym_word] = ACTIONS(301), }, [496] = { - [aux_sym_concatenation_repeat1] = STATE(467), - [sym__simple_heredoc_body] = ACTIONS(991), - [sym__heredoc_body_beginning] = ACTIONS(991), - [sym_file_descriptor] = ACTIONS(991), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_PIPE_AMP] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_EQ_TILDE] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_AMP_GT] = ACTIONS(993), - [anon_sym_AMP_GT_GT] = ACTIONS(991), - [anon_sym_LT_AMP] = ACTIONS(991), - [anon_sym_GT_AMP] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_LT_LT_DASH] = ACTIONS(991), - [anon_sym_LT_LT_LT] = ACTIONS(991), - [sym__special_characters] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(993), - [sym_raw_string] = ACTIONS(991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(991), - [anon_sym_BQUOTE] = ACTIONS(991), - [anon_sym_LT_LPAREN] = ACTIONS(991), - [anon_sym_GT_LPAREN] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_PIPE_AMP] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(973), + [anon_sym_PIPE_PIPE] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(973), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(993), }, [497] = { - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_PIPE_AMP] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_BQUOTE] = ACTIONS(997), + [sym_simple_expansion] = STATE(946), + [sym_expansion] = STATE(946), + [aux_sym_heredoc_body_repeat1] = STATE(946), + [sym__heredoc_body_middle] = ACTIONS(1984), + [sym__heredoc_body_end] = ACTIONS(1986), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), [sym_comment] = ACTIONS(53), }, [498] = { - [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), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_PIPE_AMP] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(887), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(887), - [anon_sym_LT_AMP] = ACTIONS(887), - [anon_sym_GT_AMP] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1990), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1990), + [anon_sym_LT_AMP] = ACTIONS(1990), + [anon_sym_GT_AMP] = ACTIONS(1990), [sym_comment] = ACTIONS(53), }, [499] = { - [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(939), - [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(995), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_PIPE_AMP] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(887), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(887), - [anon_sym_LT_AMP] = ACTIONS(887), - [anon_sym_GT_AMP] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [sym__special_characters] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(287), + [sym_concatenation] = STATE(950), + [sym_string] = STATE(949), + [sym_simple_expansion] = STATE(949), + [sym_string_expansion] = STATE(949), + [sym_expansion] = STATE(949), + [sym_command_substitution] = STATE(949), + [sym_process_substitution] = STATE(949), + [sym__special_characters] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1994), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(897), - [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(899), + [sym_raw_string] = ACTIONS(1996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2004), + [anon_sym_GT_LPAREN] = ACTIONS(2004), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1996), + [sym_regex] = ACTIONS(2006), }, [500] = { - [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(939), - [aux_sym_command_repeat2] = STATE(941), - [sym__simple_heredoc_body] = ACTIONS(877), - [sym__heredoc_body_beginning] = ACTIONS(879), - [sym_file_descriptor] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_PIPE_AMP] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(887), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(887), - [anon_sym_LT_AMP] = ACTIONS(887), - [anon_sym_GT_AMP] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [sym__special_characters] = ACTIONS(895), + [sym_concatenation] = STATE(953), + [sym_string] = STATE(952), + [sym_simple_expansion] = STATE(952), + [sym_string_expansion] = STATE(952), + [sym_expansion] = STATE(952), + [sym_command_substitution] = STATE(952), + [sym_process_substitution] = STATE(952), + [sym__special_characters] = ACTIONS(2008), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(897), + [sym_raw_string] = ACTIONS(2010), [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(899), + [sym_word] = ACTIONS(2010), }, [501] = { - [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), + [sym_heredoc_start] = ACTIONS(2012), + [sym_comment] = ACTIONS(53), + }, + [502] = { + [sym_concatenation] = STATE(957), + [sym_string] = STATE(956), + [sym_simple_expansion] = STATE(956), + [sym_string_expansion] = STATE(956), + [sym_expansion] = STATE(956), + [sym_command_substitution] = STATE(956), + [sym_process_substitution] = STATE(956), + [sym__special_characters] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(2016), + [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), + }, + [503] = { + [aux_sym_concatenation_repeat1] = STATE(474), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_EQ_TILDE] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1005), + [sym_raw_string] = ACTIONS(1003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1003), + [anon_sym_BQUOTE] = ACTIONS(1003), + [anon_sym_LT_LPAREN] = ACTIONS(1003), + [anon_sym_GT_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1005), + }, + [504] = { + [aux_sym_concatenation_repeat1] = STATE(474), + [sym__simple_heredoc_body] = ACTIONS(1007), + [sym__heredoc_body_beginning] = ACTIONS(1007), + [sym_file_descriptor] = ACTIONS(1007), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_PIPE_AMP] = ACTIONS(1007), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [anon_sym_EQ_TILDE] = ACTIONS(1009), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_AMP_GT] = ACTIONS(1009), + [anon_sym_AMP_GT_GT] = ACTIONS(1007), + [anon_sym_LT_AMP] = ACTIONS(1007), + [anon_sym_GT_AMP] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_LT_LT_DASH] = ACTIONS(1007), + [anon_sym_LT_LT_LT] = ACTIONS(1007), + [sym__special_characters] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1007), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), + [anon_sym_BQUOTE] = ACTIONS(1007), + [anon_sym_LT_LPAREN] = ACTIONS(1007), + [anon_sym_GT_LPAREN] = ACTIONS(1007), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1009), + }, + [505] = { + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_PIPE_AMP] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1013), + [anon_sym_PIPE_PIPE] = ACTIONS(1013), + [anon_sym_BQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(53), + }, + [506] = { + [sym_file_redirect] = STATE(959), + [sym_heredoc_redirect] = STATE(959), + [sym_heredoc_body] = STATE(958), + [sym_herestring_redirect] = STATE(959), + [aux_sym_while_statement_repeat1] = STATE(959), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_PIPE_AMP] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1013), + [anon_sym_PIPE_PIPE] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(903), + [anon_sym_LT_AMP] = ACTIONS(903), + [anon_sym_GT_AMP] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym_comment] = ACTIONS(53), + }, + [507] = { + [sym_file_redirect] = STATE(960), + [sym_heredoc_redirect] = STATE(960), + [sym_heredoc_body] = STATE(958), + [sym_herestring_redirect] = STATE(960), + [sym_concatenation] = STATE(961), + [sym_string] = STATE(504), + [sym_simple_expansion] = STATE(504), + [sym_string_expansion] = STATE(504), + [sym_expansion] = STATE(504), + [sym_command_substitution] = STATE(504), + [sym_process_substitution] = STATE(504), + [aux_sym_while_statement_repeat1] = STATE(960), + [aux_sym_command_repeat2] = STATE(961), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_PIPE_AMP] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1013), + [anon_sym_PIPE_PIPE] = ACTIONS(1013), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(903), + [anon_sym_LT_AMP] = ACTIONS(903), + [anon_sym_GT_AMP] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym__special_characters] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(913), + [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(915), + }, + [508] = { + [sym_file_redirect] = STATE(960), + [sym_heredoc_redirect] = STATE(960), + [sym_heredoc_body] = STATE(958), + [sym_herestring_redirect] = STATE(960), + [sym_concatenation] = STATE(962), + [sym_string] = STATE(504), + [sym_simple_expansion] = STATE(504), + [sym_string_expansion] = STATE(504), + [sym_expansion] = STATE(504), + [sym_command_substitution] = STATE(504), + [sym_process_substitution] = STATE(504), + [aux_sym_while_statement_repeat1] = STATE(960), + [aux_sym_command_repeat2] = STATE(962), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_PIPE_AMP] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1013), + [anon_sym_PIPE_PIPE] = ACTIONS(1013), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(903), + [anon_sym_LT_AMP] = ACTIONS(903), + [anon_sym_GT_AMP] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym__special_characters] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(913), + [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(915), + }, + [509] = { + [sym_concatenation] = STATE(672), + [sym_string] = STATE(964), + [sym_array] = STATE(672), + [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__empty_value] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1301), + [sym__special_characters] = ACTIONS(2018), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_DOLLAR] = ACTIONS(209), - [sym_raw_string] = ACTIONS(1980), + [sym_raw_string] = ACTIONS(2020), [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(1980), - }, - [502] = { - [sym_do_group] = STATE(944), - [anon_sym_do] = ACTIONS(1822), - [sym_comment] = ACTIONS(53), - }, - [503] = { - [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(1984), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), - }, - [505] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1984), - [anon_sym_EQ_TILDE] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), - }, - [506] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [sym_comment] = ACTIONS(53), - }, - [507] = { - [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), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [sym__special_characters] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_DOLLAR] = ACTIONS(585), - [sym_raw_string] = ACTIONS(583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(583), - [anon_sym_LT_LPAREN] = ACTIONS(583), - [anon_sym_GT_LPAREN] = ACTIONS(583), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(585), - [sym_word] = ACTIONS(585), - }, - [508] = { - [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), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [sym__special_characters] = ACTIONS(599), - [anon_sym_DQUOTE] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(601), - [sym_raw_string] = ACTIONS(599), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(599), - [anon_sym_BQUOTE] = ACTIONS(599), - [anon_sym_LT_LPAREN] = ACTIONS(599), - [anon_sym_GT_LPAREN] = ACTIONS(599), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(601), - [sym_word] = ACTIONS(601), - }, - [509] = { - [anon_sym_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2020), }, [510] = { - [sym_variable_assignment] = STATE(950), - [sym_subscript] = STATE(509), - [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(950), - [sym_variable_name] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [sym__special_characters] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_LT_LPAREN] = ACTIONS(819), - [anon_sym_GT_LPAREN] = ACTIONS(819), + [sym_do_group] = STATE(965), + [anon_sym_do] = ACTIONS(1856), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(821), - [sym_word] = ACTIONS(913), }, [511] = { - [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), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [sym__special_characters] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR] = ACTIONS(623), - [sym_raw_string] = ACTIONS(625), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(625), - [anon_sym_LT_LPAREN] = ACTIONS(625), - [anon_sym_GT_LPAREN] = ACTIONS(625), + [sym_compound_statement] = STATE(967), + [anon_sym_LPAREN] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1874), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), - [sym_word] = ACTIONS(623), }, [512] = { - [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), - [anon_sym_PIPE_PIPE] = ACTIONS(641), - [sym__special_characters] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(639), - [sym_raw_string] = ACTIONS(641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), - [anon_sym_BQUOTE] = ACTIONS(641), - [anon_sym_LT_LPAREN] = ACTIONS(641), - [anon_sym_GT_LPAREN] = ACTIONS(641), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(2024), + [anon_sym_EQ_TILDE] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(639), - [sym_word] = ACTIONS(639), + [sym_test_operator] = ACTIONS(547), }, [513] = { - [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(952), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(659), - [anon_sym_AMP_AMP] = ACTIONS(659), - [anon_sym_PIPE_PIPE] = ACTIONS(659), - [sym__special_characters] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(829), - [sym_raw_string] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), - [anon_sym_BQUOTE] = ACTIONS(659), - [anon_sym_LT_LPAREN] = ACTIONS(839), - [anon_sym_GT_LPAREN] = ACTIONS(839), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2024), + [anon_sym_EQ_TILDE] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(841), - [sym_word] = ACTIONS(919), + [sym_test_operator] = ACTIONS(579), }, [514] = { - [aux_sym_concatenation_repeat1] = STATE(953), - [sym__simple_heredoc_body] = ACTIONS(693), - [sym__heredoc_body_beginning] = ACTIONS(693), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_EQ_TILDE] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_AMP] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(693), - [anon_sym_LT_LT_LT] = ACTIONS(693), - [sym__special_characters] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(695), }, [515] = { - [anon_sym_RPAREN] = ACTIONS(1988), + [aux_sym_concatenation_repeat1] = STATE(970), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_PIPE_AMP] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [sym__special_characters] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(591), + [sym_raw_string] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), + [sym_word] = ACTIONS(591), }, [516] = { - [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(955), - [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), + [aux_sym_concatenation_repeat1] = STATE(970), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_PIPE_AMP] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [sym__special_characters] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(609), + [sym_raw_string] = ACTIONS(607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(607), + [anon_sym_BQUOTE] = ACTIONS(607), + [anon_sym_LT_LPAREN] = ACTIONS(607), + [anon_sym_GT_LPAREN] = ACTIONS(607), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), + [sym_word] = ACTIONS(609), }, [517] = { - [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), + [anon_sym_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [sym_comment] = ACTIONS(53), + }, + [518] = { + [sym_variable_assignment] = STATE(971), + [sym_subscript] = STATE(517), + [sym_concatenation] = STATE(971), + [sym_string] = STATE(516), + [sym_simple_expansion] = STATE(516), + [sym_string_expansion] = STATE(516), + [sym_expansion] = STATE(516), + [sym_command_substitution] = STATE(516), + [sym_process_substitution] = STATE(516), + [aux_sym_declaration_command_repeat1] = STATE(971), + [sym_variable_name] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_PIPE_AMP] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [sym__special_characters] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(835), + [sym_word] = ACTIONS(929), + }, + [519] = { + [aux_sym_concatenation_repeat1] = STATE(972), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(631), + [anon_sym_PIPE_AMP] = ACTIONS(633), + [anon_sym_AMP_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(633), + [sym__special_characters] = ACTIONS(633), + [anon_sym_DQUOTE] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(631), + [sym_raw_string] = ACTIONS(633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), + [anon_sym_BQUOTE] = ACTIONS(633), + [anon_sym_LT_LPAREN] = ACTIONS(633), + [anon_sym_GT_LPAREN] = ACTIONS(633), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), + [sym_word] = ACTIONS(631), + }, + [520] = { + [aux_sym_concatenation_repeat1] = STATE(972), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_PIPE_AMP] = ACTIONS(651), + [anon_sym_AMP_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(651), + [sym__special_characters] = ACTIONS(651), + [anon_sym_DQUOTE] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [sym_raw_string] = ACTIONS(651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(651), + [anon_sym_LT_LPAREN] = ACTIONS(651), + [anon_sym_GT_LPAREN] = ACTIONS(651), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), + [sym_word] = ACTIONS(649), + }, + [521] = { + [sym_concatenation] = STATE(973), + [sym_string] = STATE(520), + [sym_simple_expansion] = STATE(520), + [sym_string_expansion] = STATE(520), + [sym_expansion] = STATE(520), + [sym_command_substitution] = STATE(520), + [sym_process_substitution] = STATE(520), + [aux_sym_unset_command_repeat1] = STATE(973), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), + [sym_word] = ACTIONS(935), + }, + [522] = { + [aux_sym_concatenation_repeat1] = STATE(974), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_EQ_TILDE] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(705), + [anon_sym_LT_AMP] = ACTIONS(705), + [anon_sym_GT_AMP] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(705), + [anon_sym_LT_LT_LT] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(707), + }, + [523] = { + [anon_sym_RPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(53), + }, + [524] = { + [sym_for_statement] = STATE(941), + [sym_while_statement] = STATE(941), + [sym_if_statement] = STATE(941), + [sym_case_statement] = STATE(941), + [sym_function_definition] = STATE(941), + [sym_subshell] = STATE(941), + [sym_pipeline] = STATE(941), + [sym_list] = STATE(941), + [sym_negated_command] = STATE(941), + [sym_test_command] = STATE(941), + [sym_declaration_command] = STATE(941), + [sym_unset_command] = STATE(941), + [sym_command] = STATE(941), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(957), + [sym_variable_assignment] = STATE(976), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -21364,3224 +21472,330 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [518] = { - [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(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(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(1996), - [sym_regex] = ACTIONS(1966), - }, - [520] = { - [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(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(2000), - }, - [521] = { - [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(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(2004), - }, - [522] = { - [aux_sym_concatenation_repeat1] = STATE(514), - [sym__simple_heredoc_body] = ACTIONS(987), - [sym__heredoc_body_beginning] = ACTIONS(987), - [sym_file_descriptor] = ACTIONS(987), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(987), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(987), - [anon_sym_AMP_GT] = ACTIONS(989), - [anon_sym_AMP_GT_GT] = ACTIONS(987), - [anon_sym_LT_AMP] = ACTIONS(987), - [anon_sym_GT_AMP] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_LT_LT_DASH] = ACTIONS(987), - [anon_sym_LT_LT_LT] = ACTIONS(987), - [sym__special_characters] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(989), - [sym_raw_string] = ACTIONS(987), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(987), - [anon_sym_BQUOTE] = ACTIONS(987), - [anon_sym_LT_LPAREN] = ACTIONS(987), - [anon_sym_GT_LPAREN] = ACTIONS(987), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(989), - }, - [523] = { - [aux_sym_concatenation_repeat1] = STATE(514), - [sym__simple_heredoc_body] = ACTIONS(991), - [sym__heredoc_body_beginning] = ACTIONS(991), - [sym_file_descriptor] = ACTIONS(991), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_PIPE_AMP] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_EQ_TILDE] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_AMP_GT] = ACTIONS(993), - [anon_sym_AMP_GT_GT] = ACTIONS(991), - [anon_sym_LT_AMP] = ACTIONS(991), - [anon_sym_GT_AMP] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_LT_LT_DASH] = ACTIONS(991), - [anon_sym_LT_LT_LT] = ACTIONS(991), - [sym__special_characters] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(993), - [sym_raw_string] = ACTIONS(991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(991), - [anon_sym_BQUOTE] = ACTIONS(991), - [anon_sym_LT_LPAREN] = ACTIONS(991), - [anon_sym_GT_LPAREN] = ACTIONS(991), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(993), - }, - [524] = { - [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), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_PIPE_AMP] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [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(997), - [sym_comment] = ACTIONS(53), - }, [525] = { - [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(966), - [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(995), - [anon_sym_PIPE_AMP] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [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), - [sym__special_characters] = ACTIONS(939), + [sym_for_statement] = STATE(977), + [sym_while_statement] = STATE(977), + [sym_if_statement] = STATE(977), + [sym_case_statement] = STATE(977), + [sym_function_definition] = STATE(977), + [sym_subshell] = STATE(977), + [sym_pipeline] = STATE(977), + [sym_list] = STATE(977), + [sym_negated_command] = STATE(977), + [sym_test_command] = STATE(977), + [sym_declaration_command] = STATE(977), + [sym_unset_command] = STATE(977), + [sym_command] = STATE(977), + [sym_command_name] = STATE(181), + [sym_variable_assignment] = STATE(978), + [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(941), + [sym_raw_string] = ACTIONS(321), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(997), + [anon_sym_BQUOTE] = ACTIONS(297), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(943), + [sym_word] = ACTIONS(323), }, [526] = { - [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(966), - [aux_sym_command_repeat2] = STATE(968), - [sym__simple_heredoc_body] = ACTIONS(877), - [sym__heredoc_body_beginning] = ACTIONS(879), - [sym_file_descriptor] = ACTIONS(929), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_PIPE_AMP] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [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), - [sym__special_characters] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(2030), + [anon_sym_GT] = ACTIONS(2030), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2030), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [sym_comment] = ACTIONS(53), + }, + [527] = { + [sym_concatenation] = STATE(950), + [sym_string] = STATE(981), + [sym_simple_expansion] = STATE(981), + [sym_string_expansion] = STATE(981), + [sym_expansion] = STATE(981), + [sym_command_substitution] = STATE(981), + [sym_process_substitution] = STATE(981), + [sym__special_characters] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2004), + [anon_sym_GT_LPAREN] = ACTIONS(2004), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2036), + [sym_regex] = ACTIONS(2006), + }, + [528] = { + [sym_concatenation] = STATE(953), + [sym_string] = STATE(983), + [sym_simple_expansion] = STATE(983), + [sym_string_expansion] = STATE(983), + [sym_expansion] = STATE(983), + [sym_command_substitution] = STATE(983), + [sym_process_substitution] = STATE(983), + [sym__special_characters] = ACTIONS(2038), [anon_sym_DQUOTE] = ACTIONS(287), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(941), + [sym_raw_string] = ACTIONS(2040), [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(997), + [anon_sym_BQUOTE] = ACTIONS(297), [anon_sym_LT_LPAREN] = ACTIONS(299), [anon_sym_GT_LPAREN] = ACTIONS(299), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(943), - }, - [527] = { - [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(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LF] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2008), - }, - [528] = { - [sym_compound_statement] = STATE(969), - [anon_sym_LBRACE] = ACTIONS(455), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2040), }, [529] = { - [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(2010), - [anon_sym_LF] = ACTIONS(2012), - [anon_sym_AMP] = ACTIONS(2010), - }, - [530] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [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), - [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(2010), - [anon_sym_LF] = ACTIONS(2012), - [anon_sym_AMP] = ACTIONS(2010), - }, - [531] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2014), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [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), - }, - [532] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2014), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [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), - [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(2014), - [anon_sym_LF] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2014), - }, - [533] = { - [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(2018), - [anon_sym_LF] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2018), - }, - [534] = { - [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(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(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(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(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(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_concatenation] = STATE(957), + [sym_string] = STATE(985), + [sym_simple_expansion] = STATE(985), + [sym_string_expansion] = STATE(985), + [sym_expansion] = STATE(985), + [sym_command_substitution] = STATE(985), + [sym_process_substitution] = STATE(985), [sym__special_characters] = ACTIONS(2042), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), [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), + [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(2044), }, - [538] = { - [aux_sym_concatenation_repeat1] = STATE(126), + [530] = { + [aux_sym_concatenation_repeat1] = STATE(522), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_EQ_TILDE] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1003), + [anon_sym_LT_AMP] = ACTIONS(1003), + [anon_sym_GT_AMP] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1003), + [anon_sym_LT_LT_LT] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1005), + [sym_raw_string] = ACTIONS(1003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1003), + [anon_sym_BQUOTE] = ACTIONS(1003), + [anon_sym_LT_LPAREN] = ACTIONS(1003), + [anon_sym_GT_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1005), + }, + [531] = { + [aux_sym_concatenation_repeat1] = STATE(522), + [sym__simple_heredoc_body] = ACTIONS(1007), + [sym__heredoc_body_beginning] = ACTIONS(1007), + [sym_file_descriptor] = ACTIONS(1007), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1007), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [anon_sym_EQ_TILDE] = ACTIONS(1009), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_AMP_GT] = ACTIONS(1009), + [anon_sym_AMP_GT_GT] = ACTIONS(1007), + [anon_sym_LT_AMP] = ACTIONS(1007), + [anon_sym_GT_AMP] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_LT_LT_DASH] = ACTIONS(1007), + [anon_sym_LT_LT_LT] = ACTIONS(1007), + [sym__special_characters] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1007), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), + [anon_sym_BQUOTE] = ACTIONS(1007), + [anon_sym_LT_LPAREN] = ACTIONS(1007), + [anon_sym_GT_LPAREN] = ACTIONS(1007), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1009), + }, + [532] = { + [sym_file_redirect] = STATE(986), + [sym_heredoc_redirect] = STATE(986), + [sym_heredoc_body] = STATE(958), + [sym_herestring_redirect] = STATE(986), + [aux_sym_while_statement_repeat1] = STATE(986), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1013), + [anon_sym_PIPE_PIPE] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(53), + }, + [533] = { + [sym_file_redirect] = STATE(987), + [sym_heredoc_redirect] = STATE(987), + [sym_heredoc_body] = STATE(958), + [sym_herestring_redirect] = STATE(987), + [sym_concatenation] = STATE(988), + [sym_string] = STATE(531), + [sym_simple_expansion] = STATE(531), + [sym_string_expansion] = STATE(531), + [sym_expansion] = STATE(531), + [sym_command_substitution] = STATE(531), + [sym_process_substitution] = STATE(531), + [aux_sym_while_statement_repeat1] = STATE(987), + [aux_sym_command_repeat2] = STATE(988), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1013), + [anon_sym_PIPE_PIPE] = ACTIONS(1013), + [anon_sym_EQ_TILDE] = ACTIONS(947), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(953), + [sym__special_characters] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), + [anon_sym_BQUOTE] = ACTIONS(1013), + [anon_sym_LT_LPAREN] = ACTIONS(299), + [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(959), + }, + [534] = { + [sym_file_redirect] = STATE(987), + [sym_heredoc_redirect] = STATE(987), + [sym_heredoc_body] = STATE(958), + [sym_herestring_redirect] = STATE(987), + [sym_concatenation] = STATE(989), + [sym_string] = STATE(531), + [sym_simple_expansion] = STATE(531), + [sym_string_expansion] = STATE(531), + [sym_expansion] = STATE(531), + [sym_command_substitution] = STATE(531), + [sym_process_substitution] = STATE(531), + [aux_sym_while_statement_repeat1] = STATE(987), + [aux_sym_command_repeat2] = STATE(989), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1013), + [anon_sym_PIPE_PIPE] = ACTIONS(1013), + [anon_sym_EQ_TILDE] = ACTIONS(947), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(953), + [sym__special_characters] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), + [anon_sym_BQUOTE] = ACTIONS(1013), + [anon_sym_LT_LPAREN] = ACTIONS(299), + [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(959), + }, + [535] = { [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(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(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(2050), - [sym__heredoc_body_beginning] = ACTIONS(2050), - [sym_file_descriptor] = ACTIONS(2050), - [sym__concat] = ACTIONS(223), - [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(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2052), - }, - [540] = { - [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(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2052), - }, - [541] = { - [aux_sym_concatenation_repeat1] = STATE(982), - [sym__simple_heredoc_body] = ACTIONS(661), - [sym__heredoc_body_beginning] = ACTIONS(661), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_SEMI_SEMI] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(665), - [anon_sym_LT_AMP] = ACTIONS(665), - [anon_sym_GT_AMP] = ACTIONS(665), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(665), - [anon_sym_LT_LT_LT] = ACTIONS(665), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_LF] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(665), - }, - [542] = { - [aux_sym_concatenation_repeat1] = STATE(982), - [sym__simple_heredoc_body] = ACTIONS(677), - [sym__heredoc_body_beginning] = ACTIONS(677), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_LT_LT_LT] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [543] = { - [sym__simple_heredoc_body] = ACTIONS(677), - [sym__heredoc_body_beginning] = ACTIONS(677), - [sym_file_descriptor] = ACTIONS(677), - [anon_sym_esac] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_LT_LT_LT] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [544] = { - [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(2056), - [anon_sym_LF] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2056), - }, - [545] = { - [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(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), - }, - [546] = { - [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(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), - }, - [547] = { - [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(2064), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), - }, - [548] = { - [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(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(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(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(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(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), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2066), - }, - [551] = { - [sym_concatenation] = STATE(551), - [sym_string] = STATE(199), - [sym_simple_expansion] = STATE(199), - [sym_string_expansion] = STATE(199), - [sym_expansion] = STATE(199), - [sym_command_substitution] = STATE(199), - [sym_process_substitution] = STATE(199), - [aux_sym_command_repeat2] = STATE(551), - [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(2098), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2052), - }, - [552] = { - [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), - [sym_string_expansion] = STATE(199), - [sym_expansion] = STATE(199), - [sym_command_substitution] = STATE(199), - [sym_process_substitution] = STATE(199), - [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(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), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym__special_characters] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(357), - [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(357), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2066), - }, - [553] = { - [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(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(1297), - }, - [554] = { - [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(987), - [sym__concat] = ACTIONS(513), - [anon_sym_RBRACK] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - }, - [556] = { - [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(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(1297), - }, - [557] = { - [sym__concat] = ACTIONS(2123), - [anon_sym_EQ] = ACTIONS(2125), - [anon_sym_PLUS_EQ] = ACTIONS(2125), - [sym_comment] = ACTIONS(53), - }, - [558] = { - [anon_sym_RBRACK] = ACTIONS(2121), - [sym_comment] = ACTIONS(53), - }, - [559] = { - [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(2129), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_LF] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2129), - }, - [560] = { - [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(2133), - }, - [561] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [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), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [562] = { - [sym_string] = STATE(995), - [anon_sym_DQUOTE] = ACTIONS(1115), - [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(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(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(2147), - }, - [564] = { - [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(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(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(1003), - [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), - }, - [566] = { - [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(1005), - [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), - }, - [567] = { - [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(1007), - [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), - }, - [568] = { - [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(1009), - [anon_sym_RPAREN] = ACTIONS(2161), - [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), - }, - [569] = { - [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(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(2163), - }, - [570] = { - [aux_sym_concatenation_repeat1] = STATE(1011), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(1131), - [sym_variable_name] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [571] = { - [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), - [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), - }, - [572] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(2165), - [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), - }, - [573] = { - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(727), - [sym_variable_name] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(729), - [anon_sym_LT_AMP] = ACTIONS(729), - [anon_sym_GT_AMP] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - }, - [574] = { - [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), - [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), - }, - [575] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [576] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2167), - [sym_comment] = ACTIONS(53), - }, - [577] = { - [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(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(2173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [578] = { - [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(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(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(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(2189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [580] = { - [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(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(2197), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [581] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [582] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2201), - [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), - }, - [583] = { - [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(2201), - [sym_comment] = ACTIONS(53), - }, - [584] = { - [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(2201), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [585] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [sym_comment] = ACTIONS(53), - }, - [586] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(2203), - [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), - }, - [587] = { - [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(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_LF] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2135), - }, - [588] = { - [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_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), - [sym_word] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_LF] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2205), - }, - [590] = { - [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] = { - [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), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2225), - }, - [592] = { - [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__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(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), - [anon_sym_AMP_GT] = ACTIONS(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), - }, - [594] = { - [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_file_redirect] = STATE(549), - [sym_heredoc_redirect] = STATE(549), - [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(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), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(351), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_LF] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2235), - }, - [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(2239), - [anon_sym_LF] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2239), - }, - [597] = { - [sym__terminated_statement] = STATE(1037), - [sym_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [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(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(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(2243), - [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), - }, - [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] = { - [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), - [sym_word] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LF] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - }, - [608] = { - [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_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_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__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_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2282), - }, - [613] = { - [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(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(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), - }, - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [624] = { - [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__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(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LF] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2008), - }, - [626] = { - [sym_compound_statement] = STATE(1073), - [anon_sym_LBRACE] = ACTIONS(455), - [sym_comment] = ACTIONS(53), - }, - [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(2318), - [anon_sym_LF] = ACTIONS(2316), - [anon_sym_AMP] = ACTIONS(2318), - }, - [628] = { - [anon_sym_PIPE] = ACTIONS(329), - [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(2320), - [anon_sym_LF] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - }, - [629] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(2320), - [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(2320), - [anon_sym_LF] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - }, - [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(629), - [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(1076), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2324), - [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), - }, - [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), - }, - [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(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(2332), - }, - [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(2334), - [anon_sym_LF] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2334), - }, - [634] = { - [aux_sym_concatenation_repeat1] = STATE(1081), - [sym_file_descriptor] = ACTIONS(1129), - [sym__concat] = ACTIONS(1131), - [sym_variable_name] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [sym__special_characters] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1133), - }, - [635] = { - [aux_sym_concatenation_repeat1] = STATE(1081), - [sym_file_descriptor] = ACTIONS(1107), - [sym__concat] = ACTIONS(1131), - [sym_variable_name] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_SEMI_SEMI] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(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), - }, - [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(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), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(489), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_LF] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1163), - }, - [637] = { - [anon_sym_RPAREN] = ACTIONS(2338), - [sym_comment] = ACTIONS(53), - }, - [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(1233), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1233), - }, - [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(1341), - [anon_sym_LF] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1341), - }, - [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(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(2352), - }, - [641] = { - [aux_sym_concatenation_repeat1] = STATE(1092), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [642] = { - [sym_variable_assignment] = STATE(642), - [sym_subscript] = STATE(261), - [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(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(1514), - [sym_word] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1488), - }, - [643] = { - [aux_sym_concatenation_repeat1] = STATE(1093), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [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(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(1595), - [sym_word] = ACTIONS(2366), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_LF] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1569), - }, - [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(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [646] = { - [sym_compound_statement] = STATE(1094), - [anon_sym_LBRACE] = ACTIONS(455), - [sym_comment] = ACTIONS(53), - }, - [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(2369), - [anon_sym_LF] = ACTIONS(2371), - [anon_sym_AMP] = ACTIONS(2369), - }, - [648] = { - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(2014), - [anon_sym_SEMI_SEMI] = ACTIONS(2014), - [anon_sym_PIPE_AMP] = ACTIONS(473), - [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), - }, - [649] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_RPAREN] = ACTIONS(2014), - [anon_sym_SEMI_SEMI] = ACTIONS(2014), - [anon_sym_PIPE_AMP] = ACTIONS(473), - [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), - [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(2014), - [anon_sym_LF] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2014), - }, - [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(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(2375), - }, - [651] = { - [aux_sym_concatenation_repeat1] = STATE(266), - [sym__simple_heredoc_body] = ACTIONS(2046), - [sym__heredoc_body_beginning] = ACTIONS(2046), - [sym_file_descriptor] = ACTIONS(2046), - [sym__concat] = ACTIONS(223), + [sym__concat] = ACTIONS(2046), + [anon_sym_esac] = ACTIONS(2048), [anon_sym_PIPE] = ACTIONS(2048), [anon_sym_RPAREN] = ACTIONS(2048), [anon_sym_SEMI_SEMI] = ACTIONS(2048), @@ -24615,4449 +21829,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(2046), [anon_sym_AMP] = ACTIONS(2048), }, - [652] = { - [aux_sym_concatenation_repeat1] = STATE(266), - [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(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(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2052), - }, - [653] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym__simple_heredoc_body] = ACTIONS(661), - [sym__heredoc_body_beginning] = ACTIONS(661), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(665), - [anon_sym_SEMI_SEMI] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(665), - [anon_sym_LT_AMP] = ACTIONS(665), - [anon_sym_GT_AMP] = ACTIONS(665), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(665), - [anon_sym_LT_LT_LT] = ACTIONS(665), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_LF] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(665), - }, - [654] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym__simple_heredoc_body] = ACTIONS(677), - [sym__heredoc_body_beginning] = ACTIONS(677), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_LT_LT_LT] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [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(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(2075), - [anon_sym_LF] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2075), - }, - [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(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), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(489), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2066), - }, - [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(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(2392), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2052), - }, - [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(2395), - [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), - }, - [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(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(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), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(489), - [sym__special_characters] = ACTIONS(491), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(493), - [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(493), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2066), - }, - [662] = { - [sym_file_descriptor] = ACTIONS(1107), - [sym_variable_name] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1109), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [sym__special_characters] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1109), - [sym_raw_string] = ACTIONS(1107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1107), - [anon_sym_GT_LPAREN] = ACTIONS(1107), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1107), - }, - [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(1101), - [anon_sym_RPAREN] = ACTIONS(2397), - [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), - }, - [664] = { - [aux_sym_concatenation_repeat1] = STATE(373), - [sym_file_descriptor] = ACTIONS(1129), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1129), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1129), - [anon_sym_LT_AMP] = ACTIONS(1129), - [anon_sym_GT_AMP] = ACTIONS(1129), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LT_LPAREN] = ACTIONS(1129), - [anon_sym_GT_LPAREN] = ACTIONS(1129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1129), - }, - [665] = { - [aux_sym_concatenation_repeat1] = STATE(373), - [sym_file_descriptor] = ACTIONS(1107), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1109), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [sym__special_characters] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1109), - [sym_raw_string] = ACTIONS(1107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1107), - [anon_sym_GT_LPAREN] = ACTIONS(1107), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1107), - }, - [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(1289), - }, - [667] = { - [aux_sym_concatenation_repeat1] = STATE(1102), - [sym__concat] = ACTIONS(551), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_EQ_TILDE] = ACTIONS(693), - [anon_sym_EQ_EQ] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(693), - }, - [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(2399), - }, - [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), - [sym_expansion] = STATE(287), - [sym_command_substitution] = STATE(287), - [sym_process_substitution] = STATE(287), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(503), - [sym__special_characters] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(507), - [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(509), - [sym_test_operator] = ACTIONS(511), - }, - [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(1411), - [anon_sym_BANG] = ACTIONS(503), - [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(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(1425), - }, - [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(1642), - }, - [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(1642), - }, - [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(1691), - }, - [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(2412), - }, - [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(1732), - }, - [676] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2414), - }, - [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(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(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), - }, - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [688] = { - [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__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] = { - [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(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(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), - }, - [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), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1148), - [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(2509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [708] = { - [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] = { - [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(1798), - }, - [710] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2519), - }, - [711] = { - [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(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(1806), - }, - [713] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2523), - }, - [714] = { - [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(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(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), - }, - [715] = { - [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__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] = { - [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] = { - [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_variable_name] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_SEMI_SEMI] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), - [sym_word] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), - }, - [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(1155), - [anon_sym_RPAREN] = ACTIONS(2525), - [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), - }, - [721] = { - [aux_sym_concatenation_repeat1] = STATE(335), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [sym__special_characters] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1133), - [sym_word] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1133), - }, - [722] = { - [aux_sym_concatenation_repeat1] = STATE(335), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(1107), - [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), - [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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), - [sym_word] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1693), - [sym_word] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LF] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - }, - [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(2534), - }, - [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(1734), - [sym_word] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_LF] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1734), - }, - [728] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2536), - }, - [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(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(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), - }, - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [740] = { - [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__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), - [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__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), - [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] = { - [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), - [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(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(1693), - [sym_word] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LF] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - }, - [745] = { - [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__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), - [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_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2579), - }, - [748] = { - [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(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(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), - }, - [749] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2583), - [sym_comment] = ACTIONS(53), - }, - [750] = { - [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), - [sym_word] = ACTIONS(767), - }, - [751] = { - [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), - [sym_word] = ACTIONS(767), - }, - [752] = { - [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), - [sym_word] = ACTIONS(767), - }, - [753] = { - [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(1800), - [sym_word] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_LF] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1800), - }, - [754] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2607), - }, - [755] = { - [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(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), - }, - [757] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2611), - }, - [758] = { - [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(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(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), - }, - [759] = { - [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__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), - [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_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] = { - [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_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_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_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_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2622), - }, - [767] = { - [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(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(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), - }, - [768] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2626), - [sym_comment] = ACTIONS(53), - }, - [769] = { - [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), - [sym_word] = ACTIONS(767), - }, - [770] = { - [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), - [sym_word] = ACTIONS(767), - }, - [771] = { - [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] = { - [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(1798), - }, - [773] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2650), - }, - [774] = { - [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(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(1806), - }, - [776] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2654), - }, - [777] = { - [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(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(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), - }, - [778] = { - [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_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), + [536] = { + [sym_compound_statement] = STATE(990), + [anon_sym_LBRACE] = ACTIONS(457), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2006), }, - [780] = { - [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), + [537] = { + [anon_sym_esac] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_SEMI_SEMI] = ACTIONS(2050), + [anon_sym_PIPE_AMP] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_PIPE_PIPE] = ACTIONS(2050), [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2050), }, - [781] = { - [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__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(2666), - }, - [784] = { - [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(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(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), - }, - [785] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(2670), - [sym_comment] = ACTIONS(53), - }, - [786] = { - [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(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(2676), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [788] = { - [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(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(2690), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [795] = { - [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] = { - [aux_sym_concatenation_repeat1] = STATE(555), - [sym__concat] = ACTIONS(2700), - [anon_sym_RBRACK] = ACTIONS(2702), - [sym_comment] = ACTIONS(53), - }, - [797] = { - [aux_sym_concatenation_repeat1] = STATE(555), - [sym__concat] = ACTIONS(2704), - [anon_sym_RBRACK] = ACTIONS(2706), - [sym_comment] = ACTIONS(53), - }, - [798] = { - [sym__concat] = ACTIONS(2708), - [anon_sym_RBRACK] = ACTIONS(2706), - [sym_comment] = ACTIONS(53), - }, - [799] = { - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2716), - [sym_comment] = ACTIONS(53), - }, - [801] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [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), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [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(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), - }, - [803] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2728), - [sym_comment] = ACTIONS(53), - }, - [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(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), - }, - [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(1248), - [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), - }, - [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(1250), - [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), - }, - [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(1252), - [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), - }, - [808] = { - [anon_sym_RBRACE] = ACTIONS(2728), - [sym_comment] = ACTIONS(53), - }, - [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(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(2740), - }, - [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), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_COLON_QMARK] = ACTIONS(695), - [anon_sym_COLON_DASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(695), - }, - [811] = { - [sym__concat] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(699), - [sym_raw_string] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(699), - [anon_sym_COLON_QMARK] = ACTIONS(699), - [anon_sym_COLON_DASH] = ACTIONS(699), - [anon_sym_PERCENT] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(699), - }, - [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(2742), - [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), - }, - [813] = { - [sym__concat] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(727), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(727), - [anon_sym_POUND] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_COLON_QMARK] = ACTIONS(729), - [anon_sym_COLON_DASH] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(727), - [anon_sym_GT_LPAREN] = ACTIONS(727), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(729), - }, - [814] = { - [sym__concat] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(733), - [anon_sym_COLON_QMARK] = ACTIONS(733), - [anon_sym_COLON_DASH] = ACTIONS(733), - [anon_sym_PERCENT] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(733), - }, - [815] = { - [sym__concat] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_COLON] = ACTIONS(737), - [anon_sym_COLON_QMARK] = ACTIONS(737), - [anon_sym_COLON_DASH] = ACTIONS(737), - [anon_sym_PERCENT] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(737), - }, - [816] = { - [anon_sym_LBRACK] = ACTIONS(739), - [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] = { + [538] = { [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_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__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(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(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(2824), - }, - [830] = { - [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__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(2833), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2833), - }, - [832] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2835), - }, - [833] = { - [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] = { - [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_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2843), - }, - [836] = { - [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_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(2847), - }, - [838] = { - [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(767), - }, - [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(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(767), - }, - [840] = { - [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_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(767), - }, - [842] = { - [aux_sym_concatenation_repeat1] = STATE(1286), - [sym_file_descriptor] = ACTIONS(1129), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1129), - [anon_sym_PIPE_AMP] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1129), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1129), - [anon_sym_LT_AMP] = ACTIONS(1129), - [anon_sym_GT_AMP] = ACTIONS(1129), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LT_LPAREN] = ACTIONS(1129), - [anon_sym_GT_LPAREN] = ACTIONS(1129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1129), - }, - [843] = { - [aux_sym_concatenation_repeat1] = STATE(1286), - [sym_file_descriptor] = ACTIONS(1107), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1109), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [sym__special_characters] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1109), - [sym_raw_string] = ACTIONS(1107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1107), - [anon_sym_GT_LPAREN] = ACTIONS(1107), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1107), - }, - [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(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(1157), - }, - [845] = { - [sym_do_group] = STATE(1289), - [anon_sym_do] = ACTIONS(2865), - [sym_comment] = ACTIONS(53), - }, - [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(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(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(2867), - [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), - }, - [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(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), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(887), - [anon_sym_LT_AMP] = ACTIONS(887), - [anon_sym_GT_AMP] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [sym_comment] = ACTIONS(53), - }, - [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(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(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(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), - [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), - }, - [849] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2871), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2871), - }, - [850] = { - [anon_sym_in] = ACTIONS(2875), - [sym_comment] = ACTIONS(53), - }, - [851] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2877), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym_LF] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2877), - }, - [852] = { - [anon_sym_in] = ACTIONS(2881), - [sym_comment] = ACTIONS(53), - }, - [853] = { - [anon_sym_RPAREN] = ACTIONS(2883), - [sym_comment] = ACTIONS(53), - }, - [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(629), - [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(1304), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2885), - [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), - }, - [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), - }, - [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), - }, - [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(2893), - [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), - }, - [858] = { - [anon_sym_PIPE] = ACTIONS(473), - [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(2897), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - }, - [859] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(473), - [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), + [anon_sym_esac] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_SEMI_SEMI] = ACTIONS(2050), + [anon_sym_PIPE_AMP] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_PIPE_PIPE] = ACTIONS(2050), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -29076,2775 +21875,471 @@ 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(2897), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - }, - [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), - }, - [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(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(2919), - }, - [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(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(2921), - }, - [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), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [sym__special_characters] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - }, - [864] = { - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [sym__special_characters] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(699), - [sym_raw_string] = ACTIONS(697), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), - [sym_word] = ACTIONS(699), - }, - [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(2923), - [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), - }, - [866] = { - [sym__concat] = ACTIONS(727), - [sym_variable_name] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_PIPE_AMP] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [sym__special_characters] = ACTIONS(727), - [anon_sym_DQUOTE] = ACTIONS(727), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(727), - [anon_sym_GT_LPAREN] = ACTIONS(727), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), - [sym_word] = ACTIONS(729), - }, - [867] = { - [sym__concat] = ACTIONS(731), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - }, - [868] = { - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - }, - [869] = { - [anon_sym_LBRACK] = ACTIONS(739), - [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_variable_assignment] = STATE(880), - [sym_subscript] = STATE(454), - [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(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(2990), - [sym_word] = ACTIONS(2993), - }, - [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(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(2996), - }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [sym__special_characters] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - }, - [883] = { - [sym__concat] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [sym__special_characters] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(699), - [sym_raw_string] = ACTIONS(697), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), - [sym_word] = ACTIONS(699), - }, - [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(2998), - [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), - }, - [885] = { - [sym__concat] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_PIPE_AMP] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [sym__special_characters] = ACTIONS(727), - [anon_sym_DQUOTE] = ACTIONS(727), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(727), - [anon_sym_GT_LPAREN] = ACTIONS(727), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), - [sym_word] = ACTIONS(729), - }, - [886] = { - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - }, - [887] = { - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - }, - [888] = { - [anon_sym_LBRACK] = ACTIONS(739), - [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(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(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(3062), - [sym_word] = ACTIONS(3065), - }, - [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(1644), - }, - [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(1644), - }, - [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(1693), - }, - [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(3075), - }, - [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(1734), - }, - [905] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3077), - }, - [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(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(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), - }, - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [917] = { - [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__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_compound_statement] = STATE(1375), - [anon_sym_LBRACE] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - }, - [920] = { - [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_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(369), - }, - [922] = { - [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_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] = { - [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), - }, - [925] = { - [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), - }, - [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(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(3115), - }, - [927] = { - [aux_sym_concatenation_repeat1] = STATE(467), - [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(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(2048), - }, - [928] = { - [aux_sym_concatenation_repeat1] = STATE(467), - [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(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(2052), - }, - [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(2052), - }, - [930] = { - [aux_sym_concatenation_repeat1] = STATE(1380), - [sym__simple_heredoc_body] = ACTIONS(661), - [sym__heredoc_body_beginning] = ACTIONS(661), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_PIPE_AMP] = ACTIONS(661), - [anon_sym_AMP_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(661), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(661), - [anon_sym_LT_AMP] = ACTIONS(661), - [anon_sym_GT_AMP] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(661), - [anon_sym_LT_LT_LT] = ACTIONS(661), - [sym_comment] = ACTIONS(53), - }, - [931] = { - [aux_sym_concatenation_repeat1] = STATE(1380), - [sym__simple_heredoc_body] = ACTIONS(677), - [sym__heredoc_body_beginning] = ACTIONS(677), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [anon_sym_LT_LT_LT] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - }, - [932] = { - [sym__simple_heredoc_body] = ACTIONS(677), - [sym__heredoc_body_beginning] = ACTIONS(677), - [sym_file_descriptor] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [anon_sym_LT_LT_LT] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - }, - [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_SEMI] = ACTIONS(2050), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2050), + }, + [539] = { + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(2054), + [anon_sym_PIPE_AMP] = ACTIONS(329), [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), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, - [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), + [540] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(2054), + [anon_sym_PIPE_AMP] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(2054), + [anon_sym_PIPE_PIPE] = ACTIONS(2054), + [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(2054), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + }, + [541] = { + [anon_sym_esac] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2058), [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_SEMI_SEMI] = 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(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(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), - }, - [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(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), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(887), - [anon_sym_LT_AMP] = ACTIONS(887), - [anon_sym_GT_AMP] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [sym_comment] = ACTIONS(53), - }, - [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(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(3162), - }, - [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(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(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), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(887), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(887), - [anon_sym_LT_AMP] = ACTIONS(887), - [anon_sym_GT_AMP] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [sym__special_characters] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(897), - [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(899), - }, - [942] = { - [aux_sym_concatenation_repeat1] = STATE(1383), - [sym_file_descriptor] = ACTIONS(1129), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1129), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1129), - [anon_sym_LT_AMP] = ACTIONS(1129), - [anon_sym_GT_AMP] = ACTIONS(1129), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LT_LPAREN] = ACTIONS(1129), - [anon_sym_GT_LPAREN] = ACTIONS(1129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1129), - }, - [943] = { - [aux_sym_concatenation_repeat1] = STATE(1383), - [sym_file_descriptor] = ACTIONS(1107), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_AMP_GT] = ACTIONS(1109), - [anon_sym_AMP_GT_GT] = ACTIONS(1107), - [anon_sym_LT_AMP] = ACTIONS(1107), - [anon_sym_GT_AMP] = ACTIONS(1107), - [sym__special_characters] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1109), - [sym_raw_string] = ACTIONS(1107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1107), - [anon_sym_GT_LPAREN] = ACTIONS(1107), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1107), - }, - [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(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), - [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(1165), - [sym_comment] = ACTIONS(53), - }, - [945] = { - [anon_sym_RPAREN] = ACTIONS(3165), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [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), - }, - [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(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(3183), - }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [sym__special_characters] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - }, - [950] = { - [sym_variable_assignment] = STATE(950), - [sym_subscript] = STATE(509), - [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(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(2990), - [sym_word] = ACTIONS(3194), - }, - [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), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [sym__special_characters] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - }, - [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(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(3062), - [sym_word] = ACTIONS(3203), - }, - [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(1644), - }, - [954] = { - [sym_compound_statement] = STATE(1396), - [anon_sym_LBRACE] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - }, - [955] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [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), - [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(2012), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [956] = { - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_PIPE_AMP] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_BQUOTE] = ACTIONS(2016), - [sym_comment] = ACTIONS(53), - }, - [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(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), - }, - [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(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(3208), - }, - [959] = { - [aux_sym_concatenation_repeat1] = STATE(514), - [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(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(2048), - }, - [960] = { - [aux_sym_concatenation_repeat1] = STATE(514), - [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(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(2052), - }, - [961] = { - [aux_sym_concatenation_repeat1] = STATE(1399), - [sym__simple_heredoc_body] = ACTIONS(661), - [sym__heredoc_body_beginning] = ACTIONS(661), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(661), - [anon_sym_AMP_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(661), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(661), - [anon_sym_LT_AMP] = ACTIONS(661), - [anon_sym_GT_AMP] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(661), - [anon_sym_LT_LT_LT] = ACTIONS(661), - [anon_sym_BQUOTE] = ACTIONS(661), - [sym_comment] = ACTIONS(53), - }, - [962] = { - [aux_sym_concatenation_repeat1] = STATE(1399), - [sym__simple_heredoc_body] = ACTIONS(677), - [sym__heredoc_body_beginning] = ACTIONS(677), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [anon_sym_LT_LT_LT] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - }, - [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(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), - }, - [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_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), - }, - [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_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(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), - [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), - [sym__special_characters] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_raw_string] = ACTIONS(941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), - [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), - }, - [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(2334), - [anon_sym_LF] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_LF] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2058), }, - [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), - }, - [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), - }, - [972] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3234), - [sym_comment] = ACTIONS(53), - }, - [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(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(3240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [542] = { + [anon_sym_DOLLAR] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2062), + [anon_sym_QMARK] = ACTIONS(2062), + [anon_sym_0] = ACTIONS(2066), + [anon_sym__] = ACTIONS(2066), }, - [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(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), - }, - [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(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(3256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [543] = { + [sym_subscript] = STATE(997), + [sym_variable_name] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2070), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2074), + [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_QMARK] = ACTIONS(2070), + [anon_sym_0] = ACTIONS(2076), + [anon_sym__] = ACTIONS(2076), }, - [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(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(3264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3268), - [anon_sym_LF] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - }, - [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), + [544] = { + [sym_simple_expansion] = STATE(999), + [sym_expansion] = STATE(999), + [aux_sym_heredoc_body_repeat1] = STATE(999), + [sym__heredoc_body_middle] = ACTIONS(2078), + [sym__heredoc_body_end] = ACTIONS(2080), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), [sym_comment] = ACTIONS(53), }, - [979] = { - [aux_sym_concatenation_repeat1] = STATE(982), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), + [545] = { + [sym_concatenation] = STATE(1002), + [sym_string] = STATE(1001), + [sym_simple_expansion] = STATE(1001), + [sym_string_expansion] = STATE(1001), + [sym_expansion] = STATE(1001), + [sym_command_substitution] = STATE(1001), + [sym_process_substitution] = STATE(1001), + [sym__special_characters] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2084), + }, + [546] = { + [aux_sym_concatenation_repeat1] = STATE(126), + [sym__simple_heredoc_body] = ACTIONS(2086), + [sym__heredoc_body_beginning] = ACTIONS(2086), + [sym_file_descriptor] = ACTIONS(2086), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1091), - [anon_sym_LT_AMP] = ACTIONS(1091), - [anon_sym_GT_AMP] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1091), - [anon_sym_LT_LT_LT] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_SEMI_SEMI] = ACTIONS(2088), + [anon_sym_PIPE_AMP] = ACTIONS(2088), + [anon_sym_AMP_AMP] = ACTIONS(2088), + [anon_sym_PIPE_PIPE] = ACTIONS(2088), + [anon_sym_EQ_TILDE] = ACTIONS(2088), + [anon_sym_EQ_EQ] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(2088), + [anon_sym_AMP_GT] = ACTIONS(2088), + [anon_sym_AMP_GT_GT] = ACTIONS(2088), + [anon_sym_LT_AMP] = ACTIONS(2088), + [anon_sym_GT_AMP] = ACTIONS(2088), + [anon_sym_LT_LT] = ACTIONS(2088), + [anon_sym_LT_LT_DASH] = ACTIONS(2088), + [anon_sym_LT_LT_LT] = ACTIONS(2088), + [sym__special_characters] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [anon_sym_DOLLAR] = ACTIONS(2088), + [sym_raw_string] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2088), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2088), + [anon_sym_BQUOTE] = ACTIONS(2088), + [anon_sym_LT_LPAREN] = ACTIONS(2088), + [anon_sym_GT_LPAREN] = ACTIONS(2088), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), + [sym_word] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_LF] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2088), }, - [980] = { - [aux_sym_concatenation_repeat1] = STATE(982), - [sym__simple_heredoc_body] = ACTIONS(1093), - [sym__heredoc_body_beginning] = ACTIONS(1093), - [sym_file_descriptor] = ACTIONS(1093), + [547] = { + [aux_sym_concatenation_repeat1] = STATE(126), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1095), - [anon_sym_LT_AMP] = ACTIONS(1095), - [anon_sym_GT_AMP] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_SEMI_SEMI] = ACTIONS(2092), + [anon_sym_PIPE_AMP] = ACTIONS(2092), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_EQ_TILDE] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2092), + [anon_sym_LT_AMP] = ACTIONS(2092), + [anon_sym_GT_AMP] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2092), + [anon_sym_LT_LT_LT] = ACTIONS(2092), + [sym__special_characters] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2092), + [sym_raw_string] = ACTIONS(2092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2092), + [anon_sym_BQUOTE] = ACTIONS(2092), + [anon_sym_LT_LPAREN] = ACTIONS(2092), + [anon_sym_GT_LPAREN] = ACTIONS(2092), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), + [sym_word] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_LF] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2092), }, - [981] = { - [sym__simple_heredoc_body] = ACTIONS(1093), - [sym__heredoc_body_beginning] = ACTIONS(1093), - [sym_file_descriptor] = ACTIONS(1093), - [anon_sym_esac] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1095), - [anon_sym_LT_AMP] = ACTIONS(1095), - [anon_sym_GT_AMP] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1095), + [548] = { + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [anon_sym_esac] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_SEMI_SEMI] = ACTIONS(2092), + [anon_sym_PIPE_AMP] = ACTIONS(2092), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_EQ_TILDE] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2092), + [anon_sym_LT_AMP] = ACTIONS(2092), + [anon_sym_GT_AMP] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2092), + [anon_sym_LT_LT_LT] = ACTIONS(2092), + [sym__special_characters] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2092), + [sym_raw_string] = ACTIONS(2092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2092), + [anon_sym_BQUOTE] = ACTIONS(2092), + [anon_sym_LT_LPAREN] = ACTIONS(2092), + [anon_sym_GT_LPAREN] = ACTIONS(2092), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), + [sym_word] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_LF] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2092), }, - [982] = { - [aux_sym_concatenation_repeat1] = STATE(1416), - [sym__simple_heredoc_body] = ACTIONS(693), - [sym__heredoc_body_beginning] = ACTIONS(693), - [sym_file_descriptor] = ACTIONS(693), + [549] = { + [aux_sym_concatenation_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(671), + [sym__heredoc_body_beginning] = ACTIONS(671), + [sym_file_descriptor] = ACTIONS(671), [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(675), + [anon_sym_GT_AMP] = ACTIONS(675), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(675), + [anon_sym_LT_LT_LT] = ACTIONS(675), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(675), }, - [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), + [550] = { + [aux_sym_concatenation_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(689), + [sym__heredoc_body_beginning] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(691), + [anon_sym_LT_AMP] = ACTIONS(691), + [anon_sym_GT_AMP] = ACTIONS(691), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(691), + [anon_sym_LT_LT_LT] = ACTIONS(691), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), }, - [984] = { - [sym_file_redirect] = STATE(549), - [sym_heredoc_redirect] = STATE(549), - [sym_heredoc_body] = STATE(1417), - [sym_herestring_redirect] = STATE(549), - [aux_sym_while_statement_repeat1] = STATE(549), + [551] = { + [sym__simple_heredoc_body] = ACTIONS(689), + [sym__heredoc_body_beginning] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_esac] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(691), + [anon_sym_LT_AMP] = ACTIONS(691), + [anon_sym_GT_AMP] = ACTIONS(691), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(691), + [anon_sym_LT_LT_LT] = ACTIONS(691), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + }, + [552] = { + [sym__simple_heredoc_body] = ACTIONS(2094), + [sym__heredoc_body_beginning] = ACTIONS(2094), + [sym_file_descriptor] = ACTIONS(2094), + [anon_sym_esac] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_RPAREN] = ACTIONS(2096), + [anon_sym_SEMI_SEMI] = ACTIONS(2096), + [anon_sym_PIPE_AMP] = ACTIONS(2096), + [anon_sym_AMP_AMP] = ACTIONS(2096), + [anon_sym_PIPE_PIPE] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_GT] = ACTIONS(2096), + [anon_sym_GT_GT] = ACTIONS(2096), + [anon_sym_AMP_GT] = ACTIONS(2096), + [anon_sym_AMP_GT_GT] = ACTIONS(2096), + [anon_sym_LT_AMP] = ACTIONS(2096), + [anon_sym_GT_AMP] = ACTIONS(2096), + [anon_sym_LT_LT] = ACTIONS(2096), + [anon_sym_LT_LT_DASH] = ACTIONS(2096), + [anon_sym_LT_LT_LT] = ACTIONS(2096), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_LF] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2096), + }, + [553] = { + [aux_sym_concatenation_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(2098), + [sym__heredoc_body_beginning] = ACTIONS(2098), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_SEMI_SEMI] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(2100), + [anon_sym_PIPE_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2100), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2100), + [anon_sym_LT_AMP] = ACTIONS(2100), + [anon_sym_GT_AMP] = ACTIONS(2100), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2100), + [anon_sym_LT_LT_LT] = ACTIONS(2100), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_LF] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2100), + }, + [554] = { + [aux_sym_concatenation_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(2102), + [sym__heredoc_body_beginning] = ACTIONS(2102), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2104), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2104), + [anon_sym_LT_AMP] = ACTIONS(2104), + [anon_sym_GT_AMP] = ACTIONS(2104), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2104), + [anon_sym_LT_LT_LT] = ACTIONS(2104), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LF] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2104), + }, + [555] = { + [sym__simple_heredoc_body] = ACTIONS(2102), + [sym__heredoc_body_beginning] = ACTIONS(2102), + [sym_file_descriptor] = ACTIONS(2102), + [anon_sym_esac] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2104), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2104), + [anon_sym_LT_AMP] = ACTIONS(2104), + [anon_sym_GT_AMP] = ACTIONS(2104), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2104), + [anon_sym_LT_LT_LT] = ACTIONS(2104), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LF] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2104), + }, + [556] = { + [anon_sym_esac] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2106), + [anon_sym_SEMI_SEMI] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_PIPE_PIPE] = ACTIONS(2106), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2106), + }, + [557] = { + [sym_file_redirect] = STATE(557), + [sym_heredoc_redirect] = STATE(557), + [sym_herestring_redirect] = STATE(557), + [aux_sym_while_statement_repeat1] = STATE(557), + [sym__simple_heredoc_body] = ACTIONS(2110), + [sym__heredoc_body_beginning] = ACTIONS(2110), + [sym_file_descriptor] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_SEMI_SEMI] = ACTIONS(2115), + [anon_sym_PIPE_AMP] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_GT] = ACTIONS(2117), + [anon_sym_GT_GT] = ACTIONS(2117), + [anon_sym_AMP_GT] = ACTIONS(2117), + [anon_sym_AMP_GT_GT] = ACTIONS(2117), + [anon_sym_LT_AMP] = ACTIONS(2117), + [anon_sym_GT_AMP] = ACTIONS(2117), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_LT_LT_DASH] = ACTIONS(2120), + [anon_sym_LT_LT_LT] = ACTIONS(2123), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2115), + }, + [558] = { + [sym_file_redirect] = STATE(557), + [sym_heredoc_redirect] = STATE(557), + [sym_heredoc_body] = STATE(1004), + [sym_herestring_redirect] = STATE(557), + [aux_sym_while_statement_repeat1] = STATE(557), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), [sym_file_descriptor] = ACTIONS(341), - [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_PIPE] = ACTIONS(2106), + [anon_sym_SEMI_SEMI] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_PIPE_PIPE] = ACTIONS(2106), [anon_sym_LT] = ACTIONS(347), [anon_sym_GT] = ACTIONS(347), [anon_sym_GT_GT] = ACTIONS(347), @@ -31856,14696 +22351,287 @@ 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(3283), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3283), - }, - [985] = { - [sym__concat] = ACTIONS(3287), - [anon_sym_EQ] = ACTIONS(3289), - [anon_sym_PLUS_EQ] = ACTIONS(3289), - [sym_comment] = ACTIONS(53), - }, - [986] = { - [anon_sym_EQ] = ACTIONS(3289), - [anon_sym_PLUS_EQ] = ACTIONS(3289), - [sym_comment] = ACTIONS(53), - }, - [987] = { - [aux_sym_concatenation_repeat1] = STATE(987), - [sym__concat] = ACTIONS(2405), - [anon_sym_RBRACK] = ACTIONS(1642), - [sym_comment] = ACTIONS(53), - }, - [988] = { - [sym__concat] = ACTIONS(3291), - [anon_sym_EQ] = ACTIONS(3293), - [anon_sym_PLUS_EQ] = ACTIONS(3293), - [sym_comment] = ACTIONS(53), - }, - [989] = { - [anon_sym_EQ] = ACTIONS(3293), - [anon_sym_PLUS_EQ] = ACTIONS(3293), - [sym_comment] = ACTIONS(53), - }, - [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(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(3295), - }, - [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), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(693), - }, - [992] = { - [sym__concat] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [sym__special_characters] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(699), - [sym_raw_string] = ACTIONS(697), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(697), - }, - [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(3297), - [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), - }, - [994] = { - [sym__concat] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), - [sym__special_characters] = ACTIONS(727), - [anon_sym_DQUOTE] = ACTIONS(727), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(727), - [anon_sym_GT_LPAREN] = ACTIONS(727), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(727), - }, - [995] = { - [sym__concat] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(731), - }, - [996] = { - [sym__concat] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(735), - }, - [997] = { - [anon_sym_LBRACK] = ACTIONS(739), - [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_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(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3339), - }, - [1009] = { - [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(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(3352), - }, - [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(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LF] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - }, - [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(3374), - }, - [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(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_LF] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1734), - }, - [1015] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3376), - }, - [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(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(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), - }, - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1027] = { - [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_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(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LF] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2008), - }, - [1029] = { - [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), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [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(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_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_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] = { - [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), - [anon_sym_SEMI] = ACTIONS(3463), - [anon_sym_LF] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3463), - }, - [1045] = { - [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] = { - [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), - [sym_string_expansion] = STATE(413), - [sym_expansion] = STATE(413), - [sym_command_substitution] = STATE(413), - [sym_process_substitution] = STATE(413), - [aux_sym_expansion_repeat1] = STATE(1494), - [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(3519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1073] = { - [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_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_function] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RBRACE] = 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), - }, - [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(3527), - [anon_sym_LF] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3527), - }, - [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(629), - [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(1076), - [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_case] = ACTIONS(1016), - [anon_sym_function] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1005), - [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), - }, - [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(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(3531), - }, - [1078] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_SEMI_SEMI] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_LF] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(665), - }, - [1079] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [1080] = { - [anon_sym_esac] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [1081] = { - [aux_sym_concatenation_repeat1] = STATE(1500), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(1131), - [sym_variable_name] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [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(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), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(489), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_LF] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2235), - }, - [1083] = { - [sym_compound_statement] = STATE(1501), - [anon_sym_LBRACE] = ACTIONS(455), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [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(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(3539), - }, - [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), - }, - [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(3547), - }, - [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(3551), - }, - [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(2478), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - }, - [1090] = { - [aux_sym_concatenation_repeat1] = STATE(641), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [sym__special_characters] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1133), - [sym_word] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1133), - }, - [1091] = { - [aux_sym_concatenation_repeat1] = STATE(641), - [sym__concat] = ACTIONS(581), - [sym_variable_name] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_SEMI_SEMI] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = ACTIONS(1109), - [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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), - [sym_word] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(2334), - [anon_sym_LF] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2334), - }, - [1095] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_RPAREN] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1091), - [anon_sym_LT_AMP] = ACTIONS(1091), - [anon_sym_GT_AMP] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1091), - [anon_sym_LT_LT_LT] = ACTIONS(1091), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [1096] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym__simple_heredoc_body] = ACTIONS(1093), - [sym__heredoc_body_beginning] = ACTIONS(1093), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1095), - [anon_sym_LT_AMP] = ACTIONS(1095), - [anon_sym_GT_AMP] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1095), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - }, - [1097] = { - [aux_sym_concatenation_repeat1] = STATE(1511), - [sym__simple_heredoc_body] = ACTIONS(693), - [sym__heredoc_body_beginning] = ACTIONS(693), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [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(3553), - [anon_sym_LF] = ACTIONS(3555), - [anon_sym_AMP] = ACTIONS(3553), - }, - [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(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), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(489), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3283), - }, - [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(2127), - }, - [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(1009), - [anon_sym_RPAREN] = ACTIONS(3557), - [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), - }, - [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(1642), - }, - [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(2710), - }, - [1104] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3559), - [sym_comment] = ACTIONS(53), - }, - [1105] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3561), - [sym_comment] = ACTIONS(53), - }, - [1106] = { - [anon_sym_RBRACE] = ACTIONS(3561), - [sym_comment] = ACTIONS(53), - }, - [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(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(3567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2788), - }, - [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(3571), - }, - [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(2831), - }, - [1111] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3573), - }, - [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(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(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), - }, - [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(2839), - }, - [1114] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3577), - }, - [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(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(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), - }, - [1116] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3581), - }, - [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(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(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), - }, - [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(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(3587), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2855), - }, - [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(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(3593), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3597), - }, - [1122] = { - [aux_sym_concatenation_repeat1] = STATE(1533), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_SEMI_SEMI] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(665), - [anon_sym_LT_AMP] = ACTIONS(665), - [anon_sym_GT_AMP] = ACTIONS(665), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(665), - [anon_sym_LT_LT_LT] = ACTIONS(665), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_LF] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(665), - }, - [1123] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [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), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [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(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), - }, - [1125] = { - [aux_sym_concatenation_repeat1] = STATE(1533), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_LT_LT_LT] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [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(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), - }, - [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(1545), - [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), - }, - [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(1547), - [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), - }, - [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(1549), - [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), - }, - [1130] = { - [sym_file_descriptor] = ACTIONS(677), - [anon_sym_esac] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_LT_LT_LT] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [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(2056), - [anon_sym_LF] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2056), - }, - [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(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(2075), - }, - [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(2710), - }, - [1137] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3633), - [sym_comment] = ACTIONS(53), - }, - [1138] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3635), - [sym_comment] = ACTIONS(53), - }, - [1139] = { - [anon_sym_RBRACE] = ACTIONS(3635), - [sym_comment] = ACTIONS(53), - }, - [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(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(3641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2788), - }, - [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(3645), - }, - [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(2831), - }, - [1144] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3647), - }, - [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(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(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), - }, - [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(2839), - }, - [1147] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3651), - }, - [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(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(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), - }, - [1149] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3655), - }, - [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(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(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), - }, - [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(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(3661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2855), - }, - [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(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(3667), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2106), + }, + [559] = { + [sym_concatenation] = STATE(559), + [sym_string] = STATE(199), + [sym_simple_expansion] = STATE(199), + [sym_string_expansion] = STATE(199), + [sym_expansion] = STATE(199), + [sym_command_substitution] = STATE(199), + [sym_process_substitution] = STATE(199), + [aux_sym_command_repeat2] = STATE(559), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_SEMI_SEMI] = ACTIONS(2092), + [anon_sym_PIPE_AMP] = ACTIONS(2092), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_EQ_TILDE] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2092), + [anon_sym_LT_AMP] = ACTIONS(2092), + [anon_sym_GT_AMP] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2092), + [anon_sym_LT_LT_LT] = ACTIONS(2092), [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), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2135), + [sym_raw_string] = ACTIONS(2138), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2144), + [anon_sym_BQUOTE] = ACTIONS(2147), + [anon_sym_LT_LPAREN] = ACTIONS(2150), + [anon_sym_GT_LPAREN] = ACTIONS(2150), [sym_comment] = ACTIONS(177), - [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), + [sym_word] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_LF] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2092), }, - [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(1009), - [anon_sym_RPAREN] = ACTIONS(3669), - [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), - }, - [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), + [560] = { + [sym_file_redirect] = STATE(1005), + [sym_heredoc_redirect] = STATE(1005), + [sym_heredoc_body] = STATE(1004), + [sym_herestring_redirect] = STATE(1005), + [sym_concatenation] = STATE(559), + [sym_string] = STATE(199), + [sym_simple_expansion] = STATE(199), + [sym_string_expansion] = STATE(199), + [sym_expansion] = STATE(199), + [sym_command_substitution] = STATE(199), + [sym_process_substitution] = STATE(199), + [aux_sym_while_statement_repeat1] = STATE(1005), + [aux_sym_command_repeat2] = STATE(559), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_SEMI_SEMI] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_PIPE_PIPE] = ACTIONS(2106), + [anon_sym_EQ_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(351), + [sym__special_characters] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(357), + [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), - [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), - }, - [1157] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3671), - [sym_comment] = ACTIONS(53), - }, - [1158] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3673), - [sym_comment] = ACTIONS(53), - }, - [1159] = { - [anon_sym_RBRACE] = ACTIONS(3673), - [sym_comment] = ACTIONS(53), - }, - [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(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(3679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1192] = { - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3743), - [sym_comment] = ACTIONS(53), - }, - [1194] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3745), - [sym_comment] = ACTIONS(53), - }, - [1195] = { - [anon_sym_RBRACE] = ACTIONS(3745), - [sym_comment] = ACTIONS(53), - }, - [1196] = { - [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(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(3751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1197] = { - [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_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_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(3757), - }, - [1201] = { - [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(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(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), - }, - [1202] = { - [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(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), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3787), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3785), - [anon_sym_COLON_QMARK] = ACTIONS(3785), - [anon_sym_COLON_DASH] = ACTIONS(3785), - [anon_sym_PERCENT] = ACTIONS(3785), - [anon_sym_DASH] = ACTIONS(3785), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_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(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), - }, - [1216] = { - [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__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), - }, - [1218] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3793), - }, - [1219] = { - [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(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(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), - }, - [1220] = { - [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), - }, - [1221] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3797), - }, - [1222] = { - [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(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(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), - }, - [1223] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3801), - }, - [1224] = { - [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(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(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), - }, - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1228] = { - [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), + [sym_word] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2106), + }, + [561] = { + [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(2153), + [sym__special_characters] = ACTIONS(2155), [anon_sym_DQUOTE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1297), + [sym_raw_string] = ACTIONS(1317), [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(1297), + [sym_word] = ACTIONS(1317), }, - [1229] = { - [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), + [562] = { + [sym__concat] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2159), + [anon_sym_PLUS_EQ] = ACTIONS(2159), + [sym_comment] = ACTIONS(53), }, - [1230] = { - [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), + [563] = { + [aux_sym_concatenation_repeat1] = STATE(1008), + [sym__concat] = ACTIONS(515), + [anon_sym_RBRACK] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + }, + [564] = { + [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(2161), + [sym__special_characters] = ACTIONS(2155), [anon_sym_DQUOTE] = ACTIONS(115), [anon_sym_DOLLAR] = ACTIONS(117), - [sym_raw_string] = ACTIONS(1297), + [sym_raw_string] = ACTIONS(1317), [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(1297), + [sym_word] = ACTIONS(1317), }, - [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), + [565] = { + [sym__concat] = ACTIONS(2163), + [anon_sym_EQ] = ACTIONS(2165), + [anon_sym_PLUS_EQ] = ACTIONS(2165), + [sym_comment] = ACTIONS(53), + }, + [566] = { + [anon_sym_RBRACK] = ACTIONS(2161), + [sym_comment] = ACTIONS(53), + }, + [567] = { + [sym_file_descriptor] = ACTIONS(2167), + [sym_variable_name] = ACTIONS(2167), + [anon_sym_esac] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2169), + [anon_sym_SEMI_SEMI] = ACTIONS(2169), + [anon_sym_PIPE_AMP] = ACTIONS(2169), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_GT] = ACTIONS(2169), + [anon_sym_AMP_GT] = ACTIONS(2169), + [anon_sym_AMP_GT_GT] = ACTIONS(2169), + [anon_sym_LT_AMP] = ACTIONS(2169), + [anon_sym_GT_AMP] = ACTIONS(2169), + [sym__special_characters] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2169), + [sym_raw_string] = ACTIONS(2169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2169), + [anon_sym_BQUOTE] = ACTIONS(2169), + [anon_sym_LT_LPAREN] = ACTIONS(2169), + [anon_sym_GT_LPAREN] = ACTIONS(2169), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3825), + [sym_word] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_LF] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2169), }, - [1232] = { - [anon_sym_RBRACK] = ACTIONS(3821), + [568] = { + [aux_sym_concatenation_repeat1] = STATE(1012), + [sym__concat] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2173), + [sym__special_characters] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2175), + [sym_raw_string] = ACTIONS(2173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2173), + [anon_sym_BQUOTE] = ACTIONS(2173), + [anon_sym_LT_LPAREN] = ACTIONS(2173), + [anon_sym_GT_LPAREN] = ACTIONS(2173), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2173), }, - [1233] = { - [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(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_word] = ACTIONS(3831), - [anon_sym_SEMI] = ACTIONS(3831), - [anon_sym_LF] = ACTIONS(3829), - [anon_sym_AMP] = ACTIONS(3831), - }, - [1235] = { - [aux_sym_concatenation_repeat1] = STATE(1636), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - }, - [1236] = { - [sym__concat] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - }, - [1237] = { + [569] = { [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), + [aux_sym_string_repeat1] = STATE(1015), + [anon_sym_DQUOTE] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2179), [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), }, - [1238] = { - [sym__concat] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(727), - [sym_comment] = ACTIONS(53), - }, - [1239] = { - [sym__concat] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - }, - [1240] = { - [sym__concat] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - }, - [1241] = { - [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] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3839), - [sym_comment] = ACTIONS(53), - }, - [1243] = { - [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(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(3845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1246] = { - [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] = { - [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), - }, - [1248] = { - [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] = { - [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_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] = { - [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_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__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(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_word] = ACTIONS(1644), - }, - [1255] = { - [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(1693), - }, - [1256] = { - [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(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_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3886), - }, - [1259] = { - [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] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(3890), - [sym_comment] = ACTIONS(53), - }, - [1261] = { - [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_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(767), - }, - [1263] = { - [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__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_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3914), - }, - [1266] = { - [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(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_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(3918), - }, - [1269] = { - [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__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_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__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(1942), - }, - [1273] = { - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3926), - [sym_comment] = ACTIONS(53), - }, - [1275] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(3928), - [sym_comment] = ACTIONS(53), - }, - [1276] = { - [anon_sym_RBRACE] = ACTIONS(3928), - [sym_comment] = ACTIONS(53), - }, - [1277] = { - [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(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(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1278] = { - [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_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] = { - [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_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] = { - [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_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__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(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3964), - }, - [1285] = { - [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(767), - }, - [1286] = { - [aux_sym_concatenation_repeat1] = STATE(1683), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_AMP] = ACTIONS(693), - [sym__special_characters] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(693), - }, - [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(2211), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_LF] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3968), - }, - [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(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(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(3972), - [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), - }, - [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), - }, - [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), - }, - [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(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(3974), - [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), - }, - [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), - }, - [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(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), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(887), - [anon_sym_LT_AMP] = ACTIONS(887), - [anon_sym_GT_AMP] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [1295] = { - [anon_sym_fi] = ACTIONS(3976), - [sym_comment] = ACTIONS(53), - }, - [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(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(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(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), - [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), - }, - [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), - }, - [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(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), - }, - [1299] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3982), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3982), - [anon_sym_LF] = ACTIONS(3984), - [anon_sym_AMP] = ACTIONS(3982), - }, - [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(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), - }, - [1301] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3988), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_LF] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3988), - }, - [1302] = { - [sym_compound_statement] = STATE(1700), - [anon_sym_LBRACE] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [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(629), - [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(1076), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(3992), - [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), - }, - [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), - }, - [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(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(4000), - }, - [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), - }, - [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), - }, - [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(4002), - [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), - }, - [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), - }, - [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(4014), - }, - [1312] = { - [sym_heredoc_start] = ACTIONS(4024), - [sym_comment] = ACTIONS(53), - }, - [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(4028), - }, - [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), - }, - [1315] = { - [sym_variable_name] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [sym__special_characters] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1109), - [sym_raw_string] = ACTIONS(1107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1107), - [anon_sym_GT_LPAREN] = ACTIONS(1107), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), - [sym_word] = ACTIONS(1109), - }, - [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(1723), - [anon_sym_RPAREN] = ACTIONS(4030), - [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), - }, - [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), - [anon_sym_PIPE_AMP] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LT_LPAREN] = ACTIONS(1129), - [anon_sym_GT_LPAREN] = ACTIONS(1129), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1133), - [sym_word] = ACTIONS(1133), - }, - [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), - [anon_sym_PIPE_AMP] = ACTIONS(1107), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [sym__special_characters] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1109), - [sym_raw_string] = ACTIONS(1107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1107), - [anon_sym_GT_LPAREN] = ACTIONS(1107), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), - [sym_word] = ACTIONS(1109), - }, - [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(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] = { - [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(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), - }, - [1353] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4116), - }, - [1354] = { - [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__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__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] = { - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4118), - [sym_comment] = ACTIONS(53), - }, - [1359] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4120), - [sym_comment] = ACTIONS(53), - }, - [1360] = { - [anon_sym_RBRACE] = ACTIONS(4120), - [sym_comment] = ACTIONS(53), - }, - [1361] = { - [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(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(4126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - [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(4132), - }, - [1366] = { - [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(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(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), - }, - [1367] = { - [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), - [sym_word] = ACTIONS(2841), - }, - [1368] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4136), - }, - [1369] = { - [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(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(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), - }, - [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_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] = { - [aux_sym_concatenation_repeat1] = STATE(1380), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [sym_comment] = ACTIONS(53), - }, - [1378] = { - [aux_sym_concatenation_repeat1] = STATE(1380), - [sym__simple_heredoc_body] = ACTIONS(1093), - [sym__heredoc_body_beginning] = ACTIONS(1093), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - }, - [1379] = { - [sym__simple_heredoc_body] = ACTIONS(1093), - [sym__heredoc_body_beginning] = ACTIONS(1093), - [sym_file_descriptor] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - }, - [1380] = { - [aux_sym_concatenation_repeat1] = STATE(1777), - [sym__simple_heredoc_body] = ACTIONS(693), - [sym__heredoc_body_beginning] = ACTIONS(693), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_AMP] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(693), - [anon_sym_LT_LT_LT] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [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(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), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(887), - [anon_sym_LT_AMP] = ACTIONS(887), - [anon_sym_GT_AMP] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [sym_comment] = ACTIONS(53), - }, - [1383] = { - [aux_sym_concatenation_repeat1] = STATE(1779), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(663), - [sym_variable_name] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_AMP] = ACTIONS(693), - [sym__special_characters] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [anon_sym_LT_LPAREN] = ACTIONS(693), - [anon_sym_GT_LPAREN] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(693), - }, - [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(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), - [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(2237), - [sym_comment] = ACTIONS(53), - }, - [1385] = { - [sym_compound_statement] = STATE(1780), - [anon_sym_LBRACE] = ACTIONS(1840), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [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(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(4160), - }, - [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), - }, - [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(4168), - }, - [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(4172), - }, - [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), - }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LT_LPAREN] = ACTIONS(1129), - [anon_sym_GT_LPAREN] = ACTIONS(1129), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1133), - [sym_word] = ACTIONS(1133), - }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1107), - [sym__special_characters] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1109), - [sym_raw_string] = ACTIONS(1107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1107), - [anon_sym_GT_LPAREN] = ACTIONS(1107), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), - [sym_word] = ACTIONS(1109), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - }, - [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), - }, - [1397] = { - [aux_sym_concatenation_repeat1] = STATE(1399), - [sym__simple_heredoc_body] = ACTIONS(1089), - [sym__heredoc_body_beginning] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_comment] = ACTIONS(53), - }, - [1398] = { - [aux_sym_concatenation_repeat1] = STATE(1399), - [sym__simple_heredoc_body] = ACTIONS(1093), - [sym__heredoc_body_beginning] = ACTIONS(1093), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - }, - [1399] = { - [aux_sym_concatenation_repeat1] = STATE(1790), - [sym__simple_heredoc_body] = ACTIONS(693), - [sym__heredoc_body_beginning] = ACTIONS(693), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_AMP] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(693), - [anon_sym_LT_LT_LT] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [sym_comment] = ACTIONS(53), - }, - [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(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), - [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(3285), - [sym_comment] = ACTIONS(53), - }, - [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(3521), - [anon_sym_LF] = ACTIONS(3523), - [anon_sym_AMP] = ACTIONS(3521), - }, - [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(4178), - }, - [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), - }, - [1404] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4180), - }, - [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(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(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), - }, - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1437] = { - [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__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_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(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_LF] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2712), - }, - [1440] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4265), - [sym_comment] = ACTIONS(53), - }, - [1441] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4267), - [sym_comment] = ACTIONS(53), - }, - [1442] = { - [anon_sym_RBRACE] = ACTIONS(4267), - [sym_comment] = ACTIONS(53), - }, - [1443] = { - [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(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(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1444] = { - [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_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_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(2833), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2833), - }, - [1447] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4279), - }, - [1448] = { - [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), - [sym_word] = ACTIONS(767), - }, - [1449] = { - [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] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4283), - }, - [1451] = { - [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] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4287), - }, - [1453] = { - [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(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_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_word] = ACTIONS(767), - }, - [1457] = { - [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(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [1458] = { - [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] = { - [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), - [anon_sym_SEMI] = ACTIONS(3440), - [anon_sym_LF] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3440), - }, - [1460] = { - [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(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(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(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), - [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), - }, - [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(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(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_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), - }, - [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(4307), - [anon_sym_LF] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4307), - }, - [1463] = { - [anon_sym_fi] = ACTIONS(4311), - [sym_comment] = ACTIONS(53), - }, - [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(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(4315), - }, - [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(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(4317), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [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(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), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [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(4341), - }, - [1466] = { - [aux_sym_case_item_repeat1] = STATE(1867), - [anon_sym_PIPE] = ACTIONS(3467), - [anon_sym_RPAREN] = ACTIONS(4343), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [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(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(4317), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [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(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), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [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(4341), - }, - [1469] = { - [aux_sym_case_item_repeat1] = STATE(1867), - [anon_sym_PIPE] = ACTIONS(3467), - [anon_sym_RPAREN] = ACTIONS(4349), - [sym_comment] = ACTIONS(53), - }, - [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(4351), - [anon_sym_LF] = ACTIONS(4353), - [anon_sym_AMP] = ACTIONS(4351), - }, - [1471] = { - [anon_sym_esac] = ACTIONS(4355), - [sym_comment] = ACTIONS(53), - }, - [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(4366), - }, - [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(4381), - [anon_sym_LF] = ACTIONS(4383), - [anon_sym_AMP] = ACTIONS(4381), - }, - [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(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), - }, - [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(4385), - [anon_sym_LF] = ACTIONS(4387), - [anon_sym_AMP] = ACTIONS(4385), - }, - [1476] = { - [anon_sym_esac] = ACTIONS(4389), - [sym_comment] = ACTIONS(53), - }, - [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(4391), - [anon_sym_LF] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4391), - }, - [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(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), - }, - [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), - [sym_word] = ACTIONS(3831), - [anon_sym_SEMI] = ACTIONS(3831), - [anon_sym_LF] = ACTIONS(3829), - [anon_sym_AMP] = ACTIONS(3831), - }, - [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), - [sym_word] = ACTIONS(3837), - [anon_sym_SEMI] = ACTIONS(3837), - [anon_sym_LF] = ACTIONS(3835), - [anon_sym_AMP] = ACTIONS(3837), - }, - [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), - [sym_word] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3922), - [anon_sym_LF] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3922), - }, - [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(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(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), - }, - [1483] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4397), - [sym_comment] = ACTIONS(53), - }, - [1484] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4399), - [sym_comment] = ACTIONS(53), - }, - [1485] = { - [anon_sym_RBRACE] = ACTIONS(4399), - [sym_comment] = ACTIONS(53), - }, - [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(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(4405), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - [sym_word] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3938), - [anon_sym_LF] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3938), - }, - [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(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(4411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - [sym_word] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_LF] = ACTIONS(3946), - [anon_sym_AMP] = ACTIONS(3948), - }, - [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(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(4417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - [sym_word] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3958), - [anon_sym_LF] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3958), - }, - [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(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(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), - }, - [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), - [sym_word] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3964), - }, - [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(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(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), - }, - [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(4423), - [anon_sym_LF] = ACTIONS(4425), - [anon_sym_AMP] = ACTIONS(4423), - }, - [1496] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [1497] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - }, - [1498] = { - [anon_sym_esac] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - }, - [1499] = { - [aux_sym_concatenation_repeat1] = STATE(1892), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [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(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(3521), - [anon_sym_LF] = ACTIONS(3523), - [anon_sym_AMP] = ACTIONS(3521), - }, - [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(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(4429), - }, - [1503] = { - [aux_sym_concatenation_repeat1] = STATE(1895), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(665), - [anon_sym_SEMI_SEMI] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_LF] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(665), - }, - [1504] = { - [aux_sym_concatenation_repeat1] = STATE(1895), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [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(4433), - }, - [1506] = { - [aux_sym_concatenation_repeat1] = STATE(1898), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(665), - [anon_sym_SEMI_SEMI] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(665), - [anon_sym_LT_AMP] = ACTIONS(665), - [anon_sym_GT_AMP] = ACTIONS(665), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(665), - [anon_sym_LT_LT_LT] = ACTIONS(665), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_LF] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(665), - }, - [1507] = { - [aux_sym_concatenation_repeat1] = STATE(1898), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_LT_LT_LT] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [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(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(2075), - }, - [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(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(3337), - }, - [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(3829), - }, - [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(3835), - }, - [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(3920), - }, - [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(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(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), - }, - [1517] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4446), - [sym_comment] = ACTIONS(53), - }, - [1518] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4448), - [sym_comment] = ACTIONS(53), - }, - [1519] = { - [anon_sym_RBRACE] = ACTIONS(4448), - [sym_comment] = ACTIONS(53), - }, - [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(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(4454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3936), - }, - [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(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(4460), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3946), - }, - [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(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(4466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3956), - }, - [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(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(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), - }, - [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(3962), - }, - [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(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(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), - }, - [1529] = { - [aux_sym_concatenation_repeat1] = STATE(1533), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1091), - [anon_sym_LT_AMP] = ACTIONS(1091), - [anon_sym_GT_AMP] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1091), - [anon_sym_LT_LT_LT] = ACTIONS(1091), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [1530] = { - [aux_sym_concatenation_repeat1] = STATE(1533), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1095), - [anon_sym_LT_AMP] = ACTIONS(1095), - [anon_sym_GT_AMP] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1095), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - }, - [1531] = { - [sym_file_descriptor] = ACTIONS(1093), - [anon_sym_esac] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1095), - [anon_sym_LT_AMP] = ACTIONS(1095), - [anon_sym_GT_AMP] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1095), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - }, - [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(4472), - }, - [1533] = { - [aux_sym_concatenation_repeat1] = STATE(1911), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [1534] = { - [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), - [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), - }, - [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(4474), - [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), - }, - [1536] = { - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(729), - [anon_sym_LT_AMP] = ACTIONS(729), - [anon_sym_GT_AMP] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(729), - [anon_sym_LT_LT_DASH] = ACTIONS(729), - [anon_sym_LT_LT_LT] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - }, - [1537] = { - [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), - [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), - }, - [1538] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(737), - [anon_sym_LT_LT_LT] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [1539] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(4476), - [sym_comment] = ACTIONS(53), - }, - [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(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(4482), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1591] = { - [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(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(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(4586), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1593] = { - [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), - [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] = { - [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(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(4592), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [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(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4602), - [sym_comment] = ACTIONS(53), - }, - [1605] = { - [anon_sym_RBRACE] = ACTIONS(4602), - [sym_comment] = ACTIONS(53), - }, - [1606] = { - [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_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_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_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_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_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_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_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_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__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), - }, - [1616] = { - [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), - }, - [1617] = { - [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), - }, - [1618] = { - [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(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(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), - }, - [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] = { - [anon_sym_RBRACE] = ACTIONS(4630), - [sym_comment] = ACTIONS(53), - }, - [1622] = { - [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(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), - [anon_sym_DOLLAR] = ACTIONS(751), - [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), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1646] = { - [sym__concat] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [sym_comment] = ACTIONS(53), - }, - [1647] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4699), - }, - [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(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(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), - }, - [1649] = { - [sym__concat] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [sym_comment] = ACTIONS(53), - }, - [1650] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4703), - }, - [1651] = { - [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(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(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), - }, - [1652] = { - [sym__concat] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1940), - [sym_comment] = ACTIONS(53), - }, - [1653] = { - [sym__concat] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [sym_comment] = ACTIONS(53), - }, - [1654] = { - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4705), - [sym_comment] = ACTIONS(53), - }, - [1656] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(4707), - [sym_comment] = ACTIONS(53), - }, - [1657] = { - [anon_sym_RBRACE] = ACTIONS(4707), - [sym_comment] = ACTIONS(53), - }, - [1658] = { - [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(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(4713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1659] = { - [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(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__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_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4719), - }, - [1663] = { - [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(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(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), - }, - [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_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(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(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), - }, - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [1669] = { - [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] = { - [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] = { - [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__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(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_LF] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - }, - [1673] = { - [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__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(4751), - [anon_sym_SEMI] = ACTIONS(4751), - [anon_sym_LF] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4751), - }, - [1675] = { - [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(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(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(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), - }, - [1677] = { - [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(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(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(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), - }, - [1679] = { - [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(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(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(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), - }, - [1681] = { - [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(4773), - [anon_sym_SEMI] = ACTIONS(4773), - [anon_sym_LF] = ACTIONS(4771), - [anon_sym_AMP] = ACTIONS(4773), - }, - [1682] = { - [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(4777), - [anon_sym_SEMI] = ACTIONS(4777), - [anon_sym_LF] = ACTIONS(4775), - [anon_sym_AMP] = ACTIONS(4777), - }, - [1683] = { - [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] = { - [sym_do_group] = STATE(2023), - [anon_sym_do] = ACTIONS(2865), - [sym_comment] = ACTIONS(53), - }, - [1685] = { - [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] = { - [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(4779), - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [1690] = { - [anon_sym_fi] = ACTIONS(4781), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [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), - }, - [1693] = { - [anon_sym_esac] = ACTIONS(4783), - [sym_comment] = ACTIONS(53), - }, - [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(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), - }, - [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(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), - }, - [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), - }, - [1697] = { - [anon_sym_esac] = ACTIONS(4787), - [sym_comment] = ACTIONS(53), - }, - [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(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), - }, - [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(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), - }, - [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), - }, - [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), - }, - [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(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(4793), - }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(661), - [sym_comment] = ACTIONS(53), - }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - }, - [1705] = { - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [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(4797), - }, - [1708] = { - [aux_sym_concatenation_repeat1] = STATE(2044), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_PIPE_AMP] = ACTIONS(661), - [anon_sym_AMP_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(661), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(661), - [anon_sym_LT_AMP] = ACTIONS(661), - [anon_sym_GT_AMP] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(661), - [anon_sym_LT_LT_LT] = ACTIONS(661), - [sym_comment] = ACTIONS(53), - }, - [1709] = { - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [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), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(235), - [anon_sym_BQUOTE] = ACTIONS(237), - [sym_comment] = ACTIONS(177), - }, - [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(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), - }, - [1711] = { - [aux_sym_concatenation_repeat1] = STATE(2044), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [anon_sym_LT_LT_LT] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - }, - [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(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), - }, - [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), + [570] = { + [sym_string] = STATE(1017), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(2181), + [sym_raw_string] = ACTIONS(2183), + [anon_sym_POUND] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_AT] = ACTIONS(2181), + [anon_sym_QMARK] = ACTIONS(2181), + [anon_sym_0] = ACTIONS(2187), + [anon_sym__] = ACTIONS(2187), + }, + [571] = { + [aux_sym_concatenation_repeat1] = STATE(1012), + [sym__concat] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2189), + [sym__special_characters] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [sym_raw_string] = ACTIONS(2189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2189), + [anon_sym_BQUOTE] = ACTIONS(2189), + [anon_sym_LT_LPAREN] = ACTIONS(2189), + [anon_sym_GT_LPAREN] = ACTIONS(2189), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2189), + }, + [572] = { + [sym_subscript] = STATE(1023), + [sym_variable_name] = ACTIONS(2193), + [anon_sym_DOLLAR] = ACTIONS(2195), + [anon_sym_POUND] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2195), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2199), + [anon_sym_STAR] = ACTIONS(2195), + [anon_sym_AT] = ACTIONS(2195), + [anon_sym_QMARK] = ACTIONS(2195), + [anon_sym_0] = ACTIONS(2201), + [anon_sym__] = ACTIONS(2201), + }, + [573] = { + [sym_for_statement] = STATE(1024), + [sym_while_statement] = STATE(1024), + [sym_if_statement] = STATE(1024), + [sym_case_statement] = STATE(1024), + [sym_function_definition] = STATE(1024), + [sym_subshell] = STATE(1024), + [sym_pipeline] = STATE(1024), + [sym_list] = STATE(1024), + [sym_negated_command] = STATE(1024), + [sym_test_command] = STATE(1024), + [sym_declaration_command] = STATE(1024), + [sym_unset_command] = STATE(1024), + [sym_command] = STATE(1024), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2056), + [sym_variable_assignment] = STATE(1025), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -46593,22 +22679,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [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), + [574] = { + [sym_for_statement] = STATE(1026), + [sym_while_statement] = STATE(1026), + [sym_if_statement] = STATE(1026), + [sym_case_statement] = STATE(1026), + [sym_function_definition] = STATE(1026), + [sym_subshell] = STATE(1026), + [sym_pipeline] = STATE(1026), + [sym_list] = STATE(1026), + [sym_negated_command] = STATE(1026), + [sym_test_command] = STATE(1026), + [sym_declaration_command] = STATE(1026), + [sym_unset_command] = STATE(1026), + [sym_command] = STATE(1026), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2058), + [sym_variable_assignment] = STATE(1027), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -46656,22 +22742,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [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), + [575] = { + [sym_for_statement] = STATE(1028), + [sym_while_statement] = STATE(1028), + [sym_if_statement] = STATE(1028), + [sym_case_statement] = STATE(1028), + [sym_function_definition] = STATE(1028), + [sym_subshell] = STATE(1028), + [sym_pipeline] = STATE(1028), + [sym_list] = STATE(1028), + [sym_negated_command] = STATE(1028), + [sym_test_command] = STATE(1028), + [sym_declaration_command] = STATE(1028), + [sym_unset_command] = STATE(1028), + [sym_command] = STATE(1028), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2060), + [sym_variable_assignment] = STATE(1029), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -46719,2507 +22805,515 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [1716] = { - [sym_file_descriptor] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [anon_sym_LT_LT_LT] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), + [576] = { + [sym_concatenation] = STATE(1031), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(1031), + [anon_sym_RPAREN] = ACTIONS(2203), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1135), }, - [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), + [577] = { + [sym_string] = STATE(1032), + [sym_simple_expansion] = STATE(1032), + [sym_string_expansion] = STATE(1032), + [sym_expansion] = STATE(1032), + [sym_command_substitution] = STATE(1032), + [sym_process_substitution] = STATE(1032), + [sym__special_characters] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [sym_raw_string] = ACTIONS(2205), + [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(2205), }, - [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), + [578] = { + [aux_sym_concatenation_repeat1] = STATE(1033), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(1147), + [sym_variable_name] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, - [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), + [579] = { + [sym_file_descriptor] = ACTIONS(709), + [sym__concat] = ACTIONS(709), + [sym_variable_name] = ACTIONS(709), + [anon_sym_esac] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(711), + [anon_sym_PIPE_AMP] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(711), + [anon_sym_PIPE_PIPE] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(711), + [anon_sym_LT_AMP] = ACTIONS(711), + [anon_sym_GT_AMP] = ACTIONS(711), + [sym__special_characters] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), + [anon_sym_BQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(711), + [anon_sym_GT_LPAREN] = ACTIONS(711), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), }, - [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), + [580] = { + [anon_sym_DQUOTE] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), }, - [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(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), + [581] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2209), + [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), }, - [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), + [582] = { + [sym_file_descriptor] = ACTIONS(741), + [sym__concat] = ACTIONS(741), + [sym_variable_name] = ACTIONS(741), + [anon_sym_esac] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(743), + [anon_sym_AMP_GT] = ACTIONS(743), + [anon_sym_AMP_GT_GT] = ACTIONS(743), + [anon_sym_LT_AMP] = ACTIONS(743), + [anon_sym_GT_AMP] = ACTIONS(743), + [sym__special_characters] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), + [anon_sym_BQUOTE] = ACTIONS(743), + [anon_sym_LT_LPAREN] = ACTIONS(743), + [anon_sym_GT_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(743), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), }, - [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(1009), - [anon_sym_RPAREN] = ACTIONS(4839), - [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), - }, - [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(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), + [583] = { + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(745), + [sym_variable_name] = ACTIONS(745), + [anon_sym_esac] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_PIPE_AMP] = ACTIONS(747), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_GT] = ACTIONS(747), + [anon_sym_AMP_GT] = ACTIONS(747), + [anon_sym_AMP_GT_GT] = ACTIONS(747), + [anon_sym_LT_AMP] = ACTIONS(747), + [anon_sym_GT_AMP] = ACTIONS(747), [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [anon_sym_LT_LPAREN] = ACTIONS(747), + [anon_sym_GT_LPAREN] = ACTIONS(747), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(747), + }, + [584] = { + [sym_file_descriptor] = ACTIONS(749), + [sym__concat] = ACTIONS(749), + [sym_variable_name] = ACTIONS(749), + [anon_sym_esac] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_PIPE_AMP] = ACTIONS(751), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(751), + [anon_sym_AMP_GT] = ACTIONS(751), + [anon_sym_AMP_GT_GT] = ACTIONS(751), + [anon_sym_LT_AMP] = ACTIONS(751), + [anon_sym_GT_AMP] = ACTIONS(751), + [sym__special_characters] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(751), [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_raw_string] = ACTIONS(751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), + [anon_sym_BQUOTE] = ACTIONS(751), + [anon_sym_LT_LPAREN] = ACTIONS(751), + [anon_sym_GT_LPAREN] = ACTIONS(751), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(751), }, - [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), + [585] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2211), [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] = { + [586] = { + [sym_concatenation] = STATE(1039), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1039), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_EQ] = ACTIONS(2215), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2217), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_COLON] = ACTIONS(2215), + [anon_sym_COLON_QMARK] = ACTIONS(2215), + [anon_sym_COLON_DASH] = ACTIONS(2215), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4855), + [sym_word] = ACTIONS(781), }, - [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), + [587] = { + [sym_subscript] = STATE(1043), + [sym_variable_name] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_QMARK] = ACTIONS(2223), + [anon_sym_0] = ACTIONS(2227), + [anon_sym__] = ACTIONS(2227), + }, + [588] = { + [sym_concatenation] = STATE(1046), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1046), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_EQ] = ACTIONS(2231), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_COLON_DASH] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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] = { + [589] = { + [sym_concatenation] = STATE(1049), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1049), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_EQ] = ACTIONS(2239), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_COLON] = ACTIONS(2239), + [anon_sym_COLON_QMARK] = ACTIONS(2239), + [anon_sym_COLON_DASH] = ACTIONS(2239), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4859), + [sym_word] = ACTIONS(781), }, - [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), + [590] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [591] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [592] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_comment] = ACTIONS(53), + }, + [593] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(2245), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [594] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [595] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [596] = { + [aux_sym_concatenation_repeat1] = STATE(1052), + [sym__concat] = ACTIONS(419), + [anon_sym_SEMI_SEMI] = ACTIONS(2175), + [sym__special_characters] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2175), + [sym_raw_string] = ACTIONS(2175), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2175), + [anon_sym_BQUOTE] = ACTIONS(2175), + [anon_sym_LT_LPAREN] = ACTIONS(2175), + [anon_sym_GT_LPAREN] = ACTIONS(2175), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2175), }, - [1737] = { + [597] = { + [aux_sym_concatenation_repeat1] = STATE(1052), + [sym__concat] = ACTIONS(419), + [anon_sym_SEMI_SEMI] = ACTIONS(2191), + [sym__special_characters] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_DOLLAR] = ACTIONS(2191), + [sym_raw_string] = ACTIONS(2191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2191), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2191), + [anon_sym_BQUOTE] = ACTIONS(2191), + [anon_sym_LT_LPAREN] = ACTIONS(2191), + [anon_sym_GT_LPAREN] = ACTIONS(2191), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(4863), + [sym_word] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_LF] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2191), }, - [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), + [598] = { + [sym_concatenation] = STATE(1054), + [sym_string] = STATE(597), + [sym_simple_expansion] = STATE(597), + [sym_string_expansion] = STATE(597), + [sym_expansion] = STATE(597), + [sym_command_substitution] = STATE(597), + [sym_process_substitution] = STATE(597), + [aux_sym_for_statement_repeat1] = STATE(1054), + [anon_sym_SEMI_SEMI] = ACTIONS(2249), + [sym__special_characters] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(71), + [sym_raw_string] = ACTIONS(2255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2259), + [anon_sym_BQUOTE] = ACTIONS(2261), + [anon_sym_LT_LPAREN] = ACTIONS(2263), + [anon_sym_GT_LPAREN] = ACTIONS(2263), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2249), }, - [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] = { - [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] = { - [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] = { - [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] = { - [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] = { - [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), - [sym_word] = ACTIONS(1642), - }, - [1780] = { - [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), - }, - [1781] = { - [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(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(4943), - }, - [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), - [anon_sym_PIPE_PIPE] = ACTIONS(661), - [anon_sym_BQUOTE] = ACTIONS(661), - [sym_comment] = ACTIONS(53), - }, - [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), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - }, - [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(4947), - }, - [1785] = { - [aux_sym_concatenation_repeat1] = STATE(2110), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(661), - [anon_sym_AMP_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(661), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(661), - [anon_sym_LT_AMP] = ACTIONS(661), - [anon_sym_GT_AMP] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(661), - [anon_sym_LT_LT_LT] = ACTIONS(661), - [anon_sym_BQUOTE] = ACTIONS(661), - [sym_comment] = ACTIONS(53), - }, - [1786] = { - [aux_sym_concatenation_repeat1] = STATE(2110), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [anon_sym_LT_LT_LT] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - }, - [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(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), - }, - [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_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] = { - [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_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] = { - [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] = { - [sym__terminated_statement] = STATE(1041), + [599] = { + [sym__terminated_statement] = STATE(1056), [sym_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), @@ -49244,16 +23338,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(1041), + [aux_sym_program_repeat1] = STATE(1056), [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(2267), [anon_sym_if] = ACTIONS(15), - [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), @@ -49286,46 +23378,168 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [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), + [600] = { + [anon_sym_esac] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_SEMI_SEMI] = ACTIONS(2269), + [anon_sym_PIPE_AMP] = ACTIONS(2269), + [anon_sym_AMP_AMP] = ACTIONS(2269), + [anon_sym_PIPE_PIPE] = ACTIONS(2269), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_LF] = ACTIONS(5065), - [anon_sym_AMP] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_LF] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2269), }, - [1845] = { - [aux_sym_concatenation_repeat1] = STATE(1467), - [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), + [601] = { + [sym__simple_heredoc_body] = ACTIONS(2273), + [sym__heredoc_body_beginning] = ACTIONS(2273), + [sym_file_descriptor] = ACTIONS(2273), + [anon_sym_esac] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_RPAREN] = ACTIONS(2275), + [anon_sym_SEMI_SEMI] = ACTIONS(2275), + [anon_sym_PIPE_AMP] = ACTIONS(2275), + [anon_sym_AMP_AMP] = ACTIONS(2275), + [anon_sym_PIPE_PIPE] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_GT] = ACTIONS(2275), + [anon_sym_GT_GT] = ACTIONS(2275), + [anon_sym_AMP_GT] = ACTIONS(2275), + [anon_sym_AMP_GT_GT] = ACTIONS(2275), + [anon_sym_LT_AMP] = ACTIONS(2275), + [anon_sym_GT_AMP] = ACTIONS(2275), + [anon_sym_LT_LT] = ACTIONS(2275), + [anon_sym_LT_LT_DASH] = ACTIONS(2275), + [anon_sym_LT_LT_LT] = ACTIONS(2275), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_LF] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2275), + }, + [602] = { + [sym__terminated_statement] = STATE(1058), + [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(1058), + [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(2277), + [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), }, - [1846] = { - [aux_sym_concatenation_repeat1] = STATE(1467), - [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), + [603] = { + [anon_sym_esac] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_SEMI_SEMI] = ACTIONS(2279), + [anon_sym_PIPE_AMP] = ACTIONS(2279), + [anon_sym_AMP_AMP] = ACTIONS(2279), + [anon_sym_PIPE_PIPE] = ACTIONS(2279), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2281), + [anon_sym_AMP] = ACTIONS(2279), }, - [1847] = { - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), + [604] = { + [sym_file_redirect] = STATE(557), + [sym_heredoc_redirect] = STATE(557), + [sym_heredoc_body] = STATE(1059), + [sym_herestring_redirect] = STATE(557), + [aux_sym_while_statement_repeat1] = STATE(557), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_SEMI_SEMI] = ACTIONS(2279), + [anon_sym_PIPE_AMP] = ACTIONS(2279), + [anon_sym_AMP_AMP] = ACTIONS(2279), + [anon_sym_PIPE_PIPE] = ACTIONS(2279), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(351), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2281), + [anon_sym_AMP] = ACTIONS(2279), }, - [1848] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_PLUS_EQ] = ACTIONS(5071), - [sym_comment] = ACTIONS(53), + [605] = { + [anon_sym_esac] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_SEMI_SEMI] = ACTIONS(2283), + [anon_sym_PIPE_AMP] = ACTIONS(2283), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_LF] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2283), }, - [1849] = { - [sym__terminated_statement] = STATE(2155), + [606] = { + [sym__terminated_statement] = STATE(1060), [sym_for_statement] = STATE(39), [sym_while_statement] = STATE(39), [sym_if_statement] = STATE(39), @@ -49388,45 +23602,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [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(5077), - }, - [1851] = { - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5079), - }, - [1852] = { - [sym_subshell] = STATE(70), - [sym_test_command] = STATE(70), - [sym_command] = STATE(70), - [sym_command_name] = STATE(1861), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(71), + [607] = { + [sym__terminated_statement] = STATE(1061), + [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(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_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(1061), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(107), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(2287), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4331), + [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), @@ -49434,24 +23656,26576 @@ 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(4337), + [sym__special_characters] = ACTIONS(37), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4339), + [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(4339), + [sym_word] = ACTIONS(55), + }, + [608] = { + [anon_sym_fi] = ACTIONS(2289), + [anon_sym_elif] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [sym_comment] = ACTIONS(53), + }, + [609] = { + [anon_sym_fi] = ACTIONS(2291), + [sym_comment] = ACTIONS(53), + }, + [610] = { + [sym__terminated_statement] = STATE(1064), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(608), + [sym_else_clause] = STATE(1063), + [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(1064), + [aux_sym_if_statement_repeat1] = STATE(1065), + [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(2293), + [anon_sym_elif] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1189), + [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), + }, + [611] = { + [sym_elif_clause] = STATE(608), + [sym_else_clause] = STATE(1063), + [aux_sym_if_statement_repeat1] = STATE(1066), + [anon_sym_fi] = ACTIONS(2291), + [anon_sym_elif] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2297), + [sym_comment] = ACTIONS(53), + }, + [612] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [613] = { + [sym_case_item] = STATE(1072), + [sym_last_case_item] = STATE(1070), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1072), + [anon_sym_esac] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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(2305), + }, + [614] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2307), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_LF] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2307), + }, + [615] = { + [aux_sym_concatenation_repeat1] = STATE(615), + [sym__concat] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [616] = { + [sym__concat] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + }, + [617] = { + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [618] = { + [sym_case_item] = STATE(1077), + [sym_last_case_item] = STATE(1076), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1077), + [anon_sym_esac] = ACTIONS(2316), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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(2305), + }, + [619] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2318), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_LF] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + }, + [620] = { + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(1081), + [sym_simple_expansion] = STATE(1081), + [sym_string_expansion] = STATE(1081), + [sym_expansion] = STATE(1081), + [sym_command_substitution] = STATE(1081), + [sym_process_substitution] = STATE(1081), + [anon_sym_RBRACE] = ACTIONS(2322), + [sym__special_characters] = ACTIONS(2324), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2326), + }, + [621] = { + [sym__concat] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [sym__special_characters] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_LF] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + }, + [622] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2328), + }, + [623] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [624] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2332), + [sym_comment] = ACTIONS(53), + }, + [625] = { + [sym_concatenation] = STATE(1088), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1088), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_EQ] = ACTIONS(2336), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_COLON] = ACTIONS(2336), + [anon_sym_COLON_QMARK] = ACTIONS(2336), + [anon_sym_COLON_DASH] = ACTIONS(2336), + [anon_sym_PERCENT] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [626] = { + [sym_concatenation] = STATE(1091), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1091), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(2344), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_COLON] = ACTIONS(2344), + [anon_sym_COLON_QMARK] = ACTIONS(2344), + [anon_sym_COLON_DASH] = ACTIONS(2344), + [anon_sym_PERCENT] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [627] = { + [sym_concatenation] = STATE(1093), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1093), + [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_EQ] = ACTIONS(2350), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_COLON_QMARK] = ACTIONS(2350), + [anon_sym_COLON_DASH] = ACTIONS(2350), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [628] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [629] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2356), + }, + [630] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [631] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1842), + [anon_sym_GT_LPAREN] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [632] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2360), + }, + [633] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [634] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_in] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1982), + [sym__special_characters] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(1982), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), + }, + [635] = { + [sym__concat] = ACTIONS(2046), + [anon_sym_in] = ACTIONS(2048), + [anon_sym_SEMI_SEMI] = 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(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), + }, + [636] = { + [sym_compound_statement] = STATE(1097), + [anon_sym_LBRACE] = ACTIONS(457), + [sym_comment] = ACTIONS(53), + }, + [637] = { + [sym_file_descriptor] = ACTIONS(2362), + [anon_sym_esac] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_SEMI_SEMI] = ACTIONS(2364), + [anon_sym_PIPE_AMP] = ACTIONS(2364), + [anon_sym_AMP_AMP] = ACTIONS(2364), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_LT] = ACTIONS(2364), + [anon_sym_GT] = ACTIONS(2364), + [anon_sym_GT_GT] = ACTIONS(2364), + [anon_sym_AMP_GT] = ACTIONS(2364), + [anon_sym_AMP_GT_GT] = ACTIONS(2364), + [anon_sym_LT_AMP] = ACTIONS(2364), + [anon_sym_GT_AMP] = ACTIONS(2364), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_LF] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + }, + [638] = { + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(2366), + [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(2366), + [anon_sym_LF] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2366), + }, + [639] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(2366), + [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(2366), + [anon_sym_LF] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2366), + }, + [640] = { + [sym__terminated_statement] = STATE(1100), + [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_command_name] = STATE(27), + [sym_variable_assignment] = STATE(639), + [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(1100), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(2370), + [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), + }, + [641] = { + [anon_sym_LT] = ACTIONS(2372), + [anon_sym_GT] = ACTIONS(2372), + [anon_sym_GT_GT] = ACTIONS(2374), + [anon_sym_AMP_GT] = ACTIONS(2372), + [anon_sym_AMP_GT_GT] = ACTIONS(2374), + [anon_sym_LT_AMP] = ACTIONS(2374), + [anon_sym_GT_AMP] = ACTIONS(2374), + [sym_comment] = ACTIONS(53), + }, + [642] = { + [sym_concatenation] = STATE(1104), + [sym_string] = STATE(1103), + [sym_simple_expansion] = STATE(1103), + [sym_string_expansion] = STATE(1103), + [sym_expansion] = STATE(1103), + [sym_command_substitution] = STATE(1103), + [sym_process_substitution] = STATE(1103), + [sym__special_characters] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(189), + [sym_raw_string] = ACTIONS(2378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), + [anon_sym_BQUOTE] = ACTIONS(1551), + [anon_sym_LT_LPAREN] = ACTIONS(1553), + [anon_sym_GT_LPAREN] = ACTIONS(1553), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2378), + }, + [643] = { + [anon_sym_esac] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(2380), + [anon_sym_SEMI_SEMI] = ACTIONS(2380), + [anon_sym_PIPE_AMP] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_LF] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2380), + }, + [644] = { + [aux_sym_concatenation_repeat1] = STATE(1105), + [sym_file_descriptor] = ACTIONS(1145), + [sym__concat] = ACTIONS(1147), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_RPAREN] = ACTIONS(1149), + [anon_sym_SEMI_SEMI] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1149), + [anon_sym_PIPE_PIPE] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1149), + [anon_sym_GT_GT] = ACTIONS(1149), + [anon_sym_AMP_GT] = ACTIONS(1149), + [anon_sym_AMP_GT_GT] = ACTIONS(1149), + [anon_sym_LT_AMP] = ACTIONS(1149), + [anon_sym_GT_AMP] = ACTIONS(1149), + [sym__special_characters] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), + [anon_sym_BQUOTE] = ACTIONS(1149), + [anon_sym_LT_LPAREN] = ACTIONS(1149), + [anon_sym_GT_LPAREN] = ACTIONS(1149), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1149), + }, + [645] = { + [aux_sym_concatenation_repeat1] = STATE(1105), + [sym_file_descriptor] = ACTIONS(1123), + [sym__concat] = ACTIONS(1147), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(1125), + [anon_sym_SEMI_SEMI] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1125), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(1125), + [anon_sym_LT_AMP] = ACTIONS(1125), + [anon_sym_GT_AMP] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1125), + [anon_sym_GT_LPAREN] = ACTIONS(1125), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_LF] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + }, + [646] = { + [sym_file_redirect] = STATE(1106), + [sym_heredoc_redirect] = STATE(1106), + [sym_heredoc_body] = STATE(603), + [sym_herestring_redirect] = STATE(1106), + [aux_sym_while_statement_repeat1] = STATE(1106), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1181), + [anon_sym_SEMI_SEMI] = ACTIONS(1181), + [anon_sym_PIPE_AMP] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1181), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(491), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_LF] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1181), + }, + [647] = { + [anon_sym_RPAREN] = ACTIONS(2384), + [sym_comment] = ACTIONS(53), + }, + [648] = { + [sym_file_redirect] = STATE(643), + [sym_file_descriptor] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1253), + [anon_sym_PIPE_AMP] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [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), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1253), + }, + [649] = { + [sym_file_redirect] = STATE(1113), + [sym_heredoc_redirect] = STATE(1113), + [sym_herestring_redirect] = STATE(1113), + [aux_sym_while_statement_repeat1] = STATE(1113), + [sym_file_descriptor] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_SEMI_SEMI] = ACTIONS(1363), + [anon_sym_PIPE_AMP] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE_PIPE] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2392), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_LT_LT_DASH] = ACTIONS(1367), + [anon_sym_LT_LT_LT] = ACTIONS(2394), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1363), + }, + [650] = { + [sym_concatenation] = STATE(731), + [sym_string] = STATE(1115), + [sym_array] = STATE(731), + [sym_simple_expansion] = STATE(1115), + [sym_string_expansion] = STATE(1115), + [sym_expansion] = STATE(1115), + [sym_command_substitution] = STATE(1115), + [sym_process_substitution] = STATE(1115), + [sym__empty_value] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1453), + [sym__special_characters] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(165), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1459), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1461), + [anon_sym_BQUOTE] = ACTIONS(1463), + [anon_sym_LT_LPAREN] = ACTIONS(1465), + [anon_sym_GT_LPAREN] = ACTIONS(1465), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2398), + }, + [651] = { + [aux_sym_concatenation_repeat1] = STATE(1116), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [652] = { + [sym_variable_assignment] = STATE(652), + [sym_subscript] = STATE(262), + [sym_concatenation] = STATE(652), + [sym_string] = STATE(261), + [sym_simple_expansion] = STATE(261), + [sym_string_expansion] = STATE(261), + [sym_expansion] = STATE(261), + [sym_command_substitution] = STATE(261), + [sym_process_substitution] = STATE(261), + [aux_sym_declaration_command_repeat1] = STATE(652), + [sym_variable_name] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_SEMI_SEMI] = ACTIONS(1514), + [anon_sym_PIPE_AMP] = ACTIONS(1514), + [anon_sym_AMP_AMP] = ACTIONS(1514), + [anon_sym_PIPE_PIPE] = ACTIONS(1514), + [sym__special_characters] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1522), + [sym_raw_string] = ACTIONS(2406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_LT_LPAREN] = ACTIONS(1537), + [anon_sym_GT_LPAREN] = ACTIONS(1537), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1540), + [sym_word] = ACTIONS(2406), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_LF] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1514), + }, + [653] = { + [aux_sym_concatenation_repeat1] = STATE(1117), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [654] = { + [sym_concatenation] = STATE(654), + [sym_string] = STATE(265), + [sym_simple_expansion] = STATE(265), + [sym_string_expansion] = STATE(265), + [sym_expansion] = STATE(265), + [sym_command_substitution] = STATE(265), + [sym_process_substitution] = STATE(265), + [aux_sym_unset_command_repeat1] = STATE(654), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_SEMI_SEMI] = ACTIONS(1597), + [anon_sym_PIPE_AMP] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [sym__special_characters] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1605), + [sym_raw_string] = ACTIONS(2412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1617), + [anon_sym_LT_LPAREN] = ACTIONS(1620), + [anon_sym_GT_LPAREN] = ACTIONS(1620), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1623), + [sym_word] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_LF] = ACTIONS(1626), + [anon_sym_AMP] = ACTIONS(1597), + }, + [655] = { + [aux_sym_concatenation_repeat1] = STATE(655), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_EQ_TILDE] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [656] = { + [sym_compound_statement] = STATE(1118), + [anon_sym_LBRACE] = ACTIONS(457), + [sym_comment] = ACTIONS(53), + }, + [657] = { + [anon_sym_esac] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_SEMI_SEMI] = ACTIONS(2415), + [anon_sym_PIPE_AMP] = ACTIONS(2415), + [anon_sym_AMP_AMP] = ACTIONS(2415), + [anon_sym_PIPE_PIPE] = ACTIONS(2415), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_LF] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2415), + }, + [658] = { + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(2054), + [anon_sym_SEMI_SEMI] = ACTIONS(2054), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(2054), + [anon_sym_PIPE_PIPE] = ACTIONS(2054), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + }, + [659] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(2054), + [anon_sym_SEMI_SEMI] = ACTIONS(2054), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(2054), + [anon_sym_PIPE_PIPE] = ACTIONS(2054), + [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(2054), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + }, + [660] = { + [sym_concatenation] = STATE(1002), + [sym_string] = STATE(1120), + [sym_simple_expansion] = STATE(1120), + [sym_string_expansion] = STATE(1120), + [sym_expansion] = STATE(1120), + [sym_command_substitution] = STATE(1120), + [sym_process_substitution] = STATE(1120), + [sym__special_characters] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2421), + }, + [661] = { + [aux_sym_concatenation_repeat1] = STATE(267), + [sym__simple_heredoc_body] = ACTIONS(2086), + [sym__heredoc_body_beginning] = ACTIONS(2086), + [sym_file_descriptor] = ACTIONS(2086), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(2088), + [anon_sym_SEMI_SEMI] = ACTIONS(2088), + [anon_sym_PIPE_AMP] = ACTIONS(2088), + [anon_sym_AMP_AMP] = ACTIONS(2088), + [anon_sym_PIPE_PIPE] = ACTIONS(2088), + [anon_sym_EQ_TILDE] = ACTIONS(2088), + [anon_sym_EQ_EQ] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(2088), + [anon_sym_AMP_GT] = ACTIONS(2088), + [anon_sym_AMP_GT_GT] = ACTIONS(2088), + [anon_sym_LT_AMP] = ACTIONS(2088), + [anon_sym_GT_AMP] = ACTIONS(2088), + [anon_sym_LT_LT] = ACTIONS(2088), + [anon_sym_LT_LT_DASH] = ACTIONS(2088), + [anon_sym_LT_LT_LT] = ACTIONS(2088), + [sym__special_characters] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [anon_sym_DOLLAR] = ACTIONS(2088), + [sym_raw_string] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2088), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2088), + [anon_sym_BQUOTE] = ACTIONS(2088), + [anon_sym_LT_LPAREN] = ACTIONS(2088), + [anon_sym_GT_LPAREN] = ACTIONS(2088), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_LF] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2088), + }, + [662] = { + [aux_sym_concatenation_repeat1] = STATE(267), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_SEMI_SEMI] = ACTIONS(2092), + [anon_sym_PIPE_AMP] = ACTIONS(2092), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_EQ_TILDE] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2092), + [anon_sym_LT_AMP] = ACTIONS(2092), + [anon_sym_GT_AMP] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2092), + [anon_sym_LT_LT_LT] = ACTIONS(2092), + [sym__special_characters] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2092), + [sym_raw_string] = ACTIONS(2092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2092), + [anon_sym_BQUOTE] = ACTIONS(2092), + [anon_sym_LT_LPAREN] = ACTIONS(2092), + [anon_sym_GT_LPAREN] = ACTIONS(2092), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_LF] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2092), + }, + [663] = { + [aux_sym_concatenation_repeat1] = STATE(1121), + [sym__simple_heredoc_body] = ACTIONS(671), + [sym__heredoc_body_beginning] = ACTIONS(671), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(675), + [anon_sym_GT_AMP] = ACTIONS(675), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(675), + [anon_sym_LT_LT_LT] = ACTIONS(675), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(675), + }, + [664] = { + [aux_sym_concatenation_repeat1] = STATE(1121), + [sym__simple_heredoc_body] = ACTIONS(689), + [sym__heredoc_body_beginning] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(691), + [anon_sym_LT_AMP] = ACTIONS(691), + [anon_sym_GT_AMP] = ACTIONS(691), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(691), + [anon_sym_LT_LT_LT] = ACTIONS(691), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + }, + [665] = { + [aux_sym_concatenation_repeat1] = STATE(1121), + [sym__simple_heredoc_body] = ACTIONS(2098), + [sym__heredoc_body_beginning] = ACTIONS(2098), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2100), + [anon_sym_SEMI_SEMI] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(2100), + [anon_sym_PIPE_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2100), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2100), + [anon_sym_LT_AMP] = ACTIONS(2100), + [anon_sym_GT_AMP] = ACTIONS(2100), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2100), + [anon_sym_LT_LT_LT] = ACTIONS(2100), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_LF] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2100), + }, + [666] = { + [aux_sym_concatenation_repeat1] = STATE(1121), + [sym__simple_heredoc_body] = ACTIONS(2102), + [sym__heredoc_body_beginning] = ACTIONS(2102), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2104), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2104), + [anon_sym_LT_AMP] = ACTIONS(2104), + [anon_sym_GT_AMP] = ACTIONS(2104), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2104), + [anon_sym_LT_LT_LT] = ACTIONS(2104), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LF] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2104), + }, + [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(2110), + [sym__heredoc_body_beginning] = ACTIONS(2110), + [sym_file_descriptor] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_SEMI_SEMI] = ACTIONS(2115), + [anon_sym_PIPE_AMP] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_GT] = ACTIONS(2426), + [anon_sym_GT_GT] = ACTIONS(2426), + [anon_sym_AMP_GT] = ACTIONS(2426), + [anon_sym_AMP_GT_GT] = ACTIONS(2426), + [anon_sym_LT_AMP] = ACTIONS(2426), + [anon_sym_GT_AMP] = ACTIONS(2426), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_LT_LT_DASH] = ACTIONS(2120), + [anon_sym_LT_LT_LT] = ACTIONS(2429), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2115), + }, + [668] = { + [sym_file_redirect] = STATE(667), + [sym_heredoc_redirect] = STATE(667), + [sym_heredoc_body] = STATE(1004), + [sym_herestring_redirect] = STATE(667), + [aux_sym_while_statement_repeat1] = STATE(667), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2106), + [anon_sym_SEMI_SEMI] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_PIPE_PIPE] = ACTIONS(2106), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(491), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2106), + }, + [669] = { + [sym_concatenation] = STATE(669), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [aux_sym_command_repeat2] = STATE(669), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_SEMI_SEMI] = ACTIONS(2092), + [anon_sym_PIPE_AMP] = ACTIONS(2092), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_EQ_TILDE] = ACTIONS(2432), + [anon_sym_EQ_EQ] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2092), + [anon_sym_LT_AMP] = ACTIONS(2092), + [anon_sym_GT_AMP] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2092), + [anon_sym_LT_LT_LT] = ACTIONS(2092), + [sym__special_characters] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2135), + [sym_raw_string] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2144), + [anon_sym_BQUOTE] = ACTIONS(2147), + [anon_sym_LT_LPAREN] = ACTIONS(2150), + [anon_sym_GT_LPAREN] = ACTIONS(2150), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_LF] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2092), + }, + [670] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(969), + [sym_raw_string] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(969), + }, + [671] = { + [sym_file_redirect] = STATE(1123), + [sym_heredoc_redirect] = STATE(1123), + [sym_heredoc_body] = STATE(1004), + [sym_herestring_redirect] = STATE(1123), + [sym_concatenation] = STATE(669), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [aux_sym_while_statement_repeat1] = STATE(1123), + [aux_sym_command_repeat2] = STATE(669), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2106), + [anon_sym_SEMI_SEMI] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_PIPE_PIPE] = ACTIONS(2106), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(491), + [sym__special_characters] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(495), + [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(495), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2106), + }, + [672] = { + [sym_file_descriptor] = ACTIONS(1123), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_PIPE_AMP] = ACTIONS(1123), + [anon_sym_AMP_AMP] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(1123), + [anon_sym_LT_AMP] = ACTIONS(1123), + [anon_sym_GT_AMP] = ACTIONS(1123), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1123), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1123), + }, + [673] = { + [sym_concatenation] = STATE(1125), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(1125), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1135), + }, + [674] = { + [aux_sym_concatenation_repeat1] = STATE(378), + [sym_file_descriptor] = ACTIONS(1145), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1149), + [anon_sym_GT_GT] = ACTIONS(1145), + [anon_sym_AMP_GT] = ACTIONS(1149), + [anon_sym_AMP_GT_GT] = ACTIONS(1145), + [anon_sym_LT_AMP] = ACTIONS(1145), + [anon_sym_GT_AMP] = ACTIONS(1145), + [sym__special_characters] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), + [anon_sym_BQUOTE] = ACTIONS(1145), + [anon_sym_LT_LPAREN] = ACTIONS(1145), + [anon_sym_GT_LPAREN] = ACTIONS(1145), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1145), + }, + [675] = { + [aux_sym_concatenation_repeat1] = STATE(378), + [sym_file_descriptor] = ACTIONS(1123), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(1123), + [anon_sym_LT_AMP] = ACTIONS(1123), + [anon_sym_GT_AMP] = ACTIONS(1123), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1123), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1123), + }, + [676] = { + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_EQ_TILDE] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1311), + [anon_sym_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1309), + }, + [677] = { + [aux_sym_concatenation_repeat1] = STATE(1126), + [sym__concat] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_EQ_TILDE] = ACTIONS(705), + [anon_sym_EQ_EQ] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG_EQ] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(705), + }, + [678] = { + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_EQ_TILDE] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2445), + }, + [679] = { + [sym__expression] = STATE(729), + [sym_binary_expression] = STATE(729), + [sym_unary_expression] = STATE(729), + [sym_parenthesized_expression] = STATE(729), + [sym_concatenation] = STATE(729), + [sym_string] = STATE(288), + [sym_simple_expansion] = STATE(288), + [sym_string_expansion] = STATE(288), + [sym_expansion] = STATE(288), + [sym_command_substitution] = STATE(288), + [sym_process_substitution] = STATE(288), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(505), + [sym__special_characters] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(509), + [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(511), + [sym_test_operator] = ACTIONS(513), + }, + [680] = { + [sym__expression] = STATE(729), + [sym_binary_expression] = STATE(729), + [sym_unary_expression] = STATE(729), + [sym_parenthesized_expression] = STATE(729), + [sym_concatenation] = STATE(729), + [sym_string] = STATE(288), + [sym_simple_expansion] = STATE(288), + [sym_string_expansion] = STATE(288), + [sym_expansion] = STATE(288), + [sym_command_substitution] = STATE(288), + [sym_process_substitution] = STATE(288), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(505), + [sym__special_characters] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(511), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1441), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1445), + [anon_sym_LT_LPAREN] = ACTIONS(1447), + [anon_sym_GT_LPAREN] = ACTIONS(1447), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(511), + [sym_test_operator] = ACTIONS(505), + [sym_regex] = ACTIONS(1449), + }, + [681] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_EQ_TILDE] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1672), + }, + [682] = { + [aux_sym_concatenation_repeat1] = STATE(682), + [sym__concat] = ACTIONS(2451), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_EQ_TILDE] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1672), + }, + [683] = { + [sym__concat] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_RBRACK] = ACTIONS(1679), + [anon_sym_EQ_TILDE] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_EQ] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1679), + }, + [684] = { + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [685] = { + [sym_concatenation] = STATE(1131), + [sym_string] = STATE(1130), + [sym_simple_expansion] = STATE(1130), + [sym_string_expansion] = STATE(1130), + [sym_expansion] = STATE(1130), + [sym_command_substitution] = STATE(1130), + [sym_process_substitution] = STATE(1130), + [anon_sym_RBRACE] = ACTIONS(2456), + [sym__special_characters] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2460), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2460), + }, + [686] = { + [sym__concat] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_EQ_TILDE] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1764), + }, + [687] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2462), + }, + [688] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [689] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2466), + [sym_comment] = ACTIONS(53), + }, + [690] = { + [sym_concatenation] = STATE(1137), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1137), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_EQ] = ACTIONS(2470), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2474), + [anon_sym_COLON] = ACTIONS(2470), + [anon_sym_COLON_QMARK] = ACTIONS(2470), + [anon_sym_COLON_DASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [691] = { + [sym_concatenation] = STATE(1140), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1140), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_EQ] = ACTIONS(2478), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [692] = { + [sym_concatenation] = STATE(1142), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1142), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_EQ] = ACTIONS(2484), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_COLON] = ACTIONS(2484), + [anon_sym_COLON_QMARK] = ACTIONS(2484), + [anon_sym_COLON_DASH] = ACTIONS(2484), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [693] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_RBRACK] = ACTIONS(1832), + [anon_sym_EQ_TILDE] = ACTIONS(1832), + [anon_sym_EQ_EQ] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_BANG_EQ] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1832), + }, + [694] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2490), + }, + [695] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [696] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_EQ_TILDE] = ACTIONS(1840), + [anon_sym_EQ_EQ] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_GT] = ACTIONS(1840), + [anon_sym_BANG_EQ] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1840), + }, + [697] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2494), + }, + [698] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [699] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_RBRACK] = ACTIONS(1980), + [anon_sym_EQ_TILDE] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_BANG_EQ] = ACTIONS(1980), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1980), + }, + [700] = { + [sym__concat] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2046), + [anon_sym_PIPE_PIPE] = ACTIONS(2046), + [anon_sym_RBRACK] = ACTIONS(2046), + [anon_sym_EQ_TILDE] = ACTIONS(2046), + [anon_sym_EQ_EQ] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2046), + [anon_sym_GT] = ACTIONS(2046), + [anon_sym_BANG_EQ] = ACTIONS(2046), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2046), + }, + [701] = { + [anon_sym_AMP_AMP] = ACTIONS(2496), + [anon_sym_PIPE_PIPE] = ACTIONS(2496), + [anon_sym_RBRACK] = ACTIONS(2496), + [anon_sym_EQ_TILDE] = ACTIONS(2496), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_GT] = ACTIONS(2496), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2496), + }, + [702] = { + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_GT] = ACTIONS(2500), + [anon_sym_GT_GT] = ACTIONS(2502), + [anon_sym_AMP_GT] = ACTIONS(2500), + [anon_sym_AMP_GT_GT] = ACTIONS(2502), + [anon_sym_LT_AMP] = ACTIONS(2502), + [anon_sym_GT_AMP] = ACTIONS(2502), + [sym_comment] = ACTIONS(53), + }, + [703] = { + [sym_concatenation] = STATE(1155), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [sym__special_characters] = ACTIONS(2504), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(2510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2510), + }, + [704] = { + [sym_heredoc_start] = ACTIONS(2520), + [sym_comment] = ACTIONS(53), + }, + [705] = { + [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), + [sym__special_characters] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(2524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2524), + }, + [706] = { + [sym_file_redirect] = STATE(1160), + [sym_heredoc_redirect] = STATE(1160), + [sym_herestring_redirect] = STATE(1160), + [aux_sym_while_statement_repeat1] = STATE(1160), + [sym_file_descriptor] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_SEMI_SEMI] = ACTIONS(2526), + [anon_sym_PIPE_AMP] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1365), + [anon_sym_GT_GT] = ACTIONS(1365), + [anon_sym_AMP_GT] = ACTIONS(1365), + [anon_sym_AMP_GT_GT] = ACTIONS(1365), + [anon_sym_LT_AMP] = ACTIONS(1365), + [anon_sym_GT_AMP] = ACTIONS(1365), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_LT_LT_DASH] = ACTIONS(1367), + [anon_sym_LT_LT_LT] = ACTIONS(1369), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2526), + }, + [707] = { + [anon_sym_AMP_AMP] = ACTIONS(2496), + [anon_sym_PIPE_PIPE] = ACTIONS(2496), + [anon_sym_RBRACK] = ACTIONS(2496), + [anon_sym_EQ_TILDE] = ACTIONS(2496), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_GT] = ACTIONS(2496), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2496), + }, + [708] = { + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2445), + [anon_sym_EQ_TILDE] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2445), + }, + [709] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1672), + [anon_sym_EQ_TILDE] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1672), + }, + [710] = { + [aux_sym_concatenation_repeat1] = STATE(710), + [sym__concat] = ACTIONS(2530), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1672), + [anon_sym_EQ_TILDE] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1672), + }, + [711] = { + [sym__concat] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1679), + [anon_sym_EQ_TILDE] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1679), + [anon_sym_EQ] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1679), + }, + [712] = { + [anon_sym_DQUOTE] = ACTIONS(2533), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [713] = { + [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), + [anon_sym_RBRACE] = ACTIONS(2535), + [sym__special_characters] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2539), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2539), + }, + [714] = { + [sym__concat] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1764), + [anon_sym_EQ_TILDE] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1764), + }, + [715] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2541), + }, + [716] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [717] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2545), + [sym_comment] = ACTIONS(53), + }, + [718] = { + [sym_concatenation] = STATE(1171), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1171), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_EQ] = ACTIONS(2549), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [719] = { + [sym_concatenation] = STATE(1174), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1174), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(2557), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2561), + [anon_sym_COLON] = ACTIONS(2557), + [anon_sym_COLON_QMARK] = ACTIONS(2557), + [anon_sym_COLON_DASH] = ACTIONS(2557), + [anon_sym_PERCENT] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [720] = { + [sym_concatenation] = STATE(1176), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1176), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_EQ] = ACTIONS(2563), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_COLON] = ACTIONS(2563), + [anon_sym_COLON_QMARK] = ACTIONS(2563), + [anon_sym_COLON_DASH] = ACTIONS(2563), + [anon_sym_PERCENT] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [721] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1832), + [anon_sym_EQ_TILDE] = ACTIONS(1832), + [anon_sym_EQ_EQ] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_BANG_EQ] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1832), + }, + [722] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2569), + }, + [723] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [724] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1840), + [anon_sym_EQ_TILDE] = ACTIONS(1840), + [anon_sym_EQ_EQ] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_GT] = ACTIONS(1840), + [anon_sym_BANG_EQ] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1840), + }, + [725] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2573), + }, + [726] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [727] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1980), + [anon_sym_EQ_TILDE] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_BANG_EQ] = ACTIONS(1980), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1980), + }, + [728] = { + [sym__concat] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_RPAREN] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2046), + [anon_sym_PIPE_PIPE] = ACTIONS(2046), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2046), + [anon_sym_EQ_TILDE] = ACTIONS(2046), + [anon_sym_EQ_EQ] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2046), + [anon_sym_GT] = ACTIONS(2046), + [anon_sym_BANG_EQ] = ACTIONS(2046), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2046), + }, + [729] = { + [anon_sym_RPAREN] = ACTIONS(2496), + [anon_sym_AMP_AMP] = ACTIONS(2496), + [anon_sym_PIPE_PIPE] = ACTIONS(2496), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2496), + [anon_sym_EQ_TILDE] = ACTIONS(2496), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_GT] = ACTIONS(2496), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2496), + }, + [730] = { + [anon_sym_RPAREN] = ACTIONS(2496), + [anon_sym_AMP_AMP] = ACTIONS(2496), + [anon_sym_PIPE_PIPE] = ACTIONS(2496), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2496), + [anon_sym_EQ_TILDE] = ACTIONS(2496), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_GT] = ACTIONS(2496), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2496), + }, + [731] = { + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(1125), + [anon_sym_SEMI_SEMI] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1125), + [anon_sym_GT_LPAREN] = ACTIONS(1125), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_LF] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + }, + [732] = { + [sym_concatenation] = STATE(1181), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(1181), + [anon_sym_RPAREN] = ACTIONS(2575), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1135), + }, + [733] = { + [aux_sym_concatenation_repeat1] = STATE(338), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_SEMI_SEMI] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1149), + [anon_sym_PIPE_PIPE] = ACTIONS(1149), + [sym__special_characters] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), + [anon_sym_BQUOTE] = ACTIONS(1149), + [anon_sym_LT_LPAREN] = ACTIONS(1149), + [anon_sym_GT_LPAREN] = ACTIONS(1149), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), + [sym_word] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1149), + }, + [734] = { + [aux_sym_concatenation_repeat1] = STATE(338), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_SEMI_SEMI] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1125), + [anon_sym_GT_LPAREN] = ACTIONS(1125), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_LF] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + }, + [735] = { + [sym__concat] = ACTIONS(1672), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [736] = { + [aux_sym_concatenation_repeat1] = STATE(736), + [sym__concat] = ACTIONS(2577), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [737] = { + [sym__concat] = ACTIONS(1679), + [sym_variable_name] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + }, + [738] = { + [anon_sym_DQUOTE] = ACTIONS(2580), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [739] = { + [sym_concatenation] = STATE(1186), + [sym_string] = STATE(1185), + [sym_simple_expansion] = STATE(1185), + [sym_string_expansion] = STATE(1185), + [sym_expansion] = STATE(1185), + [sym_command_substitution] = STATE(1185), + [sym_process_substitution] = STATE(1185), + [anon_sym_RBRACE] = ACTIONS(2582), + [sym__special_characters] = ACTIONS(2584), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2586), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2586), + }, + [740] = { + [sym__concat] = ACTIONS(1764), + [sym_variable_name] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [sym__special_characters] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), + [sym_word] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_LF] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + }, + [741] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2588), + }, + [742] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [743] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2592), + [sym_comment] = ACTIONS(53), + }, + [744] = { + [sym_concatenation] = STATE(1192), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1192), + [anon_sym_RBRACE] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2600), + [anon_sym_COLON] = ACTIONS(2596), + [anon_sym_COLON_QMARK] = ACTIONS(2596), + [anon_sym_COLON_DASH] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [745] = { + [sym_concatenation] = STATE(1195), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1195), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_EQ] = ACTIONS(2604), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2608), + [anon_sym_COLON] = ACTIONS(2604), + [anon_sym_COLON_QMARK] = ACTIONS(2604), + [anon_sym_COLON_DASH] = ACTIONS(2604), + [anon_sym_PERCENT] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [746] = { + [sym_concatenation] = STATE(1197), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1197), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_EQ] = ACTIONS(2610), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2612), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2614), + [anon_sym_COLON] = ACTIONS(2610), + [anon_sym_COLON_QMARK] = ACTIONS(2610), + [anon_sym_COLON_DASH] = ACTIONS(2610), + [anon_sym_PERCENT] = ACTIONS(2610), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [747] = { + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [748] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2616), + }, + [749] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [750] = { + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1842), + [anon_sym_PIPE_AMP] = ACTIONS(1842), + [anon_sym_AMP_AMP] = ACTIONS(1842), + [anon_sym_PIPE_PIPE] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1842), + [anon_sym_GT_LPAREN] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [751] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2620), + }, + [752] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [753] = { + [sym__concat] = ACTIONS(1980), + [sym_variable_name] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1982), + [anon_sym_PIPE_AMP] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_PIPE_PIPE] = ACTIONS(1982), + [sym__special_characters] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(1982), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), + [sym_word] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), + }, + [754] = { + [sym__concat] = ACTIONS(2046), + [sym_variable_name] = ACTIONS(2046), + [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), + [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), + [sym_word] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), + }, + [755] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [756] = { + [aux_sym_concatenation_repeat1] = STATE(756), + [sym__concat] = ACTIONS(2622), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [757] = { + [sym__concat] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + }, + [758] = { + [anon_sym_DQUOTE] = ACTIONS(2625), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [759] = { + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(1204), + [sym_simple_expansion] = STATE(1204), + [sym_string_expansion] = STATE(1204), + [sym_expansion] = STATE(1204), + [sym_command_substitution] = STATE(1204), + [sym_process_substitution] = STATE(1204), + [anon_sym_RBRACE] = ACTIONS(2627), + [sym__special_characters] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2631), + }, + [760] = { + [sym__concat] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [sym__special_characters] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), + [sym_word] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_LF] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + }, + [761] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2633), + }, + [762] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [763] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2637), + [sym_comment] = ACTIONS(53), + }, + [764] = { + [sym_concatenation] = STATE(1211), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1211), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2641), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2643), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_COLON] = ACTIONS(2641), + [anon_sym_COLON_QMARK] = ACTIONS(2641), + [anon_sym_COLON_DASH] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [765] = { + [sym_concatenation] = STATE(1214), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1214), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2649), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_COLON] = ACTIONS(2649), + [anon_sym_COLON_QMARK] = ACTIONS(2649), + [anon_sym_COLON_DASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [766] = { + [sym_concatenation] = STATE(1216), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1216), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2655), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_COLON] = ACTIONS(2655), + [anon_sym_COLON_QMARK] = ACTIONS(2655), + [anon_sym_COLON_DASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [767] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [768] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2661), + }, + [769] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [770] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1842), + [anon_sym_PIPE_AMP] = ACTIONS(1842), + [anon_sym_AMP_AMP] = ACTIONS(1842), + [anon_sym_PIPE_PIPE] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1842), + [anon_sym_GT_LPAREN] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [771] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2665), + }, + [772] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [773] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1982), + [anon_sym_PIPE_AMP] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_PIPE_PIPE] = ACTIONS(1982), + [sym__special_characters] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(1982), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), + [sym_word] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), + }, + [774] = { + [sym__concat] = ACTIONS(2046), + [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), + [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), + [sym_word] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), + }, + [775] = { + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1672), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1672), + }, + [776] = { + [aux_sym_concatenation_repeat1] = STATE(776), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(2667), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1672), + }, + [777] = { + [sym_file_descriptor] = ACTIONS(1679), + [sym__concat] = ACTIONS(1679), + [sym_variable_name] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1679), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_AMP_GT_GT] = ACTIONS(1679), + [anon_sym_LT_AMP] = ACTIONS(1679), + [anon_sym_GT_AMP] = ACTIONS(1679), + [sym__special_characters] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [anon_sym_LT_LPAREN] = ACTIONS(1679), + [anon_sym_GT_LPAREN] = ACTIONS(1679), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1679), + }, + [778] = { + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [779] = { + [sym_concatenation] = STATE(1224), + [sym_string] = STATE(1223), + [sym_simple_expansion] = STATE(1223), + [sym_string_expansion] = STATE(1223), + [sym_expansion] = STATE(1223), + [sym_command_substitution] = STATE(1223), + [sym_process_substitution] = STATE(1223), + [anon_sym_RBRACE] = ACTIONS(2672), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2676), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2676), + }, + [780] = { + [sym_file_descriptor] = ACTIONS(1764), + [sym__concat] = ACTIONS(1764), + [sym_variable_name] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_PIPE_AMP] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1764), + [anon_sym_AMP_GT] = ACTIONS(1766), + [anon_sym_AMP_GT_GT] = ACTIONS(1764), + [anon_sym_LT_AMP] = ACTIONS(1764), + [anon_sym_GT_AMP] = ACTIONS(1764), + [sym__special_characters] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1764), + [anon_sym_LT_LPAREN] = ACTIONS(1764), + [anon_sym_GT_LPAREN] = ACTIONS(1764), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1764), + }, + [781] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2678), + }, + [782] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [783] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2682), + [sym_comment] = ACTIONS(53), + }, + [784] = { + [sym_concatenation] = STATE(1230), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1230), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_EQ] = ACTIONS(2686), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [785] = { + [sym_concatenation] = STATE(1233), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1233), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2694), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2698), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_COLON_QMARK] = ACTIONS(2694), + [anon_sym_COLON_DASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [786] = { + [sym_concatenation] = STATE(1235), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1235), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2700), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2700), + [anon_sym_COLON_QMARK] = ACTIONS(2700), + [anon_sym_COLON_DASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [787] = { + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1832), + }, + [788] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2706), + }, + [789] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [790] = { + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1840), + }, + [791] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2710), + }, + [792] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [793] = { + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(1980), + [sym_variable_name] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1980), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1980), + [anon_sym_LT_AMP] = ACTIONS(1980), + [anon_sym_GT_AMP] = ACTIONS(1980), + [sym__special_characters] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1980), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [anon_sym_LT_LPAREN] = ACTIONS(1980), + [anon_sym_GT_LPAREN] = ACTIONS(1980), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1980), + }, + [794] = { + [sym_file_descriptor] = ACTIONS(2046), + [sym__concat] = ACTIONS(2046), + [sym_variable_name] = ACTIONS(2046), + [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_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), + [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(2046), + }, + [795] = { + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2712), + [sym__string_content] = ACTIONS(2714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [sym_comment] = ACTIONS(177), + }, + [796] = { + [sym_concatenation] = STATE(1242), + [sym_string] = STATE(1241), + [sym_simple_expansion] = STATE(1241), + [sym_string_expansion] = STATE(1241), + [sym_expansion] = STATE(1241), + [sym_command_substitution] = STATE(1241), + [sym_process_substitution] = STATE(1241), + [anon_sym_RBRACE] = ACTIONS(2716), + [sym__special_characters] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2720), + }, + [797] = { + [sym__concat] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym__string_content] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(177), + }, + [798] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2722), + }, + [799] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [800] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2726), + [sym_comment] = ACTIONS(53), + }, + [801] = { + [sym_concatenation] = STATE(1248), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1248), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2730), + [anon_sym_COLON_QMARK] = ACTIONS(2730), + [anon_sym_COLON_DASH] = ACTIONS(2730), + [anon_sym_PERCENT] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [802] = { + [sym_concatenation] = STATE(1251), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1251), + [anon_sym_RBRACE] = ACTIONS(2736), + [anon_sym_EQ] = ACTIONS(2738), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2742), + [anon_sym_COLON] = ACTIONS(2738), + [anon_sym_COLON_QMARK] = ACTIONS(2738), + [anon_sym_COLON_DASH] = ACTIONS(2738), + [anon_sym_PERCENT] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [803] = { + [sym_concatenation] = STATE(1253), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1253), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2744), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_COLON] = ACTIONS(2744), + [anon_sym_COLON_QMARK] = ACTIONS(2744), + [anon_sym_COLON_DASH] = ACTIONS(2744), + [anon_sym_PERCENT] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [804] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym__string_content] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [sym_comment] = ACTIONS(177), + }, + [805] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2750), + }, + [806] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [807] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym__string_content] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + }, + [808] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2754), + }, + [809] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [810] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym__string_content] = ACTIONS(1980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(1982), + [sym_comment] = ACTIONS(177), + }, + [811] = { + [sym__simple_heredoc_body] = ACTIONS(2756), + [sym__heredoc_body_beginning] = ACTIONS(2756), + [sym_file_descriptor] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [anon_sym_esac] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_EQ_TILDE] = ACTIONS(2758), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_GT] = ACTIONS(2758), + [anon_sym_AMP_GT_GT] = ACTIONS(2758), + [anon_sym_LT_AMP] = ACTIONS(2758), + [anon_sym_GT_AMP] = ACTIONS(2758), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_LT_LT_DASH] = ACTIONS(2758), + [anon_sym_LT_LT_LT] = ACTIONS(2758), + [sym__special_characters] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), + }, + [812] = { + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [813] = { + [aux_sym_concatenation_repeat1] = STATE(563), + [sym__concat] = ACTIONS(2760), + [anon_sym_RBRACK] = ACTIONS(2762), + [sym_comment] = ACTIONS(53), + }, + [814] = { + [aux_sym_concatenation_repeat1] = STATE(563), + [sym__concat] = ACTIONS(2764), + [anon_sym_RBRACK] = ACTIONS(2766), + [sym_comment] = ACTIONS(53), + }, + [815] = { + [sym__concat] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2766), + [sym_comment] = ACTIONS(53), + }, + [816] = { + [sym__simple_heredoc_body] = ACTIONS(2770), + [sym__heredoc_body_beginning] = ACTIONS(2770), + [sym_file_descriptor] = ACTIONS(2770), + [sym__concat] = ACTIONS(2770), + [anon_sym_esac] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_SEMI_SEMI] = ACTIONS(2772), + [anon_sym_PIPE_AMP] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [anon_sym_EQ_TILDE] = ACTIONS(2772), + [anon_sym_EQ_EQ] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_GT_GT] = ACTIONS(2772), + [anon_sym_AMP_GT] = ACTIONS(2772), + [anon_sym_AMP_GT_GT] = ACTIONS(2772), + [anon_sym_LT_AMP] = ACTIONS(2772), + [anon_sym_GT_AMP] = ACTIONS(2772), + [anon_sym_LT_LT] = ACTIONS(2772), + [anon_sym_LT_LT_DASH] = ACTIONS(2772), + [anon_sym_LT_LT_LT] = ACTIONS(2772), + [sym__special_characters] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), + [anon_sym_BQUOTE] = ACTIONS(2772), + [anon_sym_LT_LPAREN] = ACTIONS(2772), + [anon_sym_GT_LPAREN] = ACTIONS(2772), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), + }, + [817] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2776), + [sym_comment] = ACTIONS(53), + }, + [818] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(1267), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), + [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), + }, + [819] = { + [sym_string] = STATE(1269), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(2782), + [sym_raw_string] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_0] = ACTIONS(2788), + [anon_sym__] = ACTIONS(2788), + }, + [820] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2790), + [sym_comment] = ACTIONS(53), + }, + [821] = { + [sym_subscript] = STATE(1276), + [sym_variable_name] = ACTIONS(2792), + [anon_sym_DOLLAR] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2794), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(2794), + [anon_sym_0] = ACTIONS(2800), + [anon_sym__] = ACTIONS(2800), + }, + [822] = { + [sym_for_statement] = STATE(1277), + [sym_while_statement] = STATE(1277), + [sym_if_statement] = STATE(1277), + [sym_case_statement] = STATE(1277), + [sym_function_definition] = STATE(1277), + [sym_subshell] = STATE(1277), + [sym_pipeline] = STATE(1277), + [sym_list] = STATE(1277), + [sym_negated_command] = STATE(1277), + [sym_test_command] = STATE(1277), + [sym_declaration_command] = STATE(1277), + [sym_unset_command] = STATE(1277), + [sym_command] = STATE(1277), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(1278), + [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), + }, + [823] = { + [sym_for_statement] = STATE(1279), + [sym_while_statement] = STATE(1279), + [sym_if_statement] = STATE(1279), + [sym_case_statement] = STATE(1279), + [sym_function_definition] = STATE(1279), + [sym_subshell] = STATE(1279), + [sym_pipeline] = STATE(1279), + [sym_list] = STATE(1279), + [sym_negated_command] = STATE(1279), + [sym_test_command] = STATE(1279), + [sym_declaration_command] = STATE(1279), + [sym_unset_command] = STATE(1279), + [sym_command] = STATE(1279), + [sym_command_name] = STATE(181), + [sym_variable_assignment] = STATE(1280), + [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), + }, + [824] = { + [sym_for_statement] = STATE(1281), + [sym_while_statement] = STATE(1281), + [sym_if_statement] = STATE(1281), + [sym_case_statement] = STATE(1281), + [sym_function_definition] = STATE(1281), + [sym_subshell] = STATE(1281), + [sym_pipeline] = STATE(1281), + [sym_list] = STATE(1281), + [sym_negated_command] = STATE(1281), + [sym_test_command] = STATE(1281), + [sym_declaration_command] = STATE(1281), + [sym_unset_command] = STATE(1281), + [sym_command] = STATE(1281), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(1282), + [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), + }, + [825] = { + [anon_sym_RBRACE] = ACTIONS(2790), + [sym_comment] = ACTIONS(53), + }, + [826] = { + [sym_string] = STATE(1283), + [sym_simple_expansion] = STATE(1283), + [sym_string_expansion] = STATE(1283), + [sym_expansion] = STATE(1283), + [sym_command_substitution] = STATE(1283), + [sym_process_substitution] = STATE(1283), + [sym__special_characters] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(2802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2802), + }, + [827] = { + [aux_sym_concatenation_repeat1] = STATE(1284), + [sym__concat] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(707), + [anon_sym_COLON_QMARK] = ACTIONS(707), + [anon_sym_COLON_DASH] = ACTIONS(707), + [anon_sym_PERCENT] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(707), + }, + [828] = { + [sym__concat] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(711), + [sym__special_characters] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(709), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), + [anon_sym_COLON] = ACTIONS(711), + [anon_sym_COLON_QMARK] = ACTIONS(711), + [anon_sym_COLON_DASH] = ACTIONS(711), + [anon_sym_PERCENT] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LT_LPAREN] = ACTIONS(709), + [anon_sym_GT_LPAREN] = ACTIONS(709), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(711), + }, + [829] = { + [anon_sym_DQUOTE] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [830] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [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), + }, + [831] = { + [sym__concat] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(743), + [sym__special_characters] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(743), + [anon_sym_COLON_QMARK] = ACTIONS(743), + [anon_sym_COLON_DASH] = ACTIONS(743), + [anon_sym_PERCENT] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), + [anon_sym_LT_LPAREN] = ACTIONS(741), + [anon_sym_GT_LPAREN] = ACTIONS(741), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(743), + }, + [832] = { + [sym__concat] = ACTIONS(745), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(747), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), + [anon_sym_COLON] = ACTIONS(747), + [anon_sym_COLON_QMARK] = ACTIONS(747), + [anon_sym_COLON_DASH] = ACTIONS(747), + [anon_sym_PERCENT] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(745), + [anon_sym_LT_LPAREN] = ACTIONS(745), + [anon_sym_GT_LPAREN] = ACTIONS(745), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(747), + }, + [833] = { + [sym__concat] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_EQ] = ACTIONS(751), + [sym__special_characters] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(751), + [anon_sym_COLON_QMARK] = ACTIONS(751), + [anon_sym_COLON_DASH] = ACTIONS(751), + [anon_sym_PERCENT] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), + [anon_sym_BQUOTE] = ACTIONS(749), + [anon_sym_LT_LPAREN] = ACTIONS(749), + [anon_sym_GT_LPAREN] = ACTIONS(749), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(751), + }, + [834] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2808), + [sym_comment] = ACTIONS(53), + }, + [835] = { + [sym_concatenation] = STATE(1290), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1290), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_EQ] = ACTIONS(2812), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2816), + [anon_sym_COLON] = ACTIONS(2812), + [anon_sym_COLON_QMARK] = ACTIONS(2812), + [anon_sym_COLON_DASH] = ACTIONS(2812), + [anon_sym_PERCENT] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [836] = { + [sym_subscript] = STATE(1294), + [sym_variable_name] = ACTIONS(2818), + [anon_sym_DOLLAR] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_QMARK] = ACTIONS(2820), + [anon_sym_0] = ACTIONS(2824), + [anon_sym__] = ACTIONS(2824), + }, + [837] = { + [sym_concatenation] = STATE(1297), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1297), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_EQ] = ACTIONS(2828), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_COLON] = ACTIONS(2828), + [anon_sym_COLON_QMARK] = ACTIONS(2828), + [anon_sym_COLON_DASH] = ACTIONS(2828), + [anon_sym_PERCENT] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [838] = { + [sym_concatenation] = STATE(1300), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1300), + [anon_sym_RBRACE] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(2836), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(2840), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [839] = { + [sym_concatenation] = STATE(1302), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1302), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_EQ] = ACTIONS(2844), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(2844), + [anon_sym_COLON_QMARK] = ACTIONS(2844), + [anon_sym_COLON_DASH] = ACTIONS(2844), + [anon_sym_PERCENT] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [840] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [841] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [842] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(2848), + [sym_comment] = ACTIONS(53), + }, + [843] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(2848), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [844] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2850), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [845] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2850), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [846] = { + [sym__simple_heredoc_body] = ACTIONS(2852), + [sym__heredoc_body_beginning] = ACTIONS(2852), + [sym_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [anon_sym_esac] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [anon_sym_PIPE_AMP] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_EQ_TILDE] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_GT] = ACTIONS(2854), + [anon_sym_AMP_GT_GT] = ACTIONS(2854), + [anon_sym_LT_AMP] = ACTIONS(2854), + [anon_sym_GT_AMP] = ACTIONS(2854), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_LT_LT_DASH] = ACTIONS(2854), + [anon_sym_LT_LT_LT] = ACTIONS(2854), + [sym__special_characters] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), + [anon_sym_BQUOTE] = ACTIONS(2854), + [anon_sym_LT_LPAREN] = ACTIONS(2854), + [anon_sym_GT_LPAREN] = ACTIONS(2854), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + }, + [847] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [sym__special_characters] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_DOLLAR] = ACTIONS(2867), + [sym_raw_string] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(2873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), + [anon_sym_COLON] = ACTIONS(2858), + [anon_sym_COLON_QMARK] = ACTIONS(2858), + [anon_sym_COLON_DASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2879), + [anon_sym_BQUOTE] = ACTIONS(2882), + [anon_sym_LT_LPAREN] = ACTIONS(2885), + [anon_sym_GT_LPAREN] = ACTIONS(2885), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2888), + }, + [848] = { + [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(2790), + [sym__special_characters] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2893), + }, + [849] = { + [sym__simple_heredoc_body] = ACTIONS(2895), + [sym__heredoc_body_beginning] = ACTIONS(2895), + [sym_file_descriptor] = ACTIONS(2895), + [sym__concat] = ACTIONS(2895), + [anon_sym_esac] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = 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(2897), + [anon_sym_EQ_EQ] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_GT] = ACTIONS(2897), + [anon_sym_GT_GT] = ACTIONS(2897), + [anon_sym_AMP_GT] = ACTIONS(2897), + [anon_sym_AMP_GT_GT] = ACTIONS(2897), + [anon_sym_LT_AMP] = ACTIONS(2897), + [anon_sym_GT_AMP] = ACTIONS(2897), + [anon_sym_LT_LT] = ACTIONS(2897), + [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(2897), + [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(177), + [sym_word] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2897), + }, + [850] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2899), + }, + [851] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [852] = { + [sym__simple_heredoc_body] = ACTIONS(2903), + [sym__heredoc_body_beginning] = ACTIONS(2903), + [sym_file_descriptor] = ACTIONS(2903), + [sym__concat] = ACTIONS(2903), + [anon_sym_esac] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_EQ_TILDE] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2905), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2905), + [anon_sym_LT_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT_LT] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), + }, + [853] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2907), + }, + [854] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [855] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(2911), + }, + [856] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [857] = { + [sym_concatenation] = STATE(1314), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1314), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_EQ] = ACTIONS(2915), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(2915), + [anon_sym_COLON_QMARK] = ACTIONS(2915), + [anon_sym_COLON_DASH] = ACTIONS(2915), + [anon_sym_PERCENT] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [858] = { + [sym__simple_heredoc_body] = ACTIONS(2919), + [sym__heredoc_body_beginning] = ACTIONS(2919), + [sym_file_descriptor] = ACTIONS(2919), + [sym__concat] = ACTIONS(2919), + [anon_sym_esac] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2921), + [anon_sym_SEMI_SEMI] = ACTIONS(2921), + [anon_sym_PIPE_AMP] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [anon_sym_EQ_TILDE] = ACTIONS(2921), + [anon_sym_EQ_EQ] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_AMP_GT] = ACTIONS(2921), + [anon_sym_AMP_GT_GT] = ACTIONS(2921), + [anon_sym_LT_AMP] = ACTIONS(2921), + [anon_sym_GT_AMP] = ACTIONS(2921), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_LT_LT_DASH] = ACTIONS(2921), + [anon_sym_LT_LT_LT] = ACTIONS(2921), + [sym__special_characters] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2921), + [anon_sym_GT_LPAREN] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + }, + [859] = { + [sym_concatenation] = STATE(1316), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1316), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_EQ] = ACTIONS(2925), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(2925), + [anon_sym_COLON_QMARK] = ACTIONS(2925), + [anon_sym_COLON_DASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [860] = { + [aux_sym_concatenation_repeat1] = STATE(1317), + [sym_file_descriptor] = ACTIONS(1145), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_RPAREN] = ACTIONS(1145), + [anon_sym_PIPE_AMP] = ACTIONS(1145), + [anon_sym_AMP_AMP] = ACTIONS(1145), + [anon_sym_PIPE_PIPE] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1149), + [anon_sym_GT_GT] = ACTIONS(1145), + [anon_sym_AMP_GT] = ACTIONS(1149), + [anon_sym_AMP_GT_GT] = ACTIONS(1145), + [anon_sym_LT_AMP] = ACTIONS(1145), + [anon_sym_GT_AMP] = ACTIONS(1145), + [sym__special_characters] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), + [anon_sym_BQUOTE] = ACTIONS(1145), + [anon_sym_LT_LPAREN] = ACTIONS(1145), + [anon_sym_GT_LPAREN] = ACTIONS(1145), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1145), + }, + [861] = { + [aux_sym_concatenation_repeat1] = STATE(1317), + [sym_file_descriptor] = ACTIONS(1123), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_PIPE_AMP] = ACTIONS(1123), + [anon_sym_AMP_AMP] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(1123), + [anon_sym_LT_AMP] = ACTIONS(1123), + [anon_sym_GT_AMP] = ACTIONS(1123), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1123), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1123), + }, + [862] = { + [sym_concatenation] = STATE(1318), + [sym_string] = STATE(597), + [sym_simple_expansion] = STATE(597), + [sym_string_expansion] = STATE(597), + [sym_expansion] = STATE(597), + [sym_command_substitution] = STATE(597), + [sym_process_substitution] = STATE(597), + [aux_sym_for_statement_repeat1] = STATE(1318), + [sym__special_characters] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(71), + [sym_raw_string] = ACTIONS(1175), + [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(1175), + }, + [863] = { + [sym_do_group] = STATE(1320), + [anon_sym_do] = ACTIONS(2929), + [sym_comment] = ACTIONS(53), + }, + [864] = { + [sym__terminated_statement] = STATE(1322), + [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(1322), + [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(2931), + [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), + }, + [865] = { + [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), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_PIPE_AMP] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(903), + [anon_sym_LT_AMP] = ACTIONS(903), + [anon_sym_GT_AMP] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym_comment] = ACTIONS(53), + }, + [866] = { + [sym__terminated_statement] = STATE(1327), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(608), + [sym_else_clause] = STATE(1326), + [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(1327), + [aux_sym_if_statement_repeat1] = STATE(1328), + [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(2933), + [anon_sym_elif] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1189), + [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), + }, + [867] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2935), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym_LF] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2935), + }, + [868] = { + [anon_sym_in] = ACTIONS(2939), + [sym_comment] = ACTIONS(53), + }, + [869] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2941), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym_LF] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2941), + }, + [870] = { + [anon_sym_in] = ACTIONS(2945), + [sym_comment] = ACTIONS(53), + }, + [871] = { + [anon_sym_RPAREN] = ACTIONS(2947), + [sym_comment] = ACTIONS(53), + }, + [872] = { + [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), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(639), + [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(1335), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(2949), + [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), + }, + [873] = { + [sym_file_redirect] = STATE(1338), + [sym_file_descriptor] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_GT_GT] = ACTIONS(2955), + [anon_sym_AMP_GT] = ACTIONS(2953), + [anon_sym_AMP_GT_GT] = ACTIONS(2955), + [anon_sym_LT_AMP] = ACTIONS(2955), + [anon_sym_GT_AMP] = ACTIONS(2955), + [sym_comment] = ACTIONS(53), + }, + [874] = { + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_PIPE_AMP] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_BQUOTE] = ACTIONS(1273), + [sym_comment] = ACTIONS(53), + }, + [875] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(969), + [sym_raw_string] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(969), + }, + [876] = { + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_SEMI_SEMI] = ACTIONS(2961), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + }, + [877] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_SEMI_SEMI] = ACTIONS(2961), + [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [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(2961), + [anon_sym_LF] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + }, + [878] = { + [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(2965), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2969), + [anon_sym_AMP_GT] = ACTIONS(2967), + [anon_sym_AMP_GT_GT] = ACTIONS(2969), + [anon_sym_LT_AMP] = ACTIONS(2969), + [anon_sym_GT_AMP] = ACTIONS(2969), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_LT_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT_LT] = ACTIONS(2975), + [sym_comment] = ACTIONS(53), + }, + [879] = { + [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(2977), + [anon_sym_LPAREN] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(2983), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), + [anon_sym_BQUOTE] = ACTIONS(831), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2983), + }, + [880] = { + [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(2985), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), + [anon_sym_BQUOTE] = ACTIONS(831), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2985), + }, + [881] = { + [aux_sym_concatenation_repeat1] = STATE(1351), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + }, + [882] = { + [sym__concat] = ACTIONS(709), + [sym_variable_name] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_PIPE_AMP] = ACTIONS(709), + [anon_sym_AMP_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(709), + [sym__special_characters] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LT_LPAREN] = ACTIONS(709), + [anon_sym_GT_LPAREN] = ACTIONS(709), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + }, + [883] = { + [anon_sym_DQUOTE] = ACTIONS(2987), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [884] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(2987), + [anon_sym_DOLLAR] = ACTIONS(2989), + [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), + }, + [885] = { + [sym__concat] = ACTIONS(741), + [sym_variable_name] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_PIPE_AMP] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [sym__special_characters] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), + [anon_sym_LT_LPAREN] = ACTIONS(741), + [anon_sym_GT_LPAREN] = ACTIONS(741), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), + [sym_word] = ACTIONS(743), + }, + [886] = { + [sym__concat] = ACTIONS(745), + [sym_variable_name] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [sym__special_characters] = ACTIONS(745), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(745), + [anon_sym_LT_LPAREN] = ACTIONS(745), + [anon_sym_GT_LPAREN] = ACTIONS(745), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [sym_word] = ACTIONS(747), + }, + [887] = { + [sym__concat] = ACTIONS(749), + [sym_variable_name] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_PIPE_AMP] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [sym__special_characters] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), + [anon_sym_BQUOTE] = ACTIONS(749), + [anon_sym_LT_LPAREN] = ACTIONS(749), + [anon_sym_GT_LPAREN] = ACTIONS(749), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), + [sym_word] = ACTIONS(751), + }, + [888] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(2991), + [sym_comment] = ACTIONS(53), + }, + [889] = { + [sym_concatenation] = STATE(1357), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1357), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(2997), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [890] = { + [sym_subscript] = STATE(1361), + [sym_variable_name] = ACTIONS(3001), + [anon_sym_DOLLAR] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3003), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_AT] = ACTIONS(3003), + [anon_sym_QMARK] = ACTIONS(3003), + [anon_sym_0] = ACTIONS(3007), + [anon_sym__] = ACTIONS(3007), + }, + [891] = { + [sym_concatenation] = STATE(1364), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1364), + [anon_sym_RBRACE] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3013), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3015), + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_COLON_QMARK] = ACTIONS(3011), + [anon_sym_COLON_DASH] = ACTIONS(3011), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [892] = { + [sym_concatenation] = STATE(1367), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1367), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_EQ] = ACTIONS(3019), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_COLON] = ACTIONS(3019), + [anon_sym_COLON_QMARK] = ACTIONS(3019), + [anon_sym_COLON_DASH] = ACTIONS(3019), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [893] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3025), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [894] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3025), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3025), + [sym_comment] = ACTIONS(53), + }, + [896] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(3025), + [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(885), + [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [898] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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_variable_assignment] = STATE(899), + [sym_subscript] = STATE(461), + [sym_concatenation] = STATE(899), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_declaration_command_repeat1] = STATE(899), + [sym_variable_name] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_PIPE_AMP] = ACTIONS(1543), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [sym__special_characters] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3044), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3047), + [anon_sym_BQUOTE] = ACTIONS(3050), + [anon_sym_LT_LPAREN] = ACTIONS(3053), + [anon_sym_GT_LPAREN] = ACTIONS(3053), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(3059), + }, + [900] = { + [sym_string] = STATE(1370), + [sym_simple_expansion] = STATE(1370), + [sym_string_expansion] = STATE(1370), + [sym_expansion] = STATE(1370), + [sym_command_substitution] = STATE(1370), + [sym_process_substitution] = STATE(1370), + [sym__special_characters] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym_raw_string] = ACTIONS(3062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(851), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3062), + }, + [901] = { + [aux_sym_concatenation_repeat1] = STATE(1371), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + }, + [902] = { + [sym__concat] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_PIPE_AMP] = ACTIONS(709), + [anon_sym_AMP_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(709), + [sym__special_characters] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LT_LPAREN] = ACTIONS(709), + [anon_sym_GT_LPAREN] = ACTIONS(709), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + }, + [903] = { + [anon_sym_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [904] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3066), + [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), + }, + [905] = { + [sym__concat] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_PIPE_AMP] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [sym__special_characters] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), + [anon_sym_LT_LPAREN] = ACTIONS(741), + [anon_sym_GT_LPAREN] = ACTIONS(741), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), + [sym_word] = ACTIONS(743), + }, + [906] = { + [sym__concat] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [sym__special_characters] = ACTIONS(745), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(745), + [anon_sym_LT_LPAREN] = ACTIONS(745), + [anon_sym_GT_LPAREN] = ACTIONS(745), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [sym_word] = ACTIONS(747), + }, + [907] = { + [sym__concat] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_PIPE_AMP] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [sym__special_characters] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), + [anon_sym_BQUOTE] = ACTIONS(749), + [anon_sym_LT_LPAREN] = ACTIONS(749), + [anon_sym_GT_LPAREN] = ACTIONS(749), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), + [sym_word] = ACTIONS(751), + }, + [908] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(3068), + [sym_comment] = ACTIONS(53), + }, + [909] = { + [sym_concatenation] = STATE(1377), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1377), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_EQ] = ACTIONS(3072), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3076), + [anon_sym_COLON] = ACTIONS(3072), + [anon_sym_COLON_QMARK] = ACTIONS(3072), + [anon_sym_COLON_DASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [910] = { + [sym_subscript] = STATE(1381), + [sym_variable_name] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_AT] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3080), + [anon_sym_0] = ACTIONS(3084), + [anon_sym__] = ACTIONS(3084), + }, + [911] = { + [sym_concatenation] = STATE(1384), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1384), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_EQ] = ACTIONS(3088), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3092), + [anon_sym_COLON] = ACTIONS(3088), + [anon_sym_COLON_QMARK] = ACTIONS(3088), + [anon_sym_COLON_DASH] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [912] = { + [sym_concatenation] = STATE(1387), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1387), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_EQ] = ACTIONS(3096), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_DASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [913] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [914] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [915] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_comment] = ACTIONS(53), + }, + [916] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(3102), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [917] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [918] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [919] = { + [sym_concatenation] = STATE(919), + [sym_string] = STATE(466), + [sym_simple_expansion] = STATE(466), + [sym_string_expansion] = STATE(466), + [sym_expansion] = STATE(466), + [sym_command_substitution] = STATE(466), + [sym_process_substitution] = STATE(466), + [aux_sym_unset_command_repeat1] = STATE(919), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1626), + [anon_sym_PIPE_AMP] = ACTIONS(1626), + [anon_sym_AMP_AMP] = ACTIONS(1626), + [anon_sym_PIPE_PIPE] = ACTIONS(1626), + [sym__special_characters] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3112), + [sym_raw_string] = ACTIONS(3115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3124), + [anon_sym_LT_LPAREN] = ACTIONS(3127), + [anon_sym_GT_LPAREN] = ACTIONS(3127), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3130), + [sym_word] = ACTIONS(3133), + }, + [920] = { + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_EQ_TILDE] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1672), + [anon_sym_LT_LT_LT] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1674), + }, + [921] = { + [aux_sym_concatenation_repeat1] = STATE(921), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(3136), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_EQ_TILDE] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1672), + [anon_sym_LT_LT_LT] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1674), + }, + [922] = { + [sym__simple_heredoc_body] = ACTIONS(1679), + [sym__heredoc_body_beginning] = ACTIONS(1679), + [sym_file_descriptor] = ACTIONS(1679), + [sym__concat] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_EQ_TILDE] = ACTIONS(1681), + [anon_sym_EQ_EQ] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1679), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_AMP_GT_GT] = ACTIONS(1679), + [anon_sym_LT_AMP] = ACTIONS(1679), + [anon_sym_GT_AMP] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1679), + [anon_sym_LT_LT_LT] = ACTIONS(1679), + [sym__special_characters] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [anon_sym_LT_LPAREN] = ACTIONS(1679), + [anon_sym_GT_LPAREN] = ACTIONS(1679), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1681), + }, + [923] = { + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [924] = { + [sym_concatenation] = STATE(1394), + [sym_string] = STATE(1393), + [sym_simple_expansion] = STATE(1393), + [sym_string_expansion] = STATE(1393), + [sym_expansion] = STATE(1393), + [sym_command_substitution] = STATE(1393), + [sym_process_substitution] = STATE(1393), + [anon_sym_RBRACE] = ACTIONS(3141), + [sym__special_characters] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3145), + }, + [925] = { + [sym__simple_heredoc_body] = ACTIONS(1764), + [sym__heredoc_body_beginning] = ACTIONS(1764), + [sym_file_descriptor] = ACTIONS(1764), + [sym__concat] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_PIPE_AMP] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_EQ_TILDE] = ACTIONS(1766), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1764), + [anon_sym_AMP_GT] = ACTIONS(1766), + [anon_sym_AMP_GT_GT] = ACTIONS(1764), + [anon_sym_LT_AMP] = ACTIONS(1764), + [anon_sym_GT_AMP] = ACTIONS(1764), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LT_LT_DASH] = ACTIONS(1764), + [anon_sym_LT_LT_LT] = ACTIONS(1764), + [sym__special_characters] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1764), + [anon_sym_LT_LPAREN] = ACTIONS(1764), + [anon_sym_GT_LPAREN] = ACTIONS(1764), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1766), + }, + [926] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3147), + }, + [927] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [928] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(3151), + [sym_comment] = ACTIONS(53), + }, + [929] = { + [sym_concatenation] = STATE(1400), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1400), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(3155), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_COLON_DASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [930] = { + [sym_concatenation] = STATE(1403), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1403), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_EQ] = ACTIONS(3163), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3165), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_COLON_DASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [931] = { + [sym_concatenation] = STATE(1405), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1405), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_EQ] = ACTIONS(3169), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3169), + [anon_sym_COLON_QMARK] = ACTIONS(3169), + [anon_sym_COLON_DASH] = ACTIONS(3169), + [anon_sym_PERCENT] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [932] = { + [sym__simple_heredoc_body] = ACTIONS(1832), + [sym__heredoc_body_beginning] = ACTIONS(1832), + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_EQ_TILDE] = ACTIONS(1834), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [anon_sym_LT_LT] = ACTIONS(1834), + [anon_sym_LT_LT_DASH] = ACTIONS(1832), + [anon_sym_LT_LT_LT] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1834), + }, + [933] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3175), + }, + [934] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [935] = { + [sym__simple_heredoc_body] = ACTIONS(1840), + [sym__heredoc_body_beginning] = ACTIONS(1840), + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_EQ_TILDE] = ACTIONS(1842), + [anon_sym_EQ_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [anon_sym_LT_LT] = ACTIONS(1842), + [anon_sym_LT_LT_DASH] = ACTIONS(1840), + [anon_sym_LT_LT_LT] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1842), + }, + [936] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3179), + }, + [937] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [938] = { + [sym__simple_heredoc_body] = ACTIONS(1980), + [sym__heredoc_body_beginning] = ACTIONS(1980), + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_EQ_TILDE] = ACTIONS(1982), + [anon_sym_EQ_EQ] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1980), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1980), + [anon_sym_LT_AMP] = ACTIONS(1980), + [anon_sym_GT_AMP] = ACTIONS(1980), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1980), + [anon_sym_LT_LT_LT] = ACTIONS(1980), + [sym__special_characters] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1980), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [anon_sym_LT_LPAREN] = ACTIONS(1980), + [anon_sym_GT_LPAREN] = ACTIONS(1980), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1982), + }, + [939] = { + [sym__simple_heredoc_body] = ACTIONS(2046), + [sym__heredoc_body_beginning] = ACTIONS(2046), + [sym_file_descriptor] = ACTIONS(2046), + [sym__concat] = ACTIONS(2046), + [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(2048), + }, + [940] = { + [sym_compound_statement] = STATE(1409), + [anon_sym_LBRACE] = ACTIONS(1874), + [sym_comment] = ACTIONS(53), + }, + [941] = { + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_BQUOTE] = ACTIONS(2052), + [sym_comment] = ACTIONS(53), + }, + [942] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [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), + }, + [943] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [sym_comment] = ACTIONS(53), + }, + [944] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [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), + }, + [945] = { + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_PIPE_AMP] = ACTIONS(2060), + [anon_sym_AMP_AMP] = ACTIONS(2060), + [anon_sym_PIPE_PIPE] = ACTIONS(2060), + [anon_sym_BQUOTE] = ACTIONS(2060), + [sym_comment] = ACTIONS(53), + }, + [946] = { + [sym_simple_expansion] = STATE(999), + [sym_expansion] = STATE(999), + [aux_sym_heredoc_body_repeat1] = STATE(999), + [sym__heredoc_body_middle] = ACTIONS(2078), + [sym__heredoc_body_end] = ACTIONS(3181), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + }, + [947] = { + [sym_concatenation] = STATE(1413), + [sym_string] = STATE(1412), + [sym_simple_expansion] = STATE(1412), + [sym_string_expansion] = STATE(1412), + [sym_expansion] = STATE(1412), + [sym_command_substitution] = STATE(1412), + [sym_process_substitution] = STATE(1412), + [sym__special_characters] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(3185), + [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(3185), + }, + [948] = { + [aux_sym_concatenation_repeat1] = STATE(474), + [sym__simple_heredoc_body] = ACTIONS(2086), + [sym__heredoc_body_beginning] = ACTIONS(2086), + [sym_file_descriptor] = ACTIONS(2086), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(2086), + [anon_sym_PIPE_AMP] = ACTIONS(2086), + [anon_sym_AMP_AMP] = ACTIONS(2086), + [anon_sym_PIPE_PIPE] = ACTIONS(2086), + [anon_sym_EQ_TILDE] = ACTIONS(2088), + [anon_sym_EQ_EQ] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(2086), + [anon_sym_AMP_GT] = ACTIONS(2088), + [anon_sym_AMP_GT_GT] = ACTIONS(2086), + [anon_sym_LT_AMP] = ACTIONS(2086), + [anon_sym_GT_AMP] = ACTIONS(2086), + [anon_sym_LT_LT] = ACTIONS(2088), + [anon_sym_LT_LT_DASH] = ACTIONS(2086), + [anon_sym_LT_LT_LT] = ACTIONS(2086), + [sym__special_characters] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2088), + [sym_raw_string] = ACTIONS(2086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2086), + [anon_sym_BQUOTE] = ACTIONS(2086), + [anon_sym_LT_LPAREN] = ACTIONS(2086), + [anon_sym_GT_LPAREN] = ACTIONS(2086), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2088), + }, + [949] = { + [aux_sym_concatenation_repeat1] = STATE(474), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_PIPE_AMP] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [anon_sym_EQ_TILDE] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2090), + [anon_sym_LT_AMP] = ACTIONS(2090), + [anon_sym_GT_AMP] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2090), + [anon_sym_LT_LT_LT] = ACTIONS(2090), + [sym__special_characters] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2092), + [sym_raw_string] = ACTIONS(2090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2090), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2090), + [anon_sym_BQUOTE] = ACTIONS(2090), + [anon_sym_LT_LPAREN] = ACTIONS(2090), + [anon_sym_GT_LPAREN] = ACTIONS(2090), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2092), + }, + [950] = { + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_PIPE_AMP] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [anon_sym_EQ_TILDE] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2090), + [anon_sym_LT_AMP] = ACTIONS(2090), + [anon_sym_GT_AMP] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2090), + [anon_sym_LT_LT_LT] = ACTIONS(2090), + [sym__special_characters] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2092), + [sym_raw_string] = ACTIONS(2090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2090), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2090), + [anon_sym_BQUOTE] = ACTIONS(2090), + [anon_sym_LT_LPAREN] = ACTIONS(2090), + [anon_sym_GT_LPAREN] = ACTIONS(2090), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2092), + }, + [951] = { + [aux_sym_concatenation_repeat1] = STATE(1414), + [sym__simple_heredoc_body] = ACTIONS(671), + [sym__heredoc_body_beginning] = ACTIONS(671), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(671), + [anon_sym_PIPE_AMP] = ACTIONS(671), + [anon_sym_AMP_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(671), + [anon_sym_LT_AMP] = ACTIONS(671), + [anon_sym_GT_AMP] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(671), + [anon_sym_LT_LT_LT] = ACTIONS(671), + [sym_comment] = ACTIONS(53), + }, + [952] = { + [aux_sym_concatenation_repeat1] = STATE(1414), + [sym__simple_heredoc_body] = ACTIONS(689), + [sym__heredoc_body_beginning] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [anon_sym_LT_LT_LT] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + }, + [953] = { + [sym__simple_heredoc_body] = ACTIONS(689), + [sym__heredoc_body_beginning] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [anon_sym_LT_LT_LT] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + }, + [954] = { + [sym__simple_heredoc_body] = ACTIONS(2094), + [sym__heredoc_body_beginning] = ACTIONS(2094), + [sym_file_descriptor] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_RPAREN] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(2094), + [anon_sym_AMP_AMP] = ACTIONS(2094), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_GT] = ACTIONS(2096), + [anon_sym_GT_GT] = ACTIONS(2094), + [anon_sym_AMP_GT] = ACTIONS(2096), + [anon_sym_AMP_GT_GT] = ACTIONS(2094), + [anon_sym_LT_AMP] = ACTIONS(2094), + [anon_sym_GT_AMP] = ACTIONS(2094), + [anon_sym_LT_LT] = ACTIONS(2096), + [anon_sym_LT_LT_DASH] = ACTIONS(2094), + [anon_sym_LT_LT_LT] = ACTIONS(2094), + [anon_sym_BQUOTE] = ACTIONS(2094), + [sym_comment] = ACTIONS(53), + }, + [955] = { + [aux_sym_concatenation_repeat1] = STATE(1414), + [sym__simple_heredoc_body] = ACTIONS(2098), + [sym__heredoc_body_beginning] = ACTIONS(2098), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_PIPE_AMP] = ACTIONS(2098), + [anon_sym_AMP_AMP] = ACTIONS(2098), + [anon_sym_PIPE_PIPE] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2098), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2098), + [anon_sym_LT_AMP] = ACTIONS(2098), + [anon_sym_GT_AMP] = ACTIONS(2098), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2098), + [anon_sym_LT_LT_LT] = ACTIONS(2098), + [sym_comment] = ACTIONS(53), + }, + [956] = { + [aux_sym_concatenation_repeat1] = STATE(1414), + [sym__simple_heredoc_body] = ACTIONS(2102), + [sym__heredoc_body_beginning] = ACTIONS(2102), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_PIPE_AMP] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2102), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2102), + [anon_sym_LT_AMP] = ACTIONS(2102), + [anon_sym_GT_AMP] = ACTIONS(2102), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2102), + [anon_sym_LT_LT_LT] = ACTIONS(2102), + [sym_comment] = ACTIONS(53), + }, + [957] = { + [sym__simple_heredoc_body] = ACTIONS(2102), + [sym__heredoc_body_beginning] = ACTIONS(2102), + [sym_file_descriptor] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_PIPE_AMP] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2102), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2102), + [anon_sym_LT_AMP] = ACTIONS(2102), + [anon_sym_GT_AMP] = ACTIONS(2102), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2102), + [anon_sym_LT_LT_LT] = ACTIONS(2102), + [anon_sym_BQUOTE] = ACTIONS(2102), + [sym_comment] = ACTIONS(53), + }, + [958] = { + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_PIPE_AMP] = ACTIONS(2108), + [anon_sym_AMP_AMP] = ACTIONS(2108), + [anon_sym_PIPE_PIPE] = ACTIONS(2108), + [anon_sym_BQUOTE] = ACTIONS(2108), + [sym_comment] = ACTIONS(53), + }, + [959] = { + [sym_file_redirect] = STATE(959), + [sym_heredoc_redirect] = STATE(959), + [sym_herestring_redirect] = STATE(959), + [aux_sym_while_statement_repeat1] = STATE(959), + [sym__simple_heredoc_body] = ACTIONS(2110), + [sym__heredoc_body_beginning] = ACTIONS(2110), + [sym_file_descriptor] = ACTIONS(3187), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(2110), + [anon_sym_PIPE_AMP] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_PIPE_PIPE] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_GT_GT] = ACTIONS(3193), + [anon_sym_AMP_GT] = ACTIONS(3190), + [anon_sym_AMP_GT_GT] = ACTIONS(3193), + [anon_sym_LT_AMP] = ACTIONS(3193), + [anon_sym_GT_AMP] = ACTIONS(3193), + [anon_sym_LT_LT] = ACTIONS(3196), + [anon_sym_LT_LT_DASH] = ACTIONS(3199), + [anon_sym_LT_LT_LT] = ACTIONS(3202), + [sym_comment] = ACTIONS(53), + }, + [960] = { + [sym_file_redirect] = STATE(959), + [sym_heredoc_redirect] = STATE(959), + [sym_heredoc_body] = STATE(1415), + [sym_herestring_redirect] = STATE(959), + [aux_sym_while_statement_repeat1] = STATE(959), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_PIPE_AMP] = ACTIONS(2108), + [anon_sym_AMP_AMP] = ACTIONS(2108), + [anon_sym_PIPE_PIPE] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(903), + [anon_sym_LT_AMP] = ACTIONS(903), + [anon_sym_GT_AMP] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym_comment] = ACTIONS(53), + }, + [961] = { + [sym_concatenation] = STATE(961), + [sym_string] = STATE(504), + [sym_simple_expansion] = STATE(504), + [sym_string_expansion] = STATE(504), + [sym_expansion] = STATE(504), + [sym_command_substitution] = STATE(504), + [sym_process_substitution] = STATE(504), + [aux_sym_command_repeat2] = STATE(961), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_PIPE_AMP] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [anon_sym_EQ_TILDE] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2090), + [anon_sym_LT_AMP] = ACTIONS(2090), + [anon_sym_GT_AMP] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2090), + [anon_sym_LT_LT_LT] = ACTIONS(2090), + [sym__special_characters] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_DOLLAR] = ACTIONS(3214), + [sym_raw_string] = ACTIONS(3217), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3226), + [anon_sym_LT_LPAREN] = ACTIONS(3229), + [anon_sym_GT_LPAREN] = ACTIONS(3229), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3232), + }, + [962] = { + [sym_file_redirect] = STATE(1416), + [sym_heredoc_redirect] = STATE(1416), + [sym_heredoc_body] = STATE(1415), + [sym_herestring_redirect] = STATE(1416), + [sym_concatenation] = STATE(961), + [sym_string] = STATE(504), + [sym_simple_expansion] = STATE(504), + [sym_string_expansion] = STATE(504), + [sym_expansion] = STATE(504), + [sym_command_substitution] = STATE(504), + [sym_process_substitution] = STATE(504), + [aux_sym_while_statement_repeat1] = STATE(1416), + [aux_sym_command_repeat2] = STATE(961), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_PIPE_AMP] = ACTIONS(2108), + [anon_sym_AMP_AMP] = ACTIONS(2108), + [anon_sym_PIPE_PIPE] = ACTIONS(2108), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(903), + [anon_sym_LT_AMP] = ACTIONS(903), + [anon_sym_GT_AMP] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym__special_characters] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(913), + [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(915), + }, + [963] = { + [aux_sym_concatenation_repeat1] = STATE(1417), + [sym_file_descriptor] = ACTIONS(1145), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(1145), + [anon_sym_AMP_AMP] = ACTIONS(1145), + [anon_sym_PIPE_PIPE] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1149), + [anon_sym_GT_GT] = ACTIONS(1145), + [anon_sym_AMP_GT] = ACTIONS(1149), + [anon_sym_AMP_GT_GT] = ACTIONS(1145), + [anon_sym_LT_AMP] = ACTIONS(1145), + [anon_sym_GT_AMP] = ACTIONS(1145), + [sym__special_characters] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), + [anon_sym_BQUOTE] = ACTIONS(1145), + [anon_sym_LT_LPAREN] = ACTIONS(1145), + [anon_sym_GT_LPAREN] = ACTIONS(1145), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1145), + }, + [964] = { + [aux_sym_concatenation_repeat1] = STATE(1417), + [sym_file_descriptor] = ACTIONS(1123), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1123), + [anon_sym_AMP_AMP] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(1123), + [anon_sym_LT_AMP] = ACTIONS(1123), + [anon_sym_GT_AMP] = ACTIONS(1123), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1123), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1123), + }, + [965] = { + [sym_file_redirect] = STATE(1418), + [sym_heredoc_redirect] = STATE(1418), + [sym_heredoc_body] = STATE(1323), + [sym_herestring_redirect] = STATE(1418), + [aux_sym_while_statement_repeat1] = STATE(1418), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(1181), + [anon_sym_PIPE_AMP] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(1183), + [sym_comment] = ACTIONS(53), + }, + [966] = { + [anon_sym_RPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(53), + }, + [967] = { + [sym_file_redirect] = STATE(1338), + [sym_file_descriptor] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_PIPE_AMP] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_GT] = ACTIONS(3239), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_AMP_GT] = ACTIONS(3239), + [anon_sym_AMP_GT_GT] = ACTIONS(3241), + [anon_sym_LT_AMP] = ACTIONS(3241), + [anon_sym_GT_AMP] = ACTIONS(3241), + [anon_sym_BQUOTE] = ACTIONS(1257), + [sym_comment] = ACTIONS(53), + }, + [968] = { + [sym_file_redirect] = STATE(1425), + [sym_heredoc_redirect] = STATE(1425), + [sym_herestring_redirect] = STATE(1425), + [aux_sym_while_statement_repeat1] = STATE(1425), + [sym_file_descriptor] = ACTIONS(3243), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_PIPE_AMP] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3247), + [anon_sym_AMP_GT] = ACTIONS(3245), + [anon_sym_AMP_GT_GT] = ACTIONS(3247), + [anon_sym_LT_AMP] = ACTIONS(3247), + [anon_sym_GT_AMP] = ACTIONS(3247), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_LT_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT_LT] = ACTIONS(3249), + [anon_sym_BQUOTE] = ACTIONS(1371), + [sym_comment] = ACTIONS(53), + }, + [969] = { + [sym_concatenation] = STATE(1346), + [sym_string] = STATE(1427), + [sym_array] = STATE(1346), + [sym_simple_expansion] = STATE(1427), + [sym_string_expansion] = STATE(1427), + [sym_expansion] = STATE(1427), + [sym_command_substitution] = STATE(1427), + [sym_process_substitution] = STATE(1427), + [sym__empty_value] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(3251), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(3253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), + [anon_sym_BQUOTE] = ACTIONS(831), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3253), + }, + [970] = { + [aux_sym_concatenation_repeat1] = STATE(1428), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + }, + [971] = { + [sym_variable_assignment] = STATE(971), + [sym_subscript] = STATE(517), + [sym_concatenation] = STATE(971), + [sym_string] = STATE(516), + [sym_simple_expansion] = STATE(516), + [sym_string_expansion] = STATE(516), + [sym_expansion] = STATE(516), + [sym_command_substitution] = STATE(516), + [sym_process_substitution] = STATE(516), + [aux_sym_declaration_command_repeat1] = STATE(971), + [sym_variable_name] = ACTIONS(3255), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_PIPE_AMP] = ACTIONS(1543), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [sym__special_characters] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3044), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3047), + [anon_sym_BQUOTE] = ACTIONS(3050), + [anon_sym_LT_LPAREN] = ACTIONS(3053), + [anon_sym_GT_LPAREN] = ACTIONS(3053), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), + [sym_word] = ACTIONS(3264), + }, + [972] = { + [aux_sym_concatenation_repeat1] = STATE(1429), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + }, + [973] = { + [sym_concatenation] = STATE(973), + [sym_string] = STATE(520), + [sym_simple_expansion] = STATE(520), + [sym_string_expansion] = STATE(520), + [sym_expansion] = STATE(520), + [sym_command_substitution] = STATE(520), + [sym_process_substitution] = STATE(520), + [aux_sym_unset_command_repeat1] = STATE(973), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_PIPE_AMP] = ACTIONS(1626), + [anon_sym_AMP_AMP] = ACTIONS(1626), + [anon_sym_PIPE_PIPE] = ACTIONS(1626), + [sym__special_characters] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3112), + [sym_raw_string] = ACTIONS(3270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3124), + [anon_sym_LT_LPAREN] = ACTIONS(3127), + [anon_sym_GT_LPAREN] = ACTIONS(3127), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3130), + [sym_word] = ACTIONS(3273), + }, + [974] = { + [aux_sym_concatenation_repeat1] = STATE(974), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(3136), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_EQ_TILDE] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1672), + [anon_sym_LT_LT_LT] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1674), + }, + [975] = { + [sym_compound_statement] = STATE(1430), + [anon_sym_LBRACE] = ACTIONS(1874), + [sym_comment] = ACTIONS(53), + }, + [976] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_PIPE_AMP] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [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(2052), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [977] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [anon_sym_BQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(53), + }, + [978] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [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), + }, + [979] = { + [sym_concatenation] = STATE(1413), + [sym_string] = STATE(1432), + [sym_simple_expansion] = STATE(1432), + [sym_string_expansion] = STATE(1432), + [sym_expansion] = STATE(1432), + [sym_command_substitution] = STATE(1432), + [sym_process_substitution] = STATE(1432), + [sym__special_characters] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(3278), + [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(3278), + }, + [980] = { + [aux_sym_concatenation_repeat1] = STATE(522), + [sym__simple_heredoc_body] = ACTIONS(2086), + [sym__heredoc_body_beginning] = ACTIONS(2086), + [sym_file_descriptor] = ACTIONS(2086), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_PIPE_AMP] = ACTIONS(2086), + [anon_sym_AMP_AMP] = ACTIONS(2086), + [anon_sym_PIPE_PIPE] = ACTIONS(2086), + [anon_sym_EQ_TILDE] = ACTIONS(2088), + [anon_sym_EQ_EQ] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(2086), + [anon_sym_AMP_GT] = ACTIONS(2088), + [anon_sym_AMP_GT_GT] = ACTIONS(2086), + [anon_sym_LT_AMP] = ACTIONS(2086), + [anon_sym_GT_AMP] = ACTIONS(2086), + [anon_sym_LT_LT] = ACTIONS(2088), + [anon_sym_LT_LT_DASH] = ACTIONS(2086), + [anon_sym_LT_LT_LT] = ACTIONS(2086), + [sym__special_characters] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2088), + [sym_raw_string] = ACTIONS(2086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2086), + [anon_sym_BQUOTE] = ACTIONS(2086), + [anon_sym_LT_LPAREN] = ACTIONS(2086), + [anon_sym_GT_LPAREN] = ACTIONS(2086), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2088), + }, + [981] = { + [aux_sym_concatenation_repeat1] = STATE(522), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PIPE_AMP] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [anon_sym_EQ_TILDE] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2090), + [anon_sym_LT_AMP] = ACTIONS(2090), + [anon_sym_GT_AMP] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2090), + [anon_sym_LT_LT_LT] = ACTIONS(2090), + [sym__special_characters] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2092), + [sym_raw_string] = ACTIONS(2090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2090), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2090), + [anon_sym_BQUOTE] = ACTIONS(2090), + [anon_sym_LT_LPAREN] = ACTIONS(2090), + [anon_sym_GT_LPAREN] = ACTIONS(2090), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2092), + }, + [982] = { + [aux_sym_concatenation_repeat1] = STATE(1433), + [sym__simple_heredoc_body] = ACTIONS(671), + [sym__heredoc_body_beginning] = ACTIONS(671), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(671), + [anon_sym_AMP_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(671), + [anon_sym_LT_AMP] = ACTIONS(671), + [anon_sym_GT_AMP] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(671), + [anon_sym_LT_LT_LT] = ACTIONS(671), + [anon_sym_BQUOTE] = ACTIONS(671), + [sym_comment] = ACTIONS(53), + }, + [983] = { + [aux_sym_concatenation_repeat1] = STATE(1433), + [sym__simple_heredoc_body] = ACTIONS(689), + [sym__heredoc_body_beginning] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [anon_sym_LT_LT_LT] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + }, + [984] = { + [aux_sym_concatenation_repeat1] = STATE(1433), + [sym__simple_heredoc_body] = ACTIONS(2098), + [sym__heredoc_body_beginning] = ACTIONS(2098), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(2098), + [anon_sym_AMP_AMP] = ACTIONS(2098), + [anon_sym_PIPE_PIPE] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2098), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2098), + [anon_sym_LT_AMP] = ACTIONS(2098), + [anon_sym_GT_AMP] = ACTIONS(2098), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2098), + [anon_sym_LT_LT_LT] = ACTIONS(2098), + [anon_sym_BQUOTE] = ACTIONS(2098), + [sym_comment] = ACTIONS(53), + }, + [985] = { + [aux_sym_concatenation_repeat1] = STATE(1433), + [sym__simple_heredoc_body] = ACTIONS(2102), + [sym__heredoc_body_beginning] = ACTIONS(2102), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2102), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2102), + [anon_sym_LT_AMP] = ACTIONS(2102), + [anon_sym_GT_AMP] = ACTIONS(2102), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2102), + [anon_sym_LT_LT_LT] = ACTIONS(2102), + [anon_sym_BQUOTE] = ACTIONS(2102), + [sym_comment] = ACTIONS(53), + }, + [986] = { + [sym_file_redirect] = STATE(986), + [sym_heredoc_redirect] = STATE(986), + [sym_herestring_redirect] = STATE(986), + [aux_sym_while_statement_repeat1] = STATE(986), + [sym__simple_heredoc_body] = ACTIONS(2110), + [sym__heredoc_body_beginning] = ACTIONS(2110), + [sym_file_descriptor] = ACTIONS(3280), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_PIPE_AMP] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_PIPE_PIPE] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_GT] = ACTIONS(3283), + [anon_sym_GT_GT] = ACTIONS(3286), + [anon_sym_AMP_GT] = ACTIONS(3283), + [anon_sym_AMP_GT_GT] = ACTIONS(3286), + [anon_sym_LT_AMP] = ACTIONS(3286), + [anon_sym_GT_AMP] = ACTIONS(3286), + [anon_sym_LT_LT] = ACTIONS(3196), + [anon_sym_LT_LT_DASH] = ACTIONS(3199), + [anon_sym_LT_LT_LT] = ACTIONS(3289), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_comment] = ACTIONS(53), + }, + [987] = { + [sym_file_redirect] = STATE(986), + [sym_heredoc_redirect] = STATE(986), + [sym_heredoc_body] = STATE(1415), + [sym_herestring_redirect] = STATE(986), + [aux_sym_while_statement_repeat1] = STATE(986), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(2108), + [anon_sym_AMP_AMP] = ACTIONS(2108), + [anon_sym_PIPE_PIPE] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(2108), + [sym_comment] = ACTIONS(53), + }, + [988] = { + [sym_concatenation] = STATE(988), + [sym_string] = STATE(531), + [sym_simple_expansion] = STATE(531), + [sym_string_expansion] = STATE(531), + [sym_expansion] = STATE(531), + [sym_command_substitution] = STATE(531), + [sym_process_substitution] = STATE(531), + [aux_sym_command_repeat2] = STATE(988), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_PIPE_AMP] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [anon_sym_EQ_TILDE] = ACTIONS(3292), + [anon_sym_EQ_EQ] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2090), + [anon_sym_LT_AMP] = ACTIONS(2090), + [anon_sym_GT_AMP] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2090), + [anon_sym_LT_LT_LT] = ACTIONS(2090), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_DOLLAR] = ACTIONS(3214), + [sym_raw_string] = ACTIONS(3298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3226), + [anon_sym_LT_LPAREN] = ACTIONS(3229), + [anon_sym_GT_LPAREN] = ACTIONS(3229), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3301), + }, + [989] = { + [sym_file_redirect] = STATE(1434), + [sym_heredoc_redirect] = STATE(1434), + [sym_heredoc_body] = STATE(1415), + [sym_herestring_redirect] = STATE(1434), + [sym_concatenation] = STATE(988), + [sym_string] = STATE(531), + [sym_simple_expansion] = STATE(531), + [sym_string_expansion] = STATE(531), + [sym_expansion] = STATE(531), + [sym_command_substitution] = STATE(531), + [sym_process_substitution] = STATE(531), + [aux_sym_while_statement_repeat1] = STATE(1434), + [aux_sym_command_repeat2] = STATE(988), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(2108), + [anon_sym_AMP_AMP] = ACTIONS(2108), + [anon_sym_PIPE_PIPE] = ACTIONS(2108), + [anon_sym_EQ_TILDE] = ACTIONS(947), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(953), + [sym__special_characters] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_raw_string] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(295), + [anon_sym_BQUOTE] = ACTIONS(2108), + [anon_sym_LT_LPAREN] = ACTIONS(299), + [anon_sym_GT_LPAREN] = ACTIONS(299), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(959), + }, + [990] = { + [sym_file_redirect] = STATE(1435), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_SEMI_SEMI] = ACTIONS(2380), + [anon_sym_PIPE_AMP] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1255), + [anon_sym_AMP_GT_GT] = ACTIONS(1255), + [anon_sym_LT_AMP] = ACTIONS(1255), + [anon_sym_GT_AMP] = ACTIONS(1255), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_LF] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2380), + }, + [991] = { + [sym__heredoc_body_middle] = ACTIONS(741), + [sym__heredoc_body_end] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), + [sym_comment] = ACTIONS(53), + }, + [992] = { + [sym__heredoc_body_middle] = ACTIONS(749), + [sym__heredoc_body_end] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [sym_comment] = ACTIONS(53), + }, + [993] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(3304), + [sym_comment] = ACTIONS(53), + }, + [994] = { + [sym_concatenation] = STATE(1439), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1439), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3308), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_DASH] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [995] = { + [sym_subscript] = STATE(1443), + [sym_variable_name] = ACTIONS(3314), + [anon_sym_DOLLAR] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_QMARK] = ACTIONS(3316), + [anon_sym_0] = ACTIONS(3320), + [anon_sym__] = ACTIONS(3320), + }, + [996] = { + [sym_concatenation] = STATE(1446), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1446), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_COLON_QMARK] = ACTIONS(3324), + [anon_sym_COLON_DASH] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [997] = { + [sym_concatenation] = STATE(1449), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1449), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(3332), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_COLON] = ACTIONS(3332), + [anon_sym_COLON_QMARK] = ACTIONS(3332), + [anon_sym_COLON_DASH] = ACTIONS(3332), + [anon_sym_PERCENT] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [998] = { + [anon_sym_esac] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_RPAREN] = ACTIONS(3338), + [anon_sym_SEMI_SEMI] = ACTIONS(3338), + [anon_sym_PIPE_AMP] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3338), + }, + [999] = { + [sym_simple_expansion] = STATE(999), + [sym_expansion] = STATE(999), + [aux_sym_heredoc_body_repeat1] = STATE(999), + [sym__heredoc_body_middle] = ACTIONS(3342), + [sym__heredoc_body_end] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(53), + }, + [1000] = { + [aux_sym_concatenation_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(1105), + [sym__heredoc_body_beginning] = ACTIONS(1105), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), + }, + [1001] = { + [aux_sym_concatenation_repeat1] = STATE(1003), + [sym__simple_heredoc_body] = ACTIONS(1109), + [sym__heredoc_body_beginning] = ACTIONS(1109), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1111), + [anon_sym_LT_AMP] = ACTIONS(1111), + [anon_sym_GT_AMP] = ACTIONS(1111), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1111), + [anon_sym_LT_LT_LT] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + }, + [1002] = { + [sym__simple_heredoc_body] = ACTIONS(1109), + [sym__heredoc_body_beginning] = ACTIONS(1109), + [sym_file_descriptor] = ACTIONS(1109), + [anon_sym_esac] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1111), + [anon_sym_LT_AMP] = ACTIONS(1111), + [anon_sym_GT_AMP] = ACTIONS(1111), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1111), + [anon_sym_LT_LT_LT] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + }, + [1003] = { + [aux_sym_concatenation_repeat1] = STATE(1450), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [1004] = { + [anon_sym_esac] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_SEMI_SEMI] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3353), + }, + [1005] = { + [sym_file_redirect] = STATE(557), + [sym_heredoc_redirect] = STATE(557), + [sym_heredoc_body] = STATE(1451), + [sym_herestring_redirect] = STATE(557), + [aux_sym_while_statement_repeat1] = STATE(557), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_SEMI_SEMI] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(351), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3353), + }, + [1006] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_PLUS_EQ] = ACTIONS(3359), + [sym_comment] = ACTIONS(53), + }, + [1007] = { + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_PLUS_EQ] = ACTIONS(3359), + [sym_comment] = ACTIONS(53), + }, + [1008] = { + [aux_sym_concatenation_repeat1] = STATE(1008), + [sym__concat] = ACTIONS(2451), + [anon_sym_RBRACK] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + }, + [1009] = { + [sym__concat] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_PLUS_EQ] = ACTIONS(3363), + [sym_comment] = ACTIONS(53), + }, + [1010] = { + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_PLUS_EQ] = ACTIONS(3363), + [sym_comment] = ACTIONS(53), + }, + [1011] = { + [sym_string] = STATE(1454), + [sym_simple_expansion] = STATE(1454), + [sym_string_expansion] = STATE(1454), + [sym_expansion] = STATE(1454), + [sym_command_substitution] = STATE(1454), + [sym_process_substitution] = STATE(1454), + [sym__special_characters] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(3365), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3365), + }, + [1012] = { + [aux_sym_concatenation_repeat1] = STATE(1455), + [sym__concat] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(705), + }, + [1013] = { + [sym__concat] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(709), + [sym__special_characters] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LT_LPAREN] = ACTIONS(709), + [anon_sym_GT_LPAREN] = ACTIONS(709), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(709), + }, + [1014] = { + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [1015] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [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), + }, + [1016] = { + [sym__concat] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), + [sym__special_characters] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), + [anon_sym_LT_LPAREN] = ACTIONS(741), + [anon_sym_GT_LPAREN] = ACTIONS(741), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(741), + }, + [1017] = { + [sym__concat] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(745), + [sym__special_characters] = ACTIONS(745), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(745), + [anon_sym_LT_LPAREN] = ACTIONS(745), + [anon_sym_GT_LPAREN] = ACTIONS(745), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(745), + }, + [1018] = { + [sym__concat] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), + [sym__special_characters] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), + [anon_sym_BQUOTE] = ACTIONS(749), + [anon_sym_LT_LPAREN] = ACTIONS(749), + [anon_sym_GT_LPAREN] = ACTIONS(749), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(749), + }, + [1019] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(3371), + [sym_comment] = ACTIONS(53), + }, + [1020] = { + [sym_concatenation] = STATE(1461), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1461), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_EQ] = ACTIONS(3375), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_COLON_QMARK] = ACTIONS(3375), + [anon_sym_COLON_DASH] = ACTIONS(3375), + [anon_sym_PERCENT] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1021] = { + [sym_subscript] = STATE(1465), + [sym_variable_name] = ACTIONS(3381), + [anon_sym_DOLLAR] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3383), + [anon_sym_AT] = ACTIONS(3383), + [anon_sym_QMARK] = ACTIONS(3383), + [anon_sym_0] = ACTIONS(3387), + [anon_sym__] = ACTIONS(3387), + }, + [1022] = { + [sym_concatenation] = STATE(1468), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1468), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_EQ] = ACTIONS(3391), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_COLON] = ACTIONS(3391), + [anon_sym_COLON_QMARK] = ACTIONS(3391), + [anon_sym_COLON_DASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1023] = { + [sym_concatenation] = STATE(1471), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1471), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_EQ] = ACTIONS(3399), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3403), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(3399), + [anon_sym_COLON_DASH] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1024] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [1025] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [1026] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_comment] = ACTIONS(53), + }, + [1027] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(3405), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [1028] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [1029] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [1030] = { + [sym_file_descriptor] = ACTIONS(3409), + [sym_variable_name] = ACTIONS(3409), + [anon_sym_esac] = ACTIONS(3411), + [anon_sym_PIPE] = ACTIONS(3411), + [anon_sym_RPAREN] = ACTIONS(3411), + [anon_sym_SEMI_SEMI] = ACTIONS(3411), + [anon_sym_PIPE_AMP] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_PIPE_PIPE] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT] = ACTIONS(3411), + [anon_sym_GT_GT] = ACTIONS(3411), + [anon_sym_AMP_GT] = ACTIONS(3411), + [anon_sym_AMP_GT_GT] = ACTIONS(3411), + [anon_sym_LT_AMP] = ACTIONS(3411), + [anon_sym_GT_AMP] = ACTIONS(3411), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [anon_sym_DOLLAR] = ACTIONS(3411), + [sym_raw_string] = ACTIONS(3411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3411), + [anon_sym_BQUOTE] = ACTIONS(3411), + [anon_sym_LT_LPAREN] = ACTIONS(3411), + [anon_sym_GT_LPAREN] = ACTIONS(3411), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_LF] = ACTIONS(3409), + [anon_sym_AMP] = ACTIONS(3411), + }, + [1031] = { + [sym_concatenation] = STATE(1031), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(1031), + [anon_sym_RPAREN] = ACTIONS(3413), + [sym__special_characters] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3418), + [anon_sym_DOLLAR] = ACTIONS(3421), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3430), + [anon_sym_BQUOTE] = ACTIONS(3433), + [anon_sym_LT_LPAREN] = ACTIONS(3436), + [anon_sym_GT_LPAREN] = ACTIONS(3436), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3424), + }, + [1032] = { + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1672), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [1033] = { + [aux_sym_concatenation_repeat1] = STATE(1033), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(3439), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [1034] = { + [sym_file_descriptor] = ACTIONS(1679), + [sym__concat] = ACTIONS(1679), + [sym_variable_name] = ACTIONS(1679), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + }, + [1035] = { + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [1036] = { + [sym_concatenation] = STATE(1478), + [sym_string] = STATE(1477), + [sym_simple_expansion] = STATE(1477), + [sym_string_expansion] = STATE(1477), + [sym_expansion] = STATE(1477), + [sym_command_substitution] = STATE(1477), + [sym_process_substitution] = STATE(1477), + [anon_sym_RBRACE] = ACTIONS(3444), + [sym__special_characters] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3448), + }, + [1037] = { + [sym_file_descriptor] = ACTIONS(1764), + [sym__concat] = ACTIONS(1764), + [sym_variable_name] = ACTIONS(1764), + [anon_sym_esac] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_AMP_GT] = ACTIONS(1766), + [anon_sym_AMP_GT_GT] = ACTIONS(1766), + [anon_sym_LT_AMP] = ACTIONS(1766), + [anon_sym_GT_AMP] = ACTIONS(1766), + [sym__special_characters] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_LF] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + }, + [1038] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3450), + }, + [1039] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1040] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(3454), + [sym_comment] = ACTIONS(53), + }, + [1041] = { + [sym_concatenation] = STATE(1484), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1484), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_EQ] = ACTIONS(3458), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3460), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_COLON] = ACTIONS(3458), + [anon_sym_COLON_QMARK] = ACTIONS(3458), + [anon_sym_COLON_DASH] = ACTIONS(3458), + [anon_sym_PERCENT] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1042] = { + [sym_concatenation] = STATE(1487), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1487), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_EQ] = ACTIONS(3466), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3468), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_COLON_QMARK] = ACTIONS(3466), + [anon_sym_COLON_DASH] = ACTIONS(3466), + [anon_sym_PERCENT] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1043] = { + [sym_concatenation] = STATE(1489), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1489), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_EQ] = ACTIONS(3472), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_COLON] = ACTIONS(3472), + [anon_sym_COLON_QMARK] = ACTIONS(3472), + [anon_sym_COLON_DASH] = ACTIONS(3472), + [anon_sym_PERCENT] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1044] = { + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [1045] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3478), + }, + [1046] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1047] = { + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1842), + [anon_sym_PIPE_AMP] = ACTIONS(1842), + [anon_sym_AMP_AMP] = ACTIONS(1842), + [anon_sym_PIPE_PIPE] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1842), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1842), + [anon_sym_LT_AMP] = ACTIONS(1842), + [anon_sym_GT_AMP] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1842), + [anon_sym_GT_LPAREN] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [1048] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3482), + }, + [1049] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1050] = { + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(1980), + [sym_variable_name] = ACTIONS(1980), + [anon_sym_esac] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1982), + [anon_sym_PIPE_AMP] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_PIPE_PIPE] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1982), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1982), + [anon_sym_LT_AMP] = ACTIONS(1982), + [anon_sym_GT_AMP] = ACTIONS(1982), + [sym__special_characters] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(1982), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), + }, + [1051] = { + [sym_file_descriptor] = ACTIONS(2046), + [sym__concat] = ACTIONS(2046), + [sym_variable_name] = ACTIONS(2046), + [anon_sym_esac] = ACTIONS(2048), + [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_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), + [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(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), + }, + [1052] = { + [aux_sym_concatenation_repeat1] = STATE(1493), + [sym__concat] = ACTIONS(419), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [1053] = { + [sym_do_group] = STATE(1494), + [anon_sym_do] = ACTIONS(1177), + [sym_comment] = ACTIONS(53), + }, + [1054] = { + [sym_concatenation] = STATE(1054), + [sym_string] = STATE(597), + [sym_simple_expansion] = STATE(597), + [sym_string_expansion] = STATE(597), + [sym_expansion] = STATE(597), + [sym_command_substitution] = STATE(597), + [sym_process_substitution] = STATE(597), + [aux_sym_for_statement_repeat1] = STATE(1054), + [anon_sym_SEMI_SEMI] = ACTIONS(3484), + [sym__special_characters] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3492), + [sym_raw_string] = ACTIONS(3495), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3501), + [anon_sym_BQUOTE] = ACTIONS(3504), + [anon_sym_LT_LPAREN] = ACTIONS(3507), + [anon_sym_GT_LPAREN] = ACTIONS(3507), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_LF] = ACTIONS(3413), + [anon_sym_AMP] = ACTIONS(3484), + }, + [1055] = { + [anon_sym_esac] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_RPAREN] = ACTIONS(2275), + [anon_sym_SEMI_SEMI] = ACTIONS(2275), + [anon_sym_PIPE_AMP] = ACTIONS(2275), + [anon_sym_AMP_AMP] = ACTIONS(2275), + [anon_sym_PIPE_PIPE] = ACTIONS(2275), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_LF] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2275), + }, + [1056] = { + [sym__terminated_statement] = STATE(1058), + [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(1058), + [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(3510), + [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), + }, + [1057] = { + [sym__simple_heredoc_body] = ACTIONS(3512), + [sym__heredoc_body_beginning] = ACTIONS(3512), + [sym_file_descriptor] = ACTIONS(3512), + [anon_sym_esac] = ACTIONS(3514), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_RPAREN] = ACTIONS(3514), + [anon_sym_SEMI_SEMI] = ACTIONS(3514), + [anon_sym_PIPE_AMP] = ACTIONS(3514), + [anon_sym_AMP_AMP] = ACTIONS(3514), + [anon_sym_PIPE_PIPE] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(3514), + [anon_sym_GT] = ACTIONS(3514), + [anon_sym_GT_GT] = ACTIONS(3514), + [anon_sym_AMP_GT] = ACTIONS(3514), + [anon_sym_AMP_GT_GT] = ACTIONS(3514), + [anon_sym_LT_AMP] = ACTIONS(3514), + [anon_sym_GT_AMP] = ACTIONS(3514), + [anon_sym_LT_LT] = ACTIONS(3514), + [anon_sym_LT_LT_DASH] = ACTIONS(3514), + [anon_sym_LT_LT_LT] = ACTIONS(3514), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_LF] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3514), + }, + [1058] = { + [sym__terminated_statement] = STATE(1058), + [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(1058), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1015), + [sym_variable_name] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_done] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), + [anon_sym_declare] = ACTIONS(1050), + [anon_sym_typeset] = ACTIONS(1050), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_readonly] = ACTIONS(1050), + [anon_sym_local] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1053), + [anon_sym_unsetenv] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [sym__special_characters] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1083), + [anon_sym_GT_LPAREN] = ACTIONS(1083), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1086), + }, + [1059] = { + [anon_sym_esac] = ACTIONS(3518), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_RPAREN] = ACTIONS(3518), + [anon_sym_SEMI_SEMI] = ACTIONS(3518), + [anon_sym_PIPE_AMP] = ACTIONS(3518), + [anon_sym_AMP_AMP] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3518), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_LF] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + }, + [1060] = { + [anon_sym_then] = ACTIONS(3522), + [sym_comment] = ACTIONS(53), + }, + [1061] = { + [sym__terminated_statement] = STATE(1497), + [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(1497), + [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(3524), + [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), + }, + [1062] = { + [anon_sym_esac] = ACTIONS(3526), + [anon_sym_PIPE] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3526), + [anon_sym_SEMI_SEMI] = ACTIONS(3526), + [anon_sym_PIPE_AMP] = ACTIONS(3526), + [anon_sym_AMP_AMP] = ACTIONS(3526), + [anon_sym_PIPE_PIPE] = ACTIONS(3526), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_LF] = ACTIONS(3528), + [anon_sym_AMP] = ACTIONS(3526), + }, + [1063] = { + [anon_sym_fi] = ACTIONS(3530), + [sym_comment] = ACTIONS(53), + }, + [1064] = { + [sym__terminated_statement] = STATE(1064), + [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(1064), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1015), + [sym_variable_name] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_fi] = ACTIONS(3516), + [anon_sym_elif] = ACTIONS(3516), + [anon_sym_else] = ACTIONS(3516), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), + [anon_sym_declare] = ACTIONS(1050), + [anon_sym_typeset] = ACTIONS(1050), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_readonly] = ACTIONS(1050), + [anon_sym_local] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1053), + [anon_sym_unsetenv] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [sym__special_characters] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1083), + [anon_sym_GT_LPAREN] = ACTIONS(1083), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1086), + }, + [1065] = { + [sym_elif_clause] = STATE(608), + [sym_else_clause] = STATE(1499), + [aux_sym_if_statement_repeat1] = STATE(1066), + [anon_sym_fi] = ACTIONS(3530), + [anon_sym_elif] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2297), + [sym_comment] = ACTIONS(53), + }, + [1066] = { + [sym_elif_clause] = STATE(608), + [aux_sym_if_statement_repeat1] = STATE(1066), + [anon_sym_fi] = ACTIONS(3532), + [anon_sym_elif] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3532), + [sym_comment] = ACTIONS(53), + }, + [1067] = { + [anon_sym_esac] = ACTIONS(3537), + [anon_sym_PIPE] = ACTIONS(3537), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_SEMI_SEMI] = ACTIONS(3537), + [anon_sym_PIPE_AMP] = ACTIONS(3537), + [anon_sym_AMP_AMP] = ACTIONS(3537), + [anon_sym_PIPE_PIPE] = ACTIONS(3537), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3537), + [anon_sym_LF] = ACTIONS(3539), + [anon_sym_AMP] = ACTIONS(3537), + }, + [1068] = { + [aux_sym_case_item_repeat1] = STATE(1502), + [aux_sym_concatenation_repeat1] = STATE(1503), + [sym__concat] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(3543), + [sym_comment] = ACTIONS(53), + }, + [1069] = { + [aux_sym_case_item_repeat1] = STATE(1505), + [aux_sym_concatenation_repeat1] = STATE(1503), + [sym__concat] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(3545), + [sym_comment] = ACTIONS(53), + }, + [1070] = { + [anon_sym_esac] = ACTIONS(3547), + [sym_comment] = ACTIONS(53), + }, + [1071] = { + [aux_sym_case_item_repeat1] = STATE(1505), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(3545), + [sym_comment] = ACTIONS(53), + }, + [1072] = { + [sym_case_item] = STATE(1508), + [sym_last_case_item] = STATE(1507), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1508), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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), + }, + [1073] = { + [sym_case_item] = STATE(1510), + [sym_last_case_item] = STATE(1507), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1510), + [anon_sym_esac] = ACTIONS(3549), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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(2305), + }, + [1074] = { + [sym__concat] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [sym__special_characters] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), + }, + [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] = { + [anon_sym_esac] = ACTIONS(3555), + [sym_comment] = ACTIONS(53), + }, + [1077] = { + [sym_case_item] = STATE(1508), + [sym_last_case_item] = STATE(1512), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1508), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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), + }, + [1078] = { + [sym_case_item] = STATE(1514), + [sym_last_case_item] = STATE(1512), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1514), + [anon_sym_esac] = ACTIONS(3557), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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(2305), + }, + [1079] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_SEMI_SEMI] = ACTIONS(2772), + [sym__special_characters] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), + [anon_sym_BQUOTE] = ACTIONS(2772), + [anon_sym_LT_LPAREN] = ACTIONS(2772), + [anon_sym_GT_LPAREN] = ACTIONS(2772), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), + }, + [1080] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3559), + [sym_comment] = ACTIONS(53), + }, + [1081] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3561), + [sym_comment] = ACTIONS(53), + }, + [1082] = { + [anon_sym_RBRACE] = ACTIONS(3561), + [sym_comment] = ACTIONS(53), + }, + [1083] = { + [sym_concatenation] = STATE(1518), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1518), + [anon_sym_RBRACE] = ACTIONS(3563), + [anon_sym_EQ] = ACTIONS(3565), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3567), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1084] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [sym__special_characters] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), + [anon_sym_BQUOTE] = ACTIONS(2854), + [anon_sym_LT_LPAREN] = ACTIONS(2854), + [anon_sym_GT_LPAREN] = ACTIONS(2854), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + }, + [1085] = { + [sym_concatenation] = STATE(1521), + [sym_string] = STATE(1520), + [sym_simple_expansion] = STATE(1520), + [sym_string_expansion] = STATE(1520), + [sym_expansion] = STATE(1520), + [sym_command_substitution] = STATE(1520), + [sym_process_substitution] = STATE(1520), + [anon_sym_RBRACE] = ACTIONS(3561), + [sym__special_characters] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3571), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3571), + }, + [1086] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_in] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = ACTIONS(2897), + [sym__special_characters] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(2897), + [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(177), + [sym_word] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2897), + }, + [1087] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3573), + }, + [1088] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3575), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1089] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_in] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), + }, + [1090] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3577), + }, + [1091] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3579), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1092] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3581), + }, + [1093] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3561), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1094] = { + [sym_concatenation] = STATE(1528), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1528), + [anon_sym_RBRACE] = ACTIONS(3583), + [anon_sym_EQ] = ACTIONS(3585), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3587), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1095] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_in] = ACTIONS(2921), + [anon_sym_SEMI_SEMI] = ACTIONS(2921), + [sym__special_characters] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2921), + [anon_sym_GT_LPAREN] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + }, + [1096] = { + [sym_concatenation] = STATE(1530), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1530), + [anon_sym_RBRACE] = ACTIONS(3589), + [anon_sym_EQ] = ACTIONS(3591), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1097] = { + [sym_file_redirect] = STATE(1531), + [sym_file_descriptor] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(3595), + [anon_sym_SEMI_SEMI] = ACTIONS(3595), + [anon_sym_PIPE_AMP] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_PIPE_PIPE] = ACTIONS(3595), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1255), + [anon_sym_AMP_GT_GT] = ACTIONS(1255), + [anon_sym_LT_AMP] = ACTIONS(1255), + [anon_sym_GT_AMP] = ACTIONS(1255), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym_LF] = ACTIONS(3597), + [anon_sym_AMP] = ACTIONS(3595), + }, + [1098] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(969), + [sym_raw_string] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(969), + }, + [1099] = { + [sym_file_descriptor] = ACTIONS(3599), + [anon_sym_esac] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3601), + [anon_sym_RPAREN] = ACTIONS(3601), + [anon_sym_SEMI_SEMI] = ACTIONS(3601), + [anon_sym_PIPE_AMP] = ACTIONS(3601), + [anon_sym_AMP_AMP] = ACTIONS(3601), + [anon_sym_PIPE_PIPE] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_GT] = ACTIONS(3601), + [anon_sym_GT_GT] = ACTIONS(3601), + [anon_sym_AMP_GT] = ACTIONS(3601), + [anon_sym_AMP_GT_GT] = ACTIONS(3601), + [anon_sym_LT_AMP] = ACTIONS(3601), + [anon_sym_GT_AMP] = ACTIONS(3601), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym_LF] = ACTIONS(3599), + [anon_sym_AMP] = ACTIONS(3601), + }, + [1100] = { + [sym__terminated_statement] = STATE(1100), + [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_command_name] = STATE(27), + [sym_variable_assignment] = STATE(639), + [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(1100), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1015), + [sym_variable_name] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), + [anon_sym_declare] = ACTIONS(1050), + [anon_sym_typeset] = ACTIONS(1050), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_readonly] = ACTIONS(1050), + [anon_sym_local] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1053), + [anon_sym_unsetenv] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [sym__special_characters] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1083), + [anon_sym_GT_LPAREN] = ACTIONS(1083), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1086), + }, + [1101] = { + [sym_concatenation] = STATE(1534), + [sym_string] = STATE(1533), + [sym_simple_expansion] = STATE(1533), + [sym_string_expansion] = STATE(1533), + [sym_expansion] = STATE(1533), + [sym_command_substitution] = STATE(1533), + [sym_process_substitution] = STATE(1533), + [sym__special_characters] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(189), + [sym_raw_string] = ACTIONS(3605), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), + [anon_sym_BQUOTE] = ACTIONS(1551), + [anon_sym_LT_LPAREN] = ACTIONS(1553), + [anon_sym_GT_LPAREN] = ACTIONS(1553), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3605), + }, + [1102] = { + [aux_sym_concatenation_repeat1] = STATE(1535), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(675), + }, + [1103] = { + [aux_sym_concatenation_repeat1] = STATE(1535), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + }, + [1104] = { + [anon_sym_esac] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + }, + [1105] = { + [aux_sym_concatenation_repeat1] = STATE(1536), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(1147), + [sym_variable_name] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [1106] = { + [sym_file_redirect] = STATE(667), + [sym_heredoc_redirect] = STATE(667), + [sym_heredoc_body] = STATE(1059), + [sym_herestring_redirect] = STATE(667), + [aux_sym_while_statement_repeat1] = STATE(667), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_SEMI_SEMI] = ACTIONS(2279), + [anon_sym_PIPE_AMP] = ACTIONS(2279), + [anon_sym_AMP_AMP] = ACTIONS(2279), + [anon_sym_PIPE_PIPE] = ACTIONS(2279), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(491), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2281), + [anon_sym_AMP] = ACTIONS(2279), + }, + [1107] = { + [sym_compound_statement] = STATE(1537), + [anon_sym_LBRACE] = ACTIONS(457), + [sym_comment] = ACTIONS(53), + }, + [1108] = { + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_GT] = ACTIONS(3607), + [anon_sym_GT_GT] = ACTIONS(3609), + [anon_sym_AMP_GT] = ACTIONS(3607), + [anon_sym_AMP_GT_GT] = ACTIONS(3609), + [anon_sym_LT_AMP] = ACTIONS(3609), + [anon_sym_GT_AMP] = ACTIONS(3609), + [sym_comment] = ACTIONS(53), + }, + [1109] = { + [sym_concatenation] = STATE(1104), + [sym_string] = STATE(1540), + [sym_simple_expansion] = STATE(1540), + [sym_string_expansion] = STATE(1540), + [sym_expansion] = STATE(1540), + [sym_command_substitution] = STATE(1540), + [sym_process_substitution] = STATE(1540), + [sym__special_characters] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(189), + [sym_raw_string] = ACTIONS(3613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), + [anon_sym_BQUOTE] = ACTIONS(1551), + [anon_sym_LT_LPAREN] = ACTIONS(1553), + [anon_sym_GT_LPAREN] = ACTIONS(1553), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3613), + }, + [1110] = { + [anon_sym_LT] = ACTIONS(3615), + [anon_sym_GT] = ACTIONS(3615), + [anon_sym_GT_GT] = ACTIONS(3617), + [anon_sym_AMP_GT] = ACTIONS(3615), + [anon_sym_AMP_GT_GT] = ACTIONS(3617), + [anon_sym_LT_AMP] = ACTIONS(3617), + [anon_sym_GT_AMP] = ACTIONS(3617), + [sym_comment] = ACTIONS(53), + }, + [1111] = { + [sym_concatenation] = STATE(1155), + [sym_string] = STATE(1543), + [sym_simple_expansion] = STATE(1543), + [sym_string_expansion] = STATE(1543), + [sym_expansion] = STATE(1543), + [sym_command_substitution] = STATE(1543), + [sym_process_substitution] = STATE(1543), + [sym__special_characters] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(3621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3621), + }, + [1112] = { + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(1545), + [sym_simple_expansion] = STATE(1545), + [sym_string_expansion] = STATE(1545), + [sym_expansion] = STATE(1545), + [sym_command_substitution] = STATE(1545), + [sym_process_substitution] = STATE(1545), + [sym__special_characters] = ACTIONS(3623), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(3625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3625), + }, + [1113] = { + [sym_file_redirect] = STATE(1546), + [sym_heredoc_redirect] = STATE(1546), + [sym_herestring_redirect] = STATE(1546), + [aux_sym_while_statement_repeat1] = STATE(1546), + [sym_file_descriptor] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2526), + [anon_sym_SEMI_SEMI] = ACTIONS(2526), + [anon_sym_PIPE_AMP] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2392), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_LT_LT_DASH] = ACTIONS(1367), + [anon_sym_LT_LT_LT] = ACTIONS(2394), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2526), + }, + [1114] = { + [aux_sym_concatenation_repeat1] = STATE(651), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_RPAREN] = ACTIONS(1149), + [anon_sym_SEMI_SEMI] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1149), + [anon_sym_PIPE_PIPE] = ACTIONS(1149), + [sym__special_characters] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), + [anon_sym_BQUOTE] = ACTIONS(1149), + [anon_sym_LT_LPAREN] = ACTIONS(1149), + [anon_sym_GT_LPAREN] = ACTIONS(1149), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), + [sym_word] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1149), + }, + [1115] = { + [aux_sym_concatenation_repeat1] = STATE(651), + [sym__concat] = ACTIONS(587), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(1125), + [anon_sym_SEMI_SEMI] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1125), + [anon_sym_GT_LPAREN] = ACTIONS(1125), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_LF] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + }, + [1116] = { + [aux_sym_concatenation_repeat1] = STATE(1116), + [sym__concat] = ACTIONS(2577), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [1117] = { + [aux_sym_concatenation_repeat1] = STATE(1117), + [sym__concat] = ACTIONS(2622), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [1118] = { + [sym_file_redirect] = STATE(1435), + [sym_file_descriptor] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(2380), + [anon_sym_SEMI_SEMI] = ACTIONS(2380), + [anon_sym_PIPE_AMP] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [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), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_LF] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2380), + }, + [1119] = { + [aux_sym_concatenation_repeat1] = STATE(1121), + [sym__simple_heredoc_body] = ACTIONS(1105), + [sym__heredoc_body_beginning] = ACTIONS(1105), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), + }, + [1120] = { + [aux_sym_concatenation_repeat1] = STATE(1121), + [sym__simple_heredoc_body] = ACTIONS(1109), + [sym__heredoc_body_beginning] = ACTIONS(1109), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1111), + [anon_sym_LT_AMP] = ACTIONS(1111), + [anon_sym_GT_AMP] = ACTIONS(1111), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1111), + [anon_sym_LT_LT_LT] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + }, + [1121] = { + [aux_sym_concatenation_repeat1] = STATE(1547), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [1122] = { + [anon_sym_esac] = ACTIONS(3627), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_RPAREN] = ACTIONS(3627), + [anon_sym_SEMI_SEMI] = ACTIONS(3627), + [anon_sym_PIPE_AMP] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3627), + [anon_sym_LF] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3627), + }, + [1123] = { + [sym_file_redirect] = STATE(667), + [sym_heredoc_redirect] = STATE(667), + [sym_heredoc_body] = STATE(1451), + [sym_herestring_redirect] = STATE(667), + [aux_sym_while_statement_repeat1] = STATE(667), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_SEMI_SEMI] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(491), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3353), + }, + [1124] = { + [sym_file_descriptor] = ACTIONS(2167), + [sym_variable_name] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2167), + [anon_sym_PIPE_AMP] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2167), + [anon_sym_PIPE_PIPE] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_AMP_GT] = ACTIONS(2169), + [anon_sym_AMP_GT_GT] = ACTIONS(2167), + [anon_sym_LT_AMP] = ACTIONS(2167), + [anon_sym_GT_AMP] = ACTIONS(2167), + [sym__special_characters] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2169), + [sym_raw_string] = ACTIONS(2167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2167), + [anon_sym_BQUOTE] = ACTIONS(2167), + [anon_sym_LT_LPAREN] = ACTIONS(2167), + [anon_sym_GT_LPAREN] = ACTIONS(2167), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2167), + }, + [1125] = { + [sym_concatenation] = STATE(1031), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(1031), + [anon_sym_RPAREN] = ACTIONS(3631), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1135), + }, + [1126] = { + [aux_sym_concatenation_repeat1] = STATE(1126), + [sym__concat] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_EQ_TILDE] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1672), + }, + [1127] = { + [sym__concat] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_RBRACK] = ACTIONS(2756), + [anon_sym_EQ_TILDE] = ACTIONS(2756), + [anon_sym_EQ_EQ] = ACTIONS(2756), + [anon_sym_EQ] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_BANG_EQ] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2756), + }, + [1128] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_EQ_TILDE] = ACTIONS(2770), + [anon_sym_EQ_EQ] = ACTIONS(2770), + [anon_sym_EQ] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_GT] = ACTIONS(2770), + [anon_sym_BANG_EQ] = ACTIONS(2770), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2770), + }, + [1129] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3633), + [sym_comment] = ACTIONS(53), + }, + [1130] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3635), + [sym_comment] = ACTIONS(53), + }, + [1131] = { + [anon_sym_RBRACE] = ACTIONS(3635), + [sym_comment] = ACTIONS(53), + }, + [1132] = { + [sym_concatenation] = STATE(1552), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1552), + [anon_sym_RBRACE] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3639), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1133] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_RBRACK] = ACTIONS(2852), + [anon_sym_EQ_TILDE] = ACTIONS(2852), + [anon_sym_EQ_EQ] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_GT] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2852), + }, + [1134] = { + [sym_concatenation] = STATE(1555), + [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), + [anon_sym_RBRACE] = ACTIONS(3635), + [sym__special_characters] = ACTIONS(3643), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3645), + }, + [1135] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_RBRACK] = ACTIONS(2895), + [anon_sym_EQ_TILDE] = ACTIONS(2895), + [anon_sym_EQ_EQ] = ACTIONS(2895), + [anon_sym_EQ] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_BANG_EQ] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2895), + }, + [1136] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3647), + }, + [1137] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3649), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1138] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_RBRACK] = ACTIONS(2903), + [anon_sym_EQ_TILDE] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_BANG_EQ] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2903), + }, + [1139] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3651), + }, + [1140] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3653), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1141] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3655), + }, + [1142] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1143] = { + [sym_concatenation] = STATE(1562), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1562), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_EQ] = ACTIONS(3659), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3661), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1144] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_RBRACK] = ACTIONS(2919), + [anon_sym_EQ_TILDE] = ACTIONS(2919), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2919), + [anon_sym_GT] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2919), + }, + [1145] = { + [sym_concatenation] = STATE(1564), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1564), + [anon_sym_RBRACE] = ACTIONS(3663), + [anon_sym_EQ] = ACTIONS(3665), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1146] = { + [sym_concatenation] = STATE(1567), + [sym_string] = STATE(1566), + [sym_simple_expansion] = STATE(1566), + [sym_string_expansion] = STATE(1566), + [sym_expansion] = STATE(1566), + [sym_command_substitution] = STATE(1566), + [sym_process_substitution] = STATE(1566), + [sym__special_characters] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(3671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3671), + }, + [1147] = { + [aux_sym_concatenation_repeat1] = STATE(1569), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(675), + [anon_sym_GT_AMP] = ACTIONS(675), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(675), + [anon_sym_LT_LT_LT] = ACTIONS(675), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(675), + }, + [1148] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(1572), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_DOLLAR] = ACTIONS(3677), + [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), + }, + [1149] = { + [sym_string] = STATE(1574), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(3679), + [sym_raw_string] = ACTIONS(3681), + [anon_sym_POUND] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3683), + [anon_sym_STAR] = ACTIONS(3679), + [anon_sym_AT] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_0] = ACTIONS(3685), + [anon_sym__] = ACTIONS(3685), + }, + [1150] = { + [aux_sym_concatenation_repeat1] = STATE(1569), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(691), + [anon_sym_LT_AMP] = ACTIONS(691), + [anon_sym_GT_AMP] = ACTIONS(691), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(691), + [anon_sym_LT_LT_LT] = ACTIONS(691), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + }, + [1151] = { + [sym_subscript] = STATE(1580), + [sym_variable_name] = ACTIONS(3687), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_POUND] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3689), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3693), + [anon_sym_STAR] = ACTIONS(3689), + [anon_sym_AT] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_0] = ACTIONS(3695), + [anon_sym__] = ACTIONS(3695), + }, + [1152] = { + [sym_for_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_case_statement] = STATE(1581), + [sym_function_definition] = STATE(1581), + [sym_subshell] = STATE(1581), + [sym_pipeline] = STATE(1581), + [sym_list] = STATE(1581), + [sym_negated_command] = STATE(1581), + [sym_test_command] = STATE(1581), + [sym_declaration_command] = STATE(1581), + [sym_unset_command] = STATE(1581), + [sym_command] = STATE(1581), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(1582), + [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), + }, + [1153] = { + [sym_for_statement] = STATE(1583), + [sym_while_statement] = STATE(1583), + [sym_if_statement] = STATE(1583), + [sym_case_statement] = STATE(1583), + [sym_function_definition] = STATE(1583), + [sym_subshell] = STATE(1583), + [sym_pipeline] = STATE(1583), + [sym_list] = STATE(1583), + [sym_negated_command] = STATE(1583), + [sym_test_command] = STATE(1583), + [sym_declaration_command] = STATE(1583), + [sym_unset_command] = STATE(1583), + [sym_command] = STATE(1583), + [sym_command_name] = STATE(181), + [sym_variable_assignment] = STATE(1584), + [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), + }, + [1154] = { + [sym_for_statement] = STATE(1585), + [sym_while_statement] = STATE(1585), + [sym_if_statement] = STATE(1585), + [sym_case_statement] = STATE(1585), + [sym_function_definition] = STATE(1585), + [sym_subshell] = STATE(1585), + [sym_pipeline] = STATE(1585), + [sym_list] = STATE(1585), + [sym_negated_command] = STATE(1585), + [sym_test_command] = STATE(1585), + [sym_declaration_command] = STATE(1585), + [sym_unset_command] = STATE(1585), + [sym_command] = STATE(1585), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(1586), + [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), + }, + [1155] = { + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_esac] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(691), + [anon_sym_LT_AMP] = ACTIONS(691), + [anon_sym_GT_AMP] = ACTIONS(691), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(691), + [anon_sym_LT_LT_LT] = ACTIONS(691), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + }, + [1156] = { + [sym_file_descriptor] = ACTIONS(2094), + [anon_sym_esac] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_RPAREN] = ACTIONS(2096), + [anon_sym_SEMI_SEMI] = ACTIONS(2096), + [anon_sym_PIPE_AMP] = ACTIONS(2096), + [anon_sym_AMP_AMP] = ACTIONS(2096), + [anon_sym_PIPE_PIPE] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_GT] = ACTIONS(2096), + [anon_sym_GT_GT] = ACTIONS(2096), + [anon_sym_AMP_GT] = ACTIONS(2096), + [anon_sym_AMP_GT_GT] = ACTIONS(2096), + [anon_sym_LT_AMP] = ACTIONS(2096), + [anon_sym_GT_AMP] = ACTIONS(2096), + [anon_sym_LT_LT] = ACTIONS(2096), + [anon_sym_LT_LT_DASH] = ACTIONS(2096), + [anon_sym_LT_LT_LT] = ACTIONS(2096), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_LF] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2096), + }, + [1157] = { + [aux_sym_concatenation_repeat1] = STATE(1569), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_SEMI_SEMI] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(2100), + [anon_sym_PIPE_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2100), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2100), + [anon_sym_LT_AMP] = ACTIONS(2100), + [anon_sym_GT_AMP] = ACTIONS(2100), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2100), + [anon_sym_LT_LT_LT] = ACTIONS(2100), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_LF] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2100), + }, + [1158] = { + [aux_sym_concatenation_repeat1] = STATE(1569), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2104), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2104), + [anon_sym_LT_AMP] = ACTIONS(2104), + [anon_sym_GT_AMP] = ACTIONS(2104), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2104), + [anon_sym_LT_LT_LT] = ACTIONS(2104), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LF] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2104), + }, + [1159] = { + [sym_file_descriptor] = ACTIONS(2102), + [anon_sym_esac] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2104), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2104), + [anon_sym_LT_AMP] = ACTIONS(2104), + [anon_sym_GT_AMP] = ACTIONS(2104), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2104), + [anon_sym_LT_LT_LT] = ACTIONS(2104), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LF] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2104), + }, + [1160] = { + [sym_file_redirect] = STATE(1160), + [sym_heredoc_redirect] = STATE(1160), + [sym_herestring_redirect] = STATE(1160), + [aux_sym_while_statement_repeat1] = STATE(1160), + [sym_file_descriptor] = ACTIONS(3697), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_SEMI_SEMI] = ACTIONS(2115), + [anon_sym_PIPE_AMP] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_GT] = ACTIONS(3700), + [anon_sym_GT_GT] = ACTIONS(3700), + [anon_sym_AMP_GT] = ACTIONS(3700), + [anon_sym_AMP_GT_GT] = ACTIONS(3700), + [anon_sym_LT_AMP] = ACTIONS(3700), + [anon_sym_GT_AMP] = ACTIONS(3700), + [anon_sym_LT_LT] = ACTIONS(3703), + [anon_sym_LT_LT_DASH] = ACTIONS(3703), + [anon_sym_LT_LT_LT] = ACTIONS(3706), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2115), + }, + [1161] = { + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2756), + [anon_sym_EQ_TILDE] = ACTIONS(2756), + [anon_sym_EQ_EQ] = ACTIONS(2756), + [anon_sym_EQ] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_BANG_EQ] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2756), + }, + [1162] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2770), + [anon_sym_EQ_TILDE] = ACTIONS(2770), + [anon_sym_EQ_EQ] = ACTIONS(2770), + [anon_sym_EQ] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_GT] = ACTIONS(2770), + [anon_sym_BANG_EQ] = ACTIONS(2770), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2770), + }, + [1163] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3709), + [sym_comment] = ACTIONS(53), + }, + [1164] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3711), + [sym_comment] = ACTIONS(53), + }, + [1165] = { + [anon_sym_RBRACE] = ACTIONS(3711), + [sym_comment] = ACTIONS(53), + }, + [1166] = { + [sym_concatenation] = STATE(1590), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1590), + [anon_sym_RBRACE] = ACTIONS(3713), + [anon_sym_EQ] = ACTIONS(3715), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3715), + [anon_sym_COLON_QMARK] = ACTIONS(3715), + [anon_sym_COLON_DASH] = ACTIONS(3715), + [anon_sym_PERCENT] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1167] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2852), + [anon_sym_EQ_TILDE] = ACTIONS(2852), + [anon_sym_EQ_EQ] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_GT] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2852), + }, + [1168] = { + [sym_concatenation] = STATE(1593), + [sym_string] = STATE(1592), + [sym_simple_expansion] = STATE(1592), + [sym_string_expansion] = STATE(1592), + [sym_expansion] = STATE(1592), + [sym_command_substitution] = STATE(1592), + [sym_process_substitution] = STATE(1592), + [anon_sym_RBRACE] = ACTIONS(3711), + [sym__special_characters] = ACTIONS(3719), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3721), + }, + [1169] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2895), + [anon_sym_EQ_TILDE] = ACTIONS(2895), + [anon_sym_EQ_EQ] = ACTIONS(2895), + [anon_sym_EQ] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_BANG_EQ] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2895), + }, + [1170] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3723), + }, + [1171] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1172] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2903), + [anon_sym_EQ_TILDE] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_BANG_EQ] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2903), + }, + [1173] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3727), + }, + [1174] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3729), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1175] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3731), + }, + [1176] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1177] = { + [sym_concatenation] = STATE(1600), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1600), + [anon_sym_RBRACE] = ACTIONS(3733), + [anon_sym_EQ] = ACTIONS(3735), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3735), + [anon_sym_COLON_QMARK] = ACTIONS(3735), + [anon_sym_COLON_DASH] = ACTIONS(3735), + [anon_sym_PERCENT] = ACTIONS(3735), + [anon_sym_DASH] = ACTIONS(3735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1178] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2919), + [anon_sym_EQ_TILDE] = ACTIONS(2919), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2919), + [anon_sym_GT] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2919), + }, + [1179] = { + [sym_concatenation] = STATE(1602), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1602), + [anon_sym_RBRACE] = ACTIONS(3739), + [anon_sym_EQ] = ACTIONS(3741), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3741), + [anon_sym_COLON_QMARK] = ACTIONS(3741), + [anon_sym_COLON_DASH] = ACTIONS(3741), + [anon_sym_PERCENT] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1180] = { + [sym_variable_name] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2169), + [anon_sym_SEMI_SEMI] = ACTIONS(2169), + [anon_sym_PIPE_AMP] = ACTIONS(2169), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [sym__special_characters] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2169), + [sym_raw_string] = ACTIONS(2169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2169), + [anon_sym_BQUOTE] = ACTIONS(2169), + [anon_sym_LT_LPAREN] = ACTIONS(2169), + [anon_sym_GT_LPAREN] = ACTIONS(2169), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2169), + [sym_word] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_LF] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2169), + }, + [1181] = { + [sym_concatenation] = STATE(1031), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(1031), + [anon_sym_RPAREN] = ACTIONS(3745), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1135), + }, + [1182] = { + [sym__concat] = ACTIONS(2756), + [sym_variable_name] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [sym__special_characters] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), + }, + [1183] = { + [sym__concat] = ACTIONS(2770), + [sym_variable_name] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_SEMI_SEMI] = ACTIONS(2772), + [anon_sym_PIPE_AMP] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [sym__special_characters] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), + [anon_sym_BQUOTE] = ACTIONS(2772), + [anon_sym_LT_LPAREN] = ACTIONS(2772), + [anon_sym_GT_LPAREN] = ACTIONS(2772), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), + [sym_word] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), + }, + [1184] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3747), + [sym_comment] = ACTIONS(53), + }, + [1185] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3749), + [sym_comment] = ACTIONS(53), + }, + [1186] = { + [anon_sym_RBRACE] = ACTIONS(3749), + [sym_comment] = ACTIONS(53), + }, + [1187] = { + [sym_concatenation] = STATE(1607), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1607), + [anon_sym_RBRACE] = ACTIONS(3751), + [anon_sym_EQ] = ACTIONS(3753), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1188] = { + [sym__concat] = ACTIONS(2852), + [sym_variable_name] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [anon_sym_PIPE_AMP] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [sym__special_characters] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), + [anon_sym_BQUOTE] = ACTIONS(2854), + [anon_sym_LT_LPAREN] = ACTIONS(2854), + [anon_sym_GT_LPAREN] = ACTIONS(2854), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), + [sym_word] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + }, + [1189] = { + [sym_concatenation] = STATE(1610), + [sym_string] = STATE(1609), + [sym_simple_expansion] = STATE(1609), + [sym_string_expansion] = STATE(1609), + [sym_expansion] = STATE(1609), + [sym_command_substitution] = STATE(1609), + [sym_process_substitution] = STATE(1609), + [anon_sym_RBRACE] = ACTIONS(3749), + [sym__special_characters] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3759), + }, + [1190] = { + [sym__concat] = ACTIONS(2895), + [sym_variable_name] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = 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(2897), + [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(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), + [sym_word] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2897), + }, + [1191] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3761), + }, + [1192] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3763), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1193] = { + [sym__concat] = ACTIONS(2903), + [sym_variable_name] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), + [sym_word] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), + }, + [1194] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3765), + }, + [1195] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3767), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1196] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3769), + }, + [1197] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3749), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1198] = { + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1617), + [anon_sym_RBRACE] = ACTIONS(3771), + [anon_sym_EQ] = ACTIONS(3773), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3773), + [anon_sym_COLON_QMARK] = ACTIONS(3773), + [anon_sym_COLON_DASH] = ACTIONS(3773), + [anon_sym_PERCENT] = ACTIONS(3773), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1199] = { + [sym__concat] = ACTIONS(2919), + [sym_variable_name] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2921), + [anon_sym_SEMI_SEMI] = ACTIONS(2921), + [anon_sym_PIPE_AMP] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [sym__special_characters] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2921), + [anon_sym_GT_LPAREN] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), + [sym_word] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + }, + [1200] = { + [sym_concatenation] = STATE(1619), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1619), + [anon_sym_RBRACE] = ACTIONS(3777), + [anon_sym_EQ] = ACTIONS(3779), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3781), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3779), + [anon_sym_COLON_QMARK] = ACTIONS(3779), + [anon_sym_COLON_DASH] = ACTIONS(3779), + [anon_sym_PERCENT] = ACTIONS(3779), + [anon_sym_DASH] = ACTIONS(3779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1201] = { + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [sym__special_characters] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), + }, + [1202] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_SEMI_SEMI] = ACTIONS(2772), + [anon_sym_PIPE_AMP] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [sym__special_characters] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), + [anon_sym_BQUOTE] = ACTIONS(2772), + [anon_sym_LT_LPAREN] = ACTIONS(2772), + [anon_sym_GT_LPAREN] = ACTIONS(2772), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), + [sym_word] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), + }, + [1203] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3783), + [sym_comment] = ACTIONS(53), + }, + [1204] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3785), + [sym_comment] = ACTIONS(53), + }, + [1205] = { + [anon_sym_RBRACE] = ACTIONS(3785), + [sym_comment] = ACTIONS(53), + }, + [1206] = { + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1623), + [anon_sym_RBRACE] = ACTIONS(3787), + [anon_sym_EQ] = ACTIONS(3789), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3791), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3789), + [anon_sym_COLON_QMARK] = ACTIONS(3789), + [anon_sym_COLON_DASH] = ACTIONS(3789), + [anon_sym_PERCENT] = ACTIONS(3789), + [anon_sym_DASH] = ACTIONS(3789), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1207] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [anon_sym_PIPE_AMP] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [sym__special_characters] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), + [anon_sym_BQUOTE] = ACTIONS(2854), + [anon_sym_LT_LPAREN] = ACTIONS(2854), + [anon_sym_GT_LPAREN] = ACTIONS(2854), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), + [sym_word] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + }, + [1208] = { + [sym_concatenation] = STATE(1626), + [sym_string] = STATE(1625), + [sym_simple_expansion] = STATE(1625), + [sym_string_expansion] = STATE(1625), + [sym_expansion] = STATE(1625), + [sym_command_substitution] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [anon_sym_RBRACE] = ACTIONS(3785), + [sym__special_characters] = ACTIONS(3793), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3795), + }, + [1209] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = 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(2897), + [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(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), + [sym_word] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2897), + }, + [1210] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3797), + }, + [1211] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3799), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1212] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), + [sym_word] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), + }, + [1213] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3801), + }, + [1214] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3803), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1215] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3805), + }, + [1216] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3785), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1217] = { + [sym_concatenation] = STATE(1633), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1633), + [anon_sym_RBRACE] = ACTIONS(3807), + [anon_sym_EQ] = ACTIONS(3809), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3809), + [anon_sym_COLON_QMARK] = ACTIONS(3809), + [anon_sym_COLON_DASH] = ACTIONS(3809), + [anon_sym_PERCENT] = ACTIONS(3809), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1218] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2921), + [anon_sym_SEMI_SEMI] = ACTIONS(2921), + [anon_sym_PIPE_AMP] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [sym__special_characters] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2921), + [anon_sym_GT_LPAREN] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), + [sym_word] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + }, + [1219] = { + [sym_concatenation] = STATE(1635), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1635), + [anon_sym_RBRACE] = ACTIONS(3813), + [anon_sym_EQ] = ACTIONS(3815), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3815), + [anon_sym_COLON_QMARK] = ACTIONS(3815), + [anon_sym_COLON_DASH] = ACTIONS(3815), + [anon_sym_PERCENT] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1220] = { + [sym_file_descriptor] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [sym_variable_name] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_GT] = ACTIONS(2758), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), + [sym__special_characters] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2756), + }, + [1221] = { + [sym_file_descriptor] = ACTIONS(2770), + [sym__concat] = ACTIONS(2770), + [sym_variable_name] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2770), + [anon_sym_PIPE_AMP] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_GT_GT] = ACTIONS(2770), + [anon_sym_AMP_GT] = ACTIONS(2772), + [anon_sym_AMP_GT_GT] = ACTIONS(2770), + [anon_sym_LT_AMP] = ACTIONS(2770), + [anon_sym_GT_AMP] = ACTIONS(2770), + [sym__special_characters] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), + [anon_sym_BQUOTE] = ACTIONS(2770), + [anon_sym_LT_LPAREN] = ACTIONS(2770), + [anon_sym_GT_LPAREN] = ACTIONS(2770), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2770), + }, + [1222] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3819), + [sym_comment] = ACTIONS(53), + }, + [1223] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3821), + [sym_comment] = ACTIONS(53), + }, + [1224] = { + [anon_sym_RBRACE] = ACTIONS(3821), + [sym_comment] = ACTIONS(53), + }, + [1225] = { + [sym_concatenation] = STATE(1639), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1639), + [anon_sym_RBRACE] = ACTIONS(3823), + [anon_sym_EQ] = ACTIONS(3825), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1226] = { + [sym_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [sym_variable_name] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_PIPE_AMP] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2852), + [anon_sym_AMP_GT] = ACTIONS(2854), + [anon_sym_AMP_GT_GT] = ACTIONS(2852), + [anon_sym_LT_AMP] = ACTIONS(2852), + [anon_sym_GT_AMP] = ACTIONS(2852), + [sym__special_characters] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [anon_sym_LT_LPAREN] = ACTIONS(2852), + [anon_sym_GT_LPAREN] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2852), + }, + [1227] = { + [sym_concatenation] = STATE(1642), + [sym_string] = STATE(1641), + [sym_simple_expansion] = STATE(1641), + [sym_string_expansion] = STATE(1641), + [sym_expansion] = STATE(1641), + [sym_command_substitution] = STATE(1641), + [sym_process_substitution] = STATE(1641), + [anon_sym_RBRACE] = ACTIONS(3821), + [sym__special_characters] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3831), + }, + [1228] = { + [sym_file_descriptor] = ACTIONS(2895), + [sym__concat] = ACTIONS(2895), + [sym_variable_name] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_PIPE_AMP] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_GT] = ACTIONS(2897), + [anon_sym_GT_GT] = ACTIONS(2895), + [anon_sym_AMP_GT] = ACTIONS(2897), + [anon_sym_AMP_GT_GT] = ACTIONS(2895), + [anon_sym_LT_AMP] = ACTIONS(2895), + [anon_sym_GT_AMP] = ACTIONS(2895), + [sym__special_characters] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR] = ACTIONS(2897), + [sym_raw_string] = ACTIONS(2895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), + [anon_sym_BQUOTE] = ACTIONS(2895), + [anon_sym_LT_LPAREN] = ACTIONS(2895), + [anon_sym_GT_LPAREN] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2895), + }, + [1229] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3833), + }, + [1230] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1231] = { + [sym_file_descriptor] = ACTIONS(2903), + [sym__concat] = ACTIONS(2903), + [sym_variable_name] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2903), + [anon_sym_PIPE_AMP] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_AMP_GT] = ACTIONS(2905), + [anon_sym_AMP_GT_GT] = ACTIONS(2903), + [anon_sym_LT_AMP] = ACTIONS(2903), + [anon_sym_GT_AMP] = ACTIONS(2903), + [sym__special_characters] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), + [anon_sym_BQUOTE] = ACTIONS(2903), + [anon_sym_LT_LPAREN] = ACTIONS(2903), + [anon_sym_GT_LPAREN] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2903), + }, + [1232] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3837), + }, + [1233] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3839), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1234] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3841), + }, + [1235] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3821), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1236] = { + [sym_concatenation] = STATE(1649), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1649), + [anon_sym_RBRACE] = ACTIONS(3843), + [anon_sym_EQ] = ACTIONS(3845), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3845), + [anon_sym_COLON_QMARK] = ACTIONS(3845), + [anon_sym_COLON_DASH] = ACTIONS(3845), + [anon_sym_PERCENT] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1237] = { + [sym_file_descriptor] = ACTIONS(2919), + [sym__concat] = ACTIONS(2919), + [sym_variable_name] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_PIPE_AMP] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2919), + [anon_sym_AMP_GT] = ACTIONS(2921), + [anon_sym_AMP_GT_GT] = ACTIONS(2919), + [anon_sym_LT_AMP] = ACTIONS(2919), + [anon_sym_GT_AMP] = ACTIONS(2919), + [sym__special_characters] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), + [anon_sym_BQUOTE] = ACTIONS(2919), + [anon_sym_LT_LPAREN] = ACTIONS(2919), + [anon_sym_GT_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2919), + }, + [1238] = { + [sym_concatenation] = STATE(1651), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1651), + [anon_sym_RBRACE] = ACTIONS(3849), + [anon_sym_EQ] = ACTIONS(3851), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3851), + [anon_sym_COLON_QMARK] = ACTIONS(3851), + [anon_sym_COLON_DASH] = ACTIONS(3851), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_DASH] = ACTIONS(3851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1239] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym__string_content] = ACTIONS(2770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), + [anon_sym_BQUOTE] = ACTIONS(2772), + [sym_comment] = ACTIONS(177), + }, + [1240] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3855), + [sym_comment] = ACTIONS(53), + }, + [1241] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(3857), + [sym_comment] = ACTIONS(53), + }, + [1242] = { + [anon_sym_RBRACE] = ACTIONS(3857), + [sym_comment] = ACTIONS(53), + }, + [1243] = { + [sym_concatenation] = STATE(1655), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1655), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3861), + [anon_sym_COLON_QMARK] = ACTIONS(3861), + [anon_sym_COLON_DASH] = ACTIONS(3861), + [anon_sym_PERCENT] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1244] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym__string_content] = ACTIONS(2852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), + [anon_sym_BQUOTE] = ACTIONS(2854), + [sym_comment] = ACTIONS(177), + }, + [1245] = { + [sym_concatenation] = STATE(1658), + [sym_string] = STATE(1657), + [sym_simple_expansion] = STATE(1657), + [sym_string_expansion] = STATE(1657), + [sym_expansion] = STATE(1657), + [sym_command_substitution] = STATE(1657), + [sym_process_substitution] = STATE(1657), + [anon_sym_RBRACE] = ACTIONS(3857), + [sym__special_characters] = ACTIONS(3865), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3867), + }, + [1246] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(2897), + [sym__string_content] = ACTIONS(2895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), + [anon_sym_BQUOTE] = ACTIONS(2897), + [sym_comment] = ACTIONS(177), + }, + [1247] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3869), + }, + [1248] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1249] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym__string_content] = ACTIONS(2903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [sym_comment] = ACTIONS(177), + }, + [1250] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3873), + }, + [1251] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3875), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1252] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3877), + }, + [1253] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3857), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1254] = { + [sym_concatenation] = STATE(1665), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1665), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_EQ] = ACTIONS(3881), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3881), + [anon_sym_COLON_QMARK] = ACTIONS(3881), + [anon_sym_COLON_DASH] = ACTIONS(3881), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1255] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym__string_content] = ACTIONS(2919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + }, + [1256] = { + [sym_concatenation] = STATE(1667), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1667), + [anon_sym_RBRACE] = ACTIONS(3885), + [anon_sym_EQ] = ACTIONS(3887), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(3887), + [anon_sym_COLON_QMARK] = ACTIONS(3887), + [anon_sym_COLON_DASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1257] = { + [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(3891), + [sym__special_characters] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [sym_raw_string] = ACTIONS(1317), + [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(1317), + }, + [1258] = { + [sym__concat] = ACTIONS(3893), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_EQ] = ACTIONS(3895), + [sym__special_characters] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_DOLLAR] = ACTIONS(3895), + [sym_raw_string] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_DASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2159), + [anon_sym_BQUOTE] = ACTIONS(2159), + [anon_sym_LT_LPAREN] = ACTIONS(2159), + [anon_sym_GT_LPAREN] = ACTIONS(2159), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3895), + }, + [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(3897), + [sym__special_characters] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [sym_raw_string] = ACTIONS(1317), + [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(1317), + }, + [1260] = { + [sym__concat] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(3901), + [sym__special_characters] = ACTIONS(3901), + [anon_sym_DQUOTE] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(3901), + [sym_raw_string] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2165), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2165), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_COLON_QMARK] = ACTIONS(3901), + [anon_sym_COLON_DASH] = ACTIONS(3901), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_DASH] = ACTIONS(3901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2165), + [anon_sym_BQUOTE] = ACTIONS(2165), + [anon_sym_LT_LPAREN] = ACTIONS(2165), + [anon_sym_GT_LPAREN] = ACTIONS(2165), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3901), + }, + [1261] = { + [anon_sym_RBRACK] = ACTIONS(3897), + [sym_comment] = ACTIONS(53), + }, + [1262] = { + [sym_string] = STATE(1672), + [sym_simple_expansion] = STATE(1672), + [sym_string_expansion] = STATE(1672), + [sym_expansion] = STATE(1672), + [sym_command_substitution] = STATE(1672), + [sym_process_substitution] = STATE(1672), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3903), + }, + [1263] = { + [sym__simple_heredoc_body] = ACTIONS(3905), + [sym__heredoc_body_beginning] = ACTIONS(3905), + [sym_file_descriptor] = ACTIONS(3905), + [sym__concat] = ACTIONS(3905), + [anon_sym_esac] = ACTIONS(3907), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3907), + [anon_sym_SEMI_SEMI] = ACTIONS(3907), + [anon_sym_PIPE_AMP] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [anon_sym_EQ_TILDE] = ACTIONS(3907), + [anon_sym_EQ_EQ] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_GT_GT] = ACTIONS(3907), + [anon_sym_AMP_GT] = ACTIONS(3907), + [anon_sym_AMP_GT_GT] = ACTIONS(3907), + [anon_sym_LT_AMP] = ACTIONS(3907), + [anon_sym_GT_AMP] = ACTIONS(3907), + [anon_sym_LT_LT] = ACTIONS(3907), + [anon_sym_LT_LT_DASH] = ACTIONS(3907), + [anon_sym_LT_LT_LT] = ACTIONS(3907), + [sym__special_characters] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), + [anon_sym_BQUOTE] = ACTIONS(3907), + [anon_sym_LT_LPAREN] = ACTIONS(3907), + [anon_sym_GT_LPAREN] = ACTIONS(3907), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + }, + [1264] = { + [aux_sym_concatenation_repeat1] = STATE(1673), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + }, + [1265] = { + [sym__concat] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(709), + [sym_comment] = ACTIONS(53), + }, + [1266] = { + [anon_sym_DQUOTE] = ACTIONS(3909), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [1267] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(3909), + [anon_sym_DOLLAR] = ACTIONS(3911), + [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), + }, + [1268] = { + [sym__concat] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [sym_comment] = ACTIONS(53), + }, + [1269] = { + [sym__concat] = ACTIONS(745), + [anon_sym_RBRACE] = ACTIONS(745), + [sym_comment] = ACTIONS(53), + }, + [1270] = { + [sym__concat] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [sym_comment] = ACTIONS(53), + }, + [1271] = { + [sym__simple_heredoc_body] = ACTIONS(3913), + [sym__heredoc_body_beginning] = ACTIONS(3913), + [sym_file_descriptor] = ACTIONS(3913), + [sym__concat] = ACTIONS(3913), + [anon_sym_esac] = ACTIONS(3915), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_SEMI_SEMI] = ACTIONS(3915), + [anon_sym_PIPE_AMP] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_EQ_TILDE] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(3915), + [anon_sym_LT] = ACTIONS(3915), + [anon_sym_GT] = ACTIONS(3915), + [anon_sym_GT_GT] = ACTIONS(3915), + [anon_sym_AMP_GT] = ACTIONS(3915), + [anon_sym_AMP_GT_GT] = ACTIONS(3915), + [anon_sym_LT_AMP] = ACTIONS(3915), + [anon_sym_GT_AMP] = ACTIONS(3915), + [anon_sym_LT_LT] = ACTIONS(3915), + [anon_sym_LT_LT_DASH] = ACTIONS(3915), + [anon_sym_LT_LT_LT] = ACTIONS(3915), + [sym__special_characters] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), + [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_LT_LPAREN] = ACTIONS(3915), + [anon_sym_GT_LPAREN] = ACTIONS(3915), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3915), + }, + [1272] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(3917), + [sym_comment] = ACTIONS(53), + }, + [1273] = { + [sym_concatenation] = STATE(1679), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1679), + [anon_sym_RBRACE] = ACTIONS(3919), + [anon_sym_EQ] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_DASH] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1274] = { + [sym_subscript] = STATE(1683), + [sym_variable_name] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_AT] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_0] = ACTIONS(3933), + [anon_sym__] = ACTIONS(3933), + }, + [1275] = { + [sym_concatenation] = STATE(1686), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1686), + [anon_sym_RBRACE] = ACTIONS(3935), + [anon_sym_EQ] = ACTIONS(3937), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_DASH] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1276] = { + [sym_concatenation] = STATE(1689), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1689), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_EQ] = ACTIONS(3945), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_DASH] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1277] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3951), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [1278] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3951), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [1279] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_comment] = ACTIONS(53), + }, + [1280] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(3951), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [1281] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [1282] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [1283] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(1674), + [anon_sym_COLON_QMARK] = ACTIONS(1674), + [anon_sym_COLON_DASH] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + }, + [1284] = { + [aux_sym_concatenation_repeat1] = STATE(1284), + [sym__concat] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(1674), + [anon_sym_COLON_QMARK] = ACTIONS(1674), + [anon_sym_COLON_DASH] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + }, + [1285] = { + [sym__concat] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_EQ] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), + [anon_sym_COLON] = ACTIONS(1681), + [anon_sym_COLON_QMARK] = ACTIONS(1681), + [anon_sym_COLON_DASH] = ACTIONS(1681), + [anon_sym_PERCENT] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [anon_sym_LT_LPAREN] = ACTIONS(1679), + [anon_sym_GT_LPAREN] = ACTIONS(1679), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1681), + }, + [1286] = { + [anon_sym_DQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [1287] = { + [sym_concatenation] = STATE(1696), + [sym_string] = STATE(1695), + [sym_simple_expansion] = STATE(1695), + [sym_string_expansion] = STATE(1695), + [sym_expansion] = STATE(1695), + [sym_command_substitution] = STATE(1695), + [sym_process_substitution] = STATE(1695), + [anon_sym_RBRACE] = ACTIONS(3960), + [sym__special_characters] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3964), + }, + [1288] = { + [sym__concat] = ACTIONS(1764), + [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), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1766), + }, + [1289] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3966), + }, + [1290] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3968), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1291] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(3970), + [sym_comment] = ACTIONS(53), + }, + [1292] = { + [sym_concatenation] = STATE(1702), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1702), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_EQ] = ACTIONS(3974), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3974), + [anon_sym_COLON_QMARK] = ACTIONS(3974), + [anon_sym_COLON_DASH] = ACTIONS(3974), + [anon_sym_PERCENT] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1293] = { + [sym_concatenation] = STATE(1705), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1705), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_EQ] = ACTIONS(3982), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1294] = { + [sym_concatenation] = STATE(1707), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1707), + [anon_sym_RBRACE] = ACTIONS(3960), + [anon_sym_EQ] = ACTIONS(3988), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_COLON] = ACTIONS(3988), + [anon_sym_COLON_QMARK] = ACTIONS(3988), + [anon_sym_COLON_DASH] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1295] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_COLON] = ACTIONS(1834), + [anon_sym_COLON_QMARK] = ACTIONS(1834), + [anon_sym_COLON_DASH] = ACTIONS(1834), + [anon_sym_PERCENT] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1834), + }, + [1296] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3994), + }, + [1297] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3996), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1298] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_COLON] = ACTIONS(1842), + [anon_sym_COLON_QMARK] = ACTIONS(1842), + [anon_sym_COLON_DASH] = ACTIONS(1842), + [anon_sym_PERCENT] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1842), + }, + [1299] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(3998), + }, + [1300] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(3960), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1301] = { + [sym__simple_heredoc_body] = ACTIONS(4000), + [sym__heredoc_body_beginning] = ACTIONS(4000), + [sym_file_descriptor] = ACTIONS(4000), + [sym__concat] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_SEMI_SEMI] = ACTIONS(4002), + [anon_sym_PIPE_AMP] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_EQ_TILDE] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4002), + [anon_sym_AMP_GT] = ACTIONS(4002), + [anon_sym_AMP_GT_GT] = ACTIONS(4002), + [anon_sym_LT_AMP] = ACTIONS(4002), + [anon_sym_GT_AMP] = ACTIONS(4002), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_LT_LT_DASH] = ACTIONS(4002), + [anon_sym_LT_LT_LT] = ACTIONS(4002), + [sym__special_characters] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), + [anon_sym_BQUOTE] = ACTIONS(4002), + [anon_sym_LT_LPAREN] = ACTIONS(4002), + [anon_sym_GT_LPAREN] = ACTIONS(4002), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4002), + }, + [1302] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4004), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1303] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(1982), + [sym__special_characters] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1980), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), + [anon_sym_COLON] = ACTIONS(1982), + [anon_sym_COLON_QMARK] = ACTIONS(1982), + [anon_sym_COLON_DASH] = ACTIONS(1982), + [anon_sym_PERCENT] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [anon_sym_LT_LPAREN] = ACTIONS(1980), + [anon_sym_GT_LPAREN] = ACTIONS(1980), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1982), + }, + [1304] = { + [sym__concat] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(2048), + [sym__special_characters] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2046), + [anon_sym_DOLLAR] = ACTIONS(2048), + [sym_raw_string] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(2046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2046), + [anon_sym_COLON] = ACTIONS(2048), + [anon_sym_COLON_QMARK] = ACTIONS(2048), + [anon_sym_COLON_DASH] = ACTIONS(2048), + [anon_sym_PERCENT] = ACTIONS(2048), + [anon_sym_DASH] = ACTIONS(2048), + [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(177), + [sym_word] = ACTIONS(2048), + }, + [1305] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4006), + [sym_comment] = ACTIONS(53), + }, + [1306] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4008), + [sym_comment] = ACTIONS(53), + }, + [1307] = { + [anon_sym_RBRACE] = ACTIONS(4008), + [sym_comment] = ACTIONS(53), + }, + [1308] = { + [sym_concatenation] = STATE(1715), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1715), + [anon_sym_RBRACE] = ACTIONS(4010), + [anon_sym_EQ] = ACTIONS(4012), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4012), + [anon_sym_COLON_QMARK] = ACTIONS(4012), + [anon_sym_COLON_DASH] = ACTIONS(4012), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4012), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1309] = { + [sym__simple_heredoc_body] = ACTIONS(4016), + [sym__heredoc_body_beginning] = ACTIONS(4016), + [sym_file_descriptor] = ACTIONS(4016), + [sym__concat] = ACTIONS(4016), + [anon_sym_esac] = ACTIONS(4018), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4018), + [anon_sym_SEMI_SEMI] = ACTIONS(4018), + [anon_sym_PIPE_AMP] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_PIPE_PIPE] = ACTIONS(4018), + [anon_sym_EQ_TILDE] = ACTIONS(4018), + [anon_sym_EQ_EQ] = ACTIONS(4018), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_GT_GT] = ACTIONS(4018), + [anon_sym_AMP_GT] = ACTIONS(4018), + [anon_sym_AMP_GT_GT] = ACTIONS(4018), + [anon_sym_LT_AMP] = ACTIONS(4018), + [anon_sym_GT_AMP] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4018), + [anon_sym_LT_LT_DASH] = ACTIONS(4018), + [anon_sym_LT_LT_LT] = ACTIONS(4018), + [sym__special_characters] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4018), + [anon_sym_LT_LPAREN] = ACTIONS(4018), + [anon_sym_GT_LPAREN] = ACTIONS(4018), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4018), + }, + [1310] = { + [sym_concatenation] = STATE(1717), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1717), + [anon_sym_RBRACE] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4022), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4022), + [anon_sym_COLON_QMARK] = ACTIONS(4022), + [anon_sym_COLON_DASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1311] = { + [sym__simple_heredoc_body] = ACTIONS(4026), + [sym__heredoc_body_beginning] = ACTIONS(4026), + [sym_file_descriptor] = ACTIONS(4026), + [sym__concat] = ACTIONS(4026), + [anon_sym_esac] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_SEMI_SEMI] = ACTIONS(4028), + [anon_sym_PIPE_AMP] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_EQ_TILDE] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4028), + [anon_sym_AMP_GT] = ACTIONS(4028), + [anon_sym_AMP_GT_GT] = ACTIONS(4028), + [anon_sym_LT_AMP] = ACTIONS(4028), + [anon_sym_GT_AMP] = ACTIONS(4028), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_LT_LT_DASH] = ACTIONS(4028), + [anon_sym_LT_LT_LT] = ACTIONS(4028), + [sym__special_characters] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(4028), + [sym_raw_string] = ACTIONS(4028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), + [anon_sym_BQUOTE] = ACTIONS(4028), + [anon_sym_LT_LPAREN] = ACTIONS(4028), + [anon_sym_GT_LPAREN] = ACTIONS(4028), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4028), + }, + [1312] = { + [sym_concatenation] = STATE(1719), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1719), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4032), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4032), + [anon_sym_COLON_QMARK] = ACTIONS(4032), + [anon_sym_COLON_DASH] = ACTIONS(4032), + [anon_sym_PERCENT] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1313] = { + [sym__simple_heredoc_body] = ACTIONS(4036), + [sym__heredoc_body_beginning] = ACTIONS(4036), + [sym_file_descriptor] = ACTIONS(4036), + [sym__concat] = ACTIONS(4036), + [anon_sym_esac] = ACTIONS(4038), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4038), + [anon_sym_SEMI_SEMI] = ACTIONS(4038), + [anon_sym_PIPE_AMP] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_PIPE_PIPE] = ACTIONS(4038), + [anon_sym_EQ_TILDE] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_GT_GT] = ACTIONS(4038), + [anon_sym_AMP_GT] = ACTIONS(4038), + [anon_sym_AMP_GT_GT] = ACTIONS(4038), + [anon_sym_LT_AMP] = ACTIONS(4038), + [anon_sym_GT_AMP] = ACTIONS(4038), + [anon_sym_LT_LT] = ACTIONS(4038), + [anon_sym_LT_LT_DASH] = ACTIONS(4038), + [anon_sym_LT_LT_LT] = ACTIONS(4038), + [sym__special_characters] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(4038), + [sym_raw_string] = ACTIONS(4038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), + [anon_sym_BQUOTE] = ACTIONS(4038), + [anon_sym_LT_LPAREN] = ACTIONS(4038), + [anon_sym_GT_LPAREN] = ACTIONS(4038), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4038), + }, + [1314] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1315] = { + [sym__simple_heredoc_body] = ACTIONS(4042), + [sym__heredoc_body_beginning] = ACTIONS(4042), + [sym_file_descriptor] = ACTIONS(4042), + [sym__concat] = ACTIONS(4042), + [anon_sym_esac] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_EQ_TILDE] = ACTIONS(4044), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4044), + [anon_sym_AMP_GT] = ACTIONS(4044), + [anon_sym_AMP_GT_GT] = ACTIONS(4044), + [anon_sym_LT_AMP] = ACTIONS(4044), + [anon_sym_GT_AMP] = ACTIONS(4044), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_LT_LT_DASH] = ACTIONS(4044), + [anon_sym_LT_LT_LT] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4044), + [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(177), + [sym_word] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4044), + }, + [1316] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1317] = { + [aux_sym_concatenation_repeat1] = STATE(1722), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(705), + [anon_sym_LT_AMP] = ACTIONS(705), + [anon_sym_GT_AMP] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(705), + }, + [1318] = { + [sym_concatenation] = STATE(1054), + [sym_string] = STATE(597), + [sym_simple_expansion] = STATE(597), + [sym_string_expansion] = STATE(597), + [sym_expansion] = STATE(597), + [sym_command_substitution] = STATE(597), + [sym_process_substitution] = STATE(597), + [aux_sym_for_statement_repeat1] = STATE(1054), + [anon_sym_SEMI_SEMI] = ACTIONS(4048), + [sym__special_characters] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(71), + [sym_raw_string] = ACTIONS(2255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2259), + [anon_sym_BQUOTE] = ACTIONS(2261), + [anon_sym_LT_LPAREN] = ACTIONS(2263), + [anon_sym_GT_LPAREN] = ACTIONS(2263), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_LF] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + }, + [1319] = { + [sym__terminated_statement] = STATE(1725), + [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(1725), + [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(4052), + [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), + }, + [1320] = { + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_PIPE_AMP] = ACTIONS(2271), + [anon_sym_AMP_AMP] = ACTIONS(2271), + [anon_sym_PIPE_PIPE] = ACTIONS(2271), + [anon_sym_BQUOTE] = ACTIONS(2271), + [sym_comment] = ACTIONS(53), + }, + [1321] = { + [sym__simple_heredoc_body] = ACTIONS(2273), + [sym__heredoc_body_beginning] = ACTIONS(2273), + [sym_file_descriptor] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_PIPE_AMP] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(2273), + [anon_sym_PIPE_PIPE] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_GT] = ACTIONS(2275), + [anon_sym_GT_GT] = ACTIONS(2273), + [anon_sym_AMP_GT] = ACTIONS(2275), + [anon_sym_AMP_GT_GT] = ACTIONS(2273), + [anon_sym_LT_AMP] = ACTIONS(2273), + [anon_sym_GT_AMP] = ACTIONS(2273), + [anon_sym_LT_LT] = ACTIONS(2275), + [anon_sym_LT_LT_DASH] = ACTIONS(2273), + [anon_sym_LT_LT_LT] = ACTIONS(2273), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_comment] = ACTIONS(53), + }, + [1322] = { + [sym__terminated_statement] = STATE(1058), + [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(1058), + [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(4054), + [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), + }, + [1323] = { + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2281), + [anon_sym_PIPE_AMP] = ACTIONS(2281), + [anon_sym_AMP_AMP] = ACTIONS(2281), + [anon_sym_PIPE_PIPE] = ACTIONS(2281), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_comment] = ACTIONS(53), + }, + [1324] = { + [sym_file_redirect] = STATE(959), + [sym_heredoc_redirect] = STATE(959), + [sym_heredoc_body] = STATE(1727), + [sym_herestring_redirect] = STATE(959), + [aux_sym_while_statement_repeat1] = STATE(959), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2281), + [anon_sym_PIPE_AMP] = ACTIONS(2281), + [anon_sym_AMP_AMP] = ACTIONS(2281), + [anon_sym_PIPE_PIPE] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(903), + [anon_sym_LT_AMP] = ACTIONS(903), + [anon_sym_GT_AMP] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym_comment] = ACTIONS(53), + }, + [1325] = { + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_RPAREN] = ACTIONS(2285), + [anon_sym_PIPE_AMP] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2285), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_comment] = ACTIONS(53), + }, + [1326] = { + [anon_sym_fi] = ACTIONS(4056), + [sym_comment] = ACTIONS(53), + }, + [1327] = { + [sym__terminated_statement] = STATE(1064), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(608), + [sym_else_clause] = STATE(1729), + [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(1064), + [aux_sym_if_statement_repeat1] = STATE(1730), + [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(4058), + [anon_sym_elif] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1189), + [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), + }, + [1328] = { + [sym_elif_clause] = STATE(608), + [sym_else_clause] = STATE(1729), + [aux_sym_if_statement_repeat1] = STATE(1066), + [anon_sym_fi] = ACTIONS(4056), + [anon_sym_elif] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2297), + [sym_comment] = ACTIONS(53), + }, + [1329] = { + [sym_case_item] = STATE(1733), + [sym_last_case_item] = STATE(1732), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1733), + [anon_sym_esac] = ACTIONS(4060), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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(2305), + }, + [1330] = { + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + }, + [1331] = { + [sym_case_item] = STATE(1737), + [sym_last_case_item] = STATE(1736), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1737), + [anon_sym_esac] = ACTIONS(4066), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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(2305), + }, + [1332] = { + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4068), + }, + [1333] = { + [sym_compound_statement] = STATE(1739), + [anon_sym_LBRACE] = ACTIONS(1874), + [sym_comment] = ACTIONS(53), + }, + [1334] = { + [sym_file_descriptor] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_PIPE_AMP] = ACTIONS(2362), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2364), + [anon_sym_GT] = ACTIONS(2364), + [anon_sym_GT_GT] = ACTIONS(2362), + [anon_sym_AMP_GT] = ACTIONS(2364), + [anon_sym_AMP_GT_GT] = ACTIONS(2362), + [anon_sym_LT_AMP] = ACTIONS(2362), + [anon_sym_GT_AMP] = ACTIONS(2362), + [anon_sym_BQUOTE] = ACTIONS(2362), + [sym_comment] = ACTIONS(53), + }, + [1335] = { + [sym__terminated_statement] = STATE(1100), + [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_command_name] = STATE(27), + [sym_variable_assignment] = STATE(639), + [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(1100), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(4072), + [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), + }, + [1336] = { + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_GT_GT] = ACTIONS(4076), + [anon_sym_AMP_GT] = ACTIONS(4074), + [anon_sym_AMP_GT_GT] = ACTIONS(4076), + [anon_sym_LT_AMP] = ACTIONS(4076), + [anon_sym_GT_AMP] = ACTIONS(4076), + [sym_comment] = ACTIONS(53), + }, + [1337] = { + [sym_concatenation] = STATE(1744), + [sym_string] = STATE(1743), + [sym_simple_expansion] = STATE(1743), + [sym_string_expansion] = STATE(1743), + [sym_expansion] = STATE(1743), + [sym_command_substitution] = STATE(1743), + [sym_process_substitution] = STATE(1743), + [sym__special_characters] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym_raw_string] = ACTIONS(4080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(851), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4080), + }, + [1338] = { + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(2382), + [anon_sym_PIPE_AMP] = ACTIONS(2382), + [anon_sym_AMP_AMP] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2382), + [anon_sym_BQUOTE] = ACTIONS(2382), + [sym_comment] = ACTIONS(53), + }, + [1339] = { + [anon_sym_PIPE] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_PIPE_AMP] = ACTIONS(2417), + [anon_sym_AMP_AMP] = ACTIONS(2417), + [anon_sym_PIPE_PIPE] = ACTIONS(2417), + [anon_sym_BQUOTE] = ACTIONS(2417), + [sym_comment] = ACTIONS(53), + }, + [1340] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(4082), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(969), + [sym_raw_string] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(969), + }, + [1341] = { + [anon_sym_LT] = ACTIONS(4084), + [anon_sym_GT] = ACTIONS(4084), + [anon_sym_GT_GT] = ACTIONS(4086), + [anon_sym_AMP_GT] = ACTIONS(4084), + [anon_sym_AMP_GT_GT] = ACTIONS(4086), + [anon_sym_LT_AMP] = ACTIONS(4086), + [anon_sym_GT_AMP] = ACTIONS(4086), + [sym_comment] = ACTIONS(53), + }, + [1342] = { + [sym_concatenation] = STATE(1755), + [sym_string] = STATE(1750), + [sym_simple_expansion] = STATE(1750), + [sym_string_expansion] = STATE(1750), + [sym_expansion] = STATE(1750), + [sym_command_substitution] = STATE(1750), + [sym_process_substitution] = STATE(1750), + [sym__special_characters] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4092), + [sym_raw_string] = ACTIONS(4094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4100), + [anon_sym_LT_LPAREN] = ACTIONS(4102), + [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4094), + }, + [1343] = { + [sym_heredoc_start] = ACTIONS(4104), + [sym_comment] = ACTIONS(53), + }, + [1344] = { + [sym_concatenation] = STATE(1759), + [sym_string] = STATE(1758), + [sym_simple_expansion] = STATE(1758), + [sym_string_expansion] = STATE(1758), + [sym_expansion] = STATE(1758), + [sym_command_substitution] = STATE(1758), + [sym_process_substitution] = STATE(1758), + [sym__special_characters] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4092), + [sym_raw_string] = ACTIONS(4108), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4100), + [anon_sym_LT_LPAREN] = ACTIONS(4102), + [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4108), + }, + [1345] = { + [sym_file_redirect] = STATE(1760), + [sym_heredoc_redirect] = STATE(1760), + [sym_herestring_redirect] = STATE(1760), + [aux_sym_while_statement_repeat1] = STATE(1760), + [sym_file_descriptor] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2528), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2969), + [anon_sym_AMP_GT] = ACTIONS(2967), + [anon_sym_AMP_GT_GT] = ACTIONS(2969), + [anon_sym_LT_AMP] = ACTIONS(2969), + [anon_sym_GT_AMP] = ACTIONS(2969), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_LT_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT_LT] = ACTIONS(2975), + [sym_comment] = ACTIONS(53), + }, + [1346] = { + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_PIPE_AMP] = ACTIONS(1123), + [anon_sym_AMP_AMP] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1123), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(1125), + }, + [1347] = { + [sym_concatenation] = STATE(1762), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(1762), + [anon_sym_RPAREN] = ACTIONS(4110), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1135), + }, + [1348] = { + [aux_sym_concatenation_repeat1] = STATE(881), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_RPAREN] = ACTIONS(1145), + [anon_sym_PIPE_AMP] = ACTIONS(1145), + [anon_sym_AMP_AMP] = ACTIONS(1145), + [anon_sym_PIPE_PIPE] = ACTIONS(1145), + [sym__special_characters] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), + [anon_sym_BQUOTE] = ACTIONS(1145), + [anon_sym_LT_LPAREN] = ACTIONS(1145), + [anon_sym_GT_LPAREN] = ACTIONS(1145), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), + [sym_word] = ACTIONS(1149), + }, + [1349] = { + [aux_sym_concatenation_repeat1] = STATE(881), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_PIPE_AMP] = ACTIONS(1123), + [anon_sym_AMP_AMP] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1123), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(1125), + }, + [1350] = { + [sym__concat] = ACTIONS(1672), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + }, + [1351] = { + [aux_sym_concatenation_repeat1] = STATE(1351), + [sym__concat] = ACTIONS(4112), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + }, + [1352] = { + [sym__concat] = ACTIONS(1679), + [sym_variable_name] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [sym__special_characters] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [anon_sym_LT_LPAREN] = ACTIONS(1679), + [anon_sym_GT_LPAREN] = ACTIONS(1679), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + }, + [1353] = { + [anon_sym_DQUOTE] = ACTIONS(4115), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [1354] = { + [sym_concatenation] = STATE(1767), + [sym_string] = STATE(1766), + [sym_simple_expansion] = STATE(1766), + [sym_string_expansion] = STATE(1766), + [sym_expansion] = STATE(1766), + [sym_command_substitution] = STATE(1766), + [sym_process_substitution] = STATE(1766), + [anon_sym_RBRACE] = ACTIONS(4117), + [sym__special_characters] = ACTIONS(4119), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4121), + }, + [1355] = { + [sym__concat] = ACTIONS(1764), + [sym_variable_name] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_PIPE_AMP] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [sym__special_characters] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1764), + [anon_sym_LT_LPAREN] = ACTIONS(1764), + [anon_sym_GT_LPAREN] = ACTIONS(1764), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), + [sym_word] = ACTIONS(1766), + }, + [1356] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4123), + }, + [1357] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1358] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(4127), + [sym_comment] = ACTIONS(53), + }, + [1359] = { + [sym_concatenation] = STATE(1773), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1773), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4131), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4131), + [anon_sym_COLON_QMARK] = ACTIONS(4131), + [anon_sym_COLON_DASH] = ACTIONS(4131), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_DASH] = ACTIONS(4131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1360] = { + [sym_concatenation] = STATE(1776), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1776), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4139), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4143), + [anon_sym_COLON] = ACTIONS(4139), + [anon_sym_COLON_QMARK] = ACTIONS(4139), + [anon_sym_COLON_DASH] = ACTIONS(4139), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1361] = { + [sym_concatenation] = STATE(1778), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1778), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4145), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1362] = { + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + }, + [1363] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4151), + }, + [1364] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1365] = { + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + }, + [1366] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4155), + }, + [1367] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1368] = { + [sym__concat] = ACTIONS(1980), + [sym_variable_name] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [sym__special_characters] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1980), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [anon_sym_LT_LPAREN] = ACTIONS(1980), + [anon_sym_GT_LPAREN] = ACTIONS(1980), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), + [sym_word] = ACTIONS(1982), + }, + [1369] = { + [sym__concat] = ACTIONS(2046), + [sym_variable_name] = ACTIONS(2046), + [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), + [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), + [sym_word] = ACTIONS(2048), + }, + [1370] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + }, + [1371] = { + [aux_sym_concatenation_repeat1] = STATE(1371), + [sym__concat] = ACTIONS(4157), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + }, + [1372] = { + [sym__concat] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [sym__special_characters] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [anon_sym_LT_LPAREN] = ACTIONS(1679), + [anon_sym_GT_LPAREN] = ACTIONS(1679), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + }, + [1373] = { + [anon_sym_DQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [1374] = { + [sym_concatenation] = STATE(1786), + [sym_string] = STATE(1785), + [sym_simple_expansion] = STATE(1785), + [sym_string_expansion] = STATE(1785), + [sym_expansion] = STATE(1785), + [sym_command_substitution] = STATE(1785), + [sym_process_substitution] = STATE(1785), + [anon_sym_RBRACE] = ACTIONS(4162), + [sym__special_characters] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4166), + }, + [1375] = { + [sym__concat] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_PIPE_AMP] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [sym__special_characters] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1764), + [anon_sym_LT_LPAREN] = ACTIONS(1764), + [anon_sym_GT_LPAREN] = ACTIONS(1764), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), + [sym_word] = ACTIONS(1766), + }, + [1376] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4168), + }, + [1377] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1378] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + }, + [1379] = { + [sym_concatenation] = STATE(1792), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1792), + [anon_sym_RBRACE] = ACTIONS(4174), + [anon_sym_EQ] = ACTIONS(4176), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(4176), + [anon_sym_COLON_QMARK] = ACTIONS(4176), + [anon_sym_COLON_DASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1380] = { + [sym_concatenation] = STATE(1795), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1795), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4184), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_COLON] = ACTIONS(4184), + [anon_sym_COLON_QMARK] = ACTIONS(4184), + [anon_sym_COLON_DASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1381] = { + [sym_concatenation] = STATE(1797), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1797), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4190), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COLON_QMARK] = ACTIONS(4190), + [anon_sym_COLON_DASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1382] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + }, + [1383] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4196), + }, + [1384] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1385] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + }, + [1386] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4200), + }, + [1387] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1388] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [sym__special_characters] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1980), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [anon_sym_LT_LPAREN] = ACTIONS(1980), + [anon_sym_GT_LPAREN] = ACTIONS(1980), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), + [sym_word] = ACTIONS(1982), + }, + [1389] = { + [sym__concat] = ACTIONS(2046), + [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), + [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), + [sym_word] = ACTIONS(2048), + }, + [1390] = { + [sym__simple_heredoc_body] = ACTIONS(2756), + [sym__heredoc_body_beginning] = ACTIONS(2756), + [sym_file_descriptor] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_EQ_TILDE] = ACTIONS(2758), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_GT] = ACTIONS(2758), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_LT_LT_DASH] = ACTIONS(2756), + [anon_sym_LT_LT_LT] = ACTIONS(2756), + [sym__special_characters] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2758), + }, + [1391] = { + [sym__simple_heredoc_body] = ACTIONS(2770), + [sym__heredoc_body_beginning] = ACTIONS(2770), + [sym_file_descriptor] = ACTIONS(2770), + [sym__concat] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2770), + [anon_sym_PIPE_AMP] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [anon_sym_EQ_TILDE] = ACTIONS(2772), + [anon_sym_EQ_EQ] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_GT_GT] = ACTIONS(2770), + [anon_sym_AMP_GT] = ACTIONS(2772), + [anon_sym_AMP_GT_GT] = ACTIONS(2770), + [anon_sym_LT_AMP] = ACTIONS(2770), + [anon_sym_GT_AMP] = ACTIONS(2770), + [anon_sym_LT_LT] = ACTIONS(2772), + [anon_sym_LT_LT_DASH] = ACTIONS(2770), + [anon_sym_LT_LT_LT] = ACTIONS(2770), + [sym__special_characters] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), + [anon_sym_BQUOTE] = ACTIONS(2770), + [anon_sym_LT_LPAREN] = ACTIONS(2770), + [anon_sym_GT_LPAREN] = ACTIONS(2770), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2772), + }, + [1392] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4202), + [sym_comment] = ACTIONS(53), + }, + [1393] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4204), + [sym_comment] = ACTIONS(53), + }, + [1394] = { + [anon_sym_RBRACE] = ACTIONS(4204), + [sym_comment] = ACTIONS(53), + }, + [1395] = { + [sym_concatenation] = STATE(1804), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1804), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4208), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4208), + [anon_sym_COLON_QMARK] = ACTIONS(4208), + [anon_sym_COLON_DASH] = ACTIONS(4208), + [anon_sym_PERCENT] = ACTIONS(4208), + [anon_sym_DASH] = ACTIONS(4208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1396] = { + [sym__simple_heredoc_body] = ACTIONS(2852), + [sym__heredoc_body_beginning] = ACTIONS(2852), + [sym_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_PIPE_AMP] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_EQ_TILDE] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2852), + [anon_sym_AMP_GT] = ACTIONS(2854), + [anon_sym_AMP_GT_GT] = ACTIONS(2852), + [anon_sym_LT_AMP] = ACTIONS(2852), + [anon_sym_GT_AMP] = ACTIONS(2852), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_LT_LT_DASH] = ACTIONS(2852), + [anon_sym_LT_LT_LT] = ACTIONS(2852), + [sym__special_characters] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [anon_sym_LT_LPAREN] = ACTIONS(2852), + [anon_sym_GT_LPAREN] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2854), + }, + [1397] = { + [sym_concatenation] = STATE(1807), + [sym_string] = STATE(1806), + [sym_simple_expansion] = STATE(1806), + [sym_string_expansion] = STATE(1806), + [sym_expansion] = STATE(1806), + [sym_command_substitution] = STATE(1806), + [sym_process_substitution] = STATE(1806), + [anon_sym_RBRACE] = ACTIONS(4204), + [sym__special_characters] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4214), + }, + [1398] = { + [sym__simple_heredoc_body] = ACTIONS(2895), + [sym__heredoc_body_beginning] = ACTIONS(2895), + [sym_file_descriptor] = ACTIONS(2895), + [sym__concat] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_PIPE_AMP] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_EQ_TILDE] = ACTIONS(2897), + [anon_sym_EQ_EQ] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_GT] = ACTIONS(2897), + [anon_sym_GT_GT] = ACTIONS(2895), + [anon_sym_AMP_GT] = ACTIONS(2897), + [anon_sym_AMP_GT_GT] = ACTIONS(2895), + [anon_sym_LT_AMP] = ACTIONS(2895), + [anon_sym_GT_AMP] = ACTIONS(2895), + [anon_sym_LT_LT] = ACTIONS(2897), + [anon_sym_LT_LT_DASH] = ACTIONS(2895), + [anon_sym_LT_LT_LT] = ACTIONS(2895), + [sym__special_characters] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR] = ACTIONS(2897), + [sym_raw_string] = ACTIONS(2895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), + [anon_sym_BQUOTE] = ACTIONS(2895), + [anon_sym_LT_LPAREN] = ACTIONS(2895), + [anon_sym_GT_LPAREN] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2897), + }, + [1399] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4216), + }, + [1400] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1401] = { + [sym__simple_heredoc_body] = ACTIONS(2903), + [sym__heredoc_body_beginning] = ACTIONS(2903), + [sym_file_descriptor] = ACTIONS(2903), + [sym__concat] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2903), + [anon_sym_PIPE_AMP] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_EQ_TILDE] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_AMP_GT] = ACTIONS(2905), + [anon_sym_AMP_GT_GT] = ACTIONS(2903), + [anon_sym_LT_AMP] = ACTIONS(2903), + [anon_sym_GT_AMP] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2905), + [anon_sym_LT_LT_DASH] = ACTIONS(2903), + [anon_sym_LT_LT_LT] = ACTIONS(2903), + [sym__special_characters] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), + [anon_sym_BQUOTE] = ACTIONS(2903), + [anon_sym_LT_LPAREN] = ACTIONS(2903), + [anon_sym_GT_LPAREN] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2905), + }, + [1402] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4220), + }, + [1403] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1404] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4224), + }, + [1405] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1406] = { + [sym_concatenation] = STATE(1814), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1814), + [anon_sym_RBRACE] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4228), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_COLON_QMARK] = ACTIONS(4228), + [anon_sym_COLON_DASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1407] = { + [sym__simple_heredoc_body] = ACTIONS(2919), + [sym__heredoc_body_beginning] = ACTIONS(2919), + [sym_file_descriptor] = ACTIONS(2919), + [sym__concat] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_PIPE_AMP] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_EQ_TILDE] = ACTIONS(2921), + [anon_sym_EQ_EQ] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2919), + [anon_sym_AMP_GT] = ACTIONS(2921), + [anon_sym_AMP_GT_GT] = ACTIONS(2919), + [anon_sym_LT_AMP] = ACTIONS(2919), + [anon_sym_GT_AMP] = ACTIONS(2919), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_LT_LT_DASH] = ACTIONS(2919), + [anon_sym_LT_LT_LT] = ACTIONS(2919), + [sym__special_characters] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), + [anon_sym_BQUOTE] = ACTIONS(2919), + [anon_sym_LT_LPAREN] = ACTIONS(2919), + [anon_sym_GT_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2921), + }, + [1408] = { + [sym_concatenation] = STATE(1816), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1816), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4234), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4234), + [anon_sym_COLON_QMARK] = ACTIONS(4234), + [anon_sym_COLON_DASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1409] = { + [sym_file_redirect] = STATE(1817), + [sym_file_descriptor] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(2382), + [anon_sym_PIPE_AMP] = ACTIONS(2382), + [anon_sym_AMP_AMP] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_GT_GT] = ACTIONS(2955), + [anon_sym_AMP_GT] = ACTIONS(2953), + [anon_sym_AMP_GT_GT] = ACTIONS(2955), + [anon_sym_LT_AMP] = ACTIONS(2955), + [anon_sym_GT_AMP] = ACTIONS(2955), + [sym_comment] = ACTIONS(53), + }, + [1410] = { + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_PIPE_AMP] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_comment] = ACTIONS(53), + }, + [1411] = { + [aux_sym_concatenation_repeat1] = STATE(1414), + [sym__simple_heredoc_body] = ACTIONS(1105), + [sym__heredoc_body_beginning] = ACTIONS(1105), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1105), + [anon_sym_LT_AMP] = ACTIONS(1105), + [anon_sym_GT_AMP] = ACTIONS(1105), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(1105), + [sym_comment] = ACTIONS(53), + }, + [1412] = { + [aux_sym_concatenation_repeat1] = STATE(1414), + [sym__simple_heredoc_body] = ACTIONS(1109), + [sym__heredoc_body_beginning] = ACTIONS(1109), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1109), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1109), + [anon_sym_LT_AMP] = ACTIONS(1109), + [anon_sym_GT_AMP] = ACTIONS(1109), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1109), + [anon_sym_LT_LT_LT] = ACTIONS(1109), + [sym_comment] = ACTIONS(53), + }, + [1413] = { + [sym__simple_heredoc_body] = ACTIONS(1109), + [sym__heredoc_body_beginning] = ACTIONS(1109), + [sym_file_descriptor] = ACTIONS(1109), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1109), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1109), + [anon_sym_LT_AMP] = ACTIONS(1109), + [anon_sym_GT_AMP] = ACTIONS(1109), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1109), + [anon_sym_LT_LT_LT] = ACTIONS(1109), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_comment] = ACTIONS(53), + }, + [1414] = { + [aux_sym_concatenation_repeat1] = STATE(1818), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(705), + [anon_sym_LT_AMP] = ACTIONS(705), + [anon_sym_GT_AMP] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(705), + [anon_sym_LT_LT_LT] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + }, + [1415] = { + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_comment] = ACTIONS(53), + }, + [1416] = { + [sym_file_redirect] = STATE(959), + [sym_heredoc_redirect] = STATE(959), + [sym_heredoc_body] = STATE(1819), + [sym_herestring_redirect] = STATE(959), + [aux_sym_while_statement_repeat1] = STATE(959), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(903), + [anon_sym_LT_AMP] = ACTIONS(903), + [anon_sym_GT_AMP] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(909), + [sym_comment] = ACTIONS(53), + }, + [1417] = { + [aux_sym_concatenation_repeat1] = STATE(1820), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(673), + [sym_variable_name] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(705), + [anon_sym_LT_AMP] = ACTIONS(705), + [anon_sym_GT_AMP] = ACTIONS(705), + [sym__special_characters] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LT_LPAREN] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(705), + }, + [1418] = { + [sym_file_redirect] = STATE(986), + [sym_heredoc_redirect] = STATE(986), + [sym_heredoc_body] = STATE(1727), + [sym_herestring_redirect] = STATE(986), + [aux_sym_while_statement_repeat1] = STATE(986), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_PIPE_AMP] = ACTIONS(2281), + [anon_sym_AMP_AMP] = ACTIONS(2281), + [anon_sym_PIPE_PIPE] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(2281), + [sym_comment] = ACTIONS(53), + }, + [1419] = { + [sym_compound_statement] = STATE(1821), + [anon_sym_LBRACE] = ACTIONS(1874), + [sym_comment] = ACTIONS(53), + }, + [1420] = { + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_GT_GT] = ACTIONS(4240), + [anon_sym_AMP_GT] = ACTIONS(4238), + [anon_sym_AMP_GT_GT] = ACTIONS(4240), + [anon_sym_LT_AMP] = ACTIONS(4240), + [anon_sym_GT_AMP] = ACTIONS(4240), + [sym_comment] = ACTIONS(53), + }, + [1421] = { + [sym_concatenation] = STATE(1744), + [sym_string] = STATE(1824), + [sym_simple_expansion] = STATE(1824), + [sym_string_expansion] = STATE(1824), + [sym_expansion] = STATE(1824), + [sym_command_substitution] = STATE(1824), + [sym_process_substitution] = STATE(1824), + [sym__special_characters] = ACTIONS(4242), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym_raw_string] = ACTIONS(4244), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(851), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4244), + }, + [1422] = { + [anon_sym_LT] = ACTIONS(4246), + [anon_sym_GT] = ACTIONS(4246), + [anon_sym_GT_GT] = ACTIONS(4248), + [anon_sym_AMP_GT] = ACTIONS(4246), + [anon_sym_AMP_GT_GT] = ACTIONS(4248), + [anon_sym_LT_AMP] = ACTIONS(4248), + [anon_sym_GT_AMP] = ACTIONS(4248), + [sym_comment] = ACTIONS(53), + }, + [1423] = { + [sym_concatenation] = STATE(1755), + [sym_string] = STATE(1827), + [sym_simple_expansion] = STATE(1827), + [sym_string_expansion] = STATE(1827), + [sym_expansion] = STATE(1827), + [sym_command_substitution] = STATE(1827), + [sym_process_substitution] = STATE(1827), + [sym__special_characters] = ACTIONS(4250), + [anon_sym_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4092), + [sym_raw_string] = ACTIONS(4252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4100), + [anon_sym_LT_LPAREN] = ACTIONS(4102), + [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4252), + }, + [1424] = { + [sym_concatenation] = STATE(1759), + [sym_string] = STATE(1829), + [sym_simple_expansion] = STATE(1829), + [sym_string_expansion] = STATE(1829), + [sym_expansion] = STATE(1829), + [sym_command_substitution] = STATE(1829), + [sym_process_substitution] = STATE(1829), + [sym__special_characters] = ACTIONS(4254), + [anon_sym_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4092), + [sym_raw_string] = ACTIONS(4256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4100), + [anon_sym_LT_LPAREN] = ACTIONS(4102), + [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4256), + }, + [1425] = { + [sym_file_redirect] = STATE(1830), + [sym_heredoc_redirect] = STATE(1830), + [sym_herestring_redirect] = STATE(1830), + [aux_sym_while_statement_repeat1] = STATE(1830), + [sym_file_descriptor] = ACTIONS(3243), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_PIPE_AMP] = ACTIONS(2528), + [anon_sym_AMP_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3247), + [anon_sym_AMP_GT] = ACTIONS(3245), + [anon_sym_AMP_GT_GT] = ACTIONS(3247), + [anon_sym_LT_AMP] = ACTIONS(3247), + [anon_sym_GT_AMP] = ACTIONS(3247), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_LT_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT_LT] = ACTIONS(3249), + [anon_sym_BQUOTE] = ACTIONS(2528), + [sym_comment] = ACTIONS(53), + }, + [1426] = { + [aux_sym_concatenation_repeat1] = STATE(970), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(1145), + [anon_sym_AMP_AMP] = ACTIONS(1145), + [anon_sym_PIPE_PIPE] = ACTIONS(1145), + [sym__special_characters] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1145), + [anon_sym_BQUOTE] = ACTIONS(1145), + [anon_sym_LT_LPAREN] = ACTIONS(1145), + [anon_sym_GT_LPAREN] = ACTIONS(1145), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), + [sym_word] = ACTIONS(1149), + }, + [1427] = { + [aux_sym_concatenation_repeat1] = STATE(970), + [sym__concat] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1123), + [anon_sym_AMP_AMP] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(1123), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(1125), + }, + [1428] = { + [aux_sym_concatenation_repeat1] = STATE(1428), + [sym__concat] = ACTIONS(4112), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + }, + [1429] = { + [aux_sym_concatenation_repeat1] = STATE(1429), + [sym__concat] = ACTIONS(4157), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + }, + [1430] = { + [sym_file_redirect] = STATE(1817), + [sym_file_descriptor] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_PIPE_AMP] = ACTIONS(2382), + [anon_sym_AMP_AMP] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_GT] = ACTIONS(3239), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_AMP_GT] = ACTIONS(3239), + [anon_sym_AMP_GT_GT] = ACTIONS(3241), + [anon_sym_LT_AMP] = ACTIONS(3241), + [anon_sym_GT_AMP] = ACTIONS(3241), + [anon_sym_BQUOTE] = ACTIONS(2382), + [sym_comment] = ACTIONS(53), + }, + [1431] = { + [aux_sym_concatenation_repeat1] = STATE(1433), + [sym__simple_heredoc_body] = ACTIONS(1105), + [sym__heredoc_body_beginning] = ACTIONS(1105), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1105), + [anon_sym_LT_AMP] = ACTIONS(1105), + [anon_sym_GT_AMP] = ACTIONS(1105), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [sym_comment] = ACTIONS(53), + }, + [1432] = { + [aux_sym_concatenation_repeat1] = STATE(1433), + [sym__simple_heredoc_body] = ACTIONS(1109), + [sym__heredoc_body_beginning] = ACTIONS(1109), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1109), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1109), + [anon_sym_LT_AMP] = ACTIONS(1109), + [anon_sym_GT_AMP] = ACTIONS(1109), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1109), + [anon_sym_LT_LT_LT] = ACTIONS(1109), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_comment] = ACTIONS(53), + }, + [1433] = { + [aux_sym_concatenation_repeat1] = STATE(1831), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(705), + [anon_sym_LT_AMP] = ACTIONS(705), + [anon_sym_GT_AMP] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(705), + [anon_sym_LT_LT_LT] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + }, + [1434] = { + [sym_file_redirect] = STATE(986), + [sym_heredoc_redirect] = STATE(986), + [sym_heredoc_body] = STATE(1819), + [sym_herestring_redirect] = STATE(986), + [aux_sym_while_statement_repeat1] = STATE(986), + [sym__simple_heredoc_body] = ACTIONS(893), + [sym__heredoc_body_beginning] = ACTIONS(895), + [sym_file_descriptor] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_AMP_GT] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(951), + [anon_sym_LT_AMP] = ACTIONS(951), + [anon_sym_GT_AMP] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_comment] = ACTIONS(53), + }, + [1435] = { + [anon_sym_esac] = ACTIONS(3595), + [anon_sym_PIPE] = ACTIONS(3595), + [anon_sym_RPAREN] = ACTIONS(3595), + [anon_sym_SEMI_SEMI] = ACTIONS(3595), + [anon_sym_PIPE_AMP] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_PIPE_PIPE] = ACTIONS(3595), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym_LF] = ACTIONS(3597), + [anon_sym_AMP] = ACTIONS(3595), + }, + [1436] = { + [sym_concatenation] = STATE(1835), + [sym_string] = STATE(1834), + [sym_simple_expansion] = STATE(1834), + [sym_string_expansion] = STATE(1834), + [sym_expansion] = STATE(1834), + [sym_command_substitution] = STATE(1834), + [sym_process_substitution] = STATE(1834), + [anon_sym_RBRACE] = ACTIONS(4258), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4262), + }, + [1437] = { + [sym__heredoc_body_middle] = ACTIONS(1764), + [sym__heredoc_body_end] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), + [sym_comment] = ACTIONS(53), + }, + [1438] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4264), + }, + [1439] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4266), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1440] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(4268), + [sym_comment] = ACTIONS(53), + }, + [1441] = { + [sym_concatenation] = STATE(1841), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1841), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_EQ] = ACTIONS(4272), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(4272), + [anon_sym_COLON_QMARK] = ACTIONS(4272), + [anon_sym_COLON_DASH] = ACTIONS(4272), + [anon_sym_PERCENT] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1442] = { + [sym_concatenation] = STATE(1844), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1844), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_EQ] = ACTIONS(4280), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4284), + [anon_sym_COLON] = ACTIONS(4280), + [anon_sym_COLON_QMARK] = ACTIONS(4280), + [anon_sym_COLON_DASH] = ACTIONS(4280), + [anon_sym_PERCENT] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1443] = { + [sym_concatenation] = STATE(1846), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1846), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_EQ] = ACTIONS(4286), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_COLON] = ACTIONS(4286), + [anon_sym_COLON_QMARK] = ACTIONS(4286), + [anon_sym_COLON_DASH] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1444] = { + [sym__heredoc_body_middle] = ACTIONS(1832), + [sym__heredoc_body_end] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + }, + [1445] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4292), + }, + [1446] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4294), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1447] = { + [sym__heredoc_body_middle] = ACTIONS(1840), + [sym__heredoc_body_end] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + }, + [1448] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4296), + }, + [1449] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1450] = { + [aux_sym_concatenation_repeat1] = STATE(1450), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [1451] = { + [anon_sym_esac] = ACTIONS(4298), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_RPAREN] = ACTIONS(4298), + [anon_sym_SEMI_SEMI] = ACTIONS(4298), + [anon_sym_PIPE_AMP] = ACTIONS(4298), + [anon_sym_AMP_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4298), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4298), + [anon_sym_LF] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4298), + }, + [1452] = { + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_PLUS_EQ] = ACTIONS(4302), + [sym_comment] = ACTIONS(53), + }, + [1453] = { + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_PLUS_EQ] = ACTIONS(4304), + [sym_comment] = ACTIONS(53), + }, + [1454] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1672), + }, + [1455] = { + [aux_sym_concatenation_repeat1] = STATE(1455), + [sym__concat] = ACTIONS(4306), + [anon_sym_RPAREN] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1672), + }, + [1456] = { + [sym__concat] = ACTIONS(1679), + [anon_sym_RPAREN] = ACTIONS(1679), + [sym__special_characters] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [anon_sym_LT_LPAREN] = ACTIONS(1679), + [anon_sym_GT_LPAREN] = ACTIONS(1679), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1679), + }, + [1457] = { + [anon_sym_DQUOTE] = ACTIONS(4309), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [1458] = { + [sym_concatenation] = STATE(1854), + [sym_string] = STATE(1853), + [sym_simple_expansion] = STATE(1853), + [sym_string_expansion] = STATE(1853), + [sym_expansion] = STATE(1853), + [sym_command_substitution] = STATE(1853), + [sym_process_substitution] = STATE(1853), + [anon_sym_RBRACE] = ACTIONS(4311), + [sym__special_characters] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4315), + }, + [1459] = { + [sym__concat] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [sym__special_characters] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1764), + [anon_sym_LT_LPAREN] = ACTIONS(1764), + [anon_sym_GT_LPAREN] = ACTIONS(1764), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1764), + }, + [1460] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4317), + }, + [1461] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1462] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(4321), + [sym_comment] = ACTIONS(53), + }, + [1463] = { + [sym_concatenation] = STATE(1860), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1860), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_EQ] = ACTIONS(4325), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4325), + [anon_sym_COLON_QMARK] = ACTIONS(4325), + [anon_sym_COLON_DASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1464] = { + [sym_concatenation] = STATE(1863), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1863), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4333), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4333), + [anon_sym_COLON_QMARK] = ACTIONS(4333), + [anon_sym_COLON_DASH] = ACTIONS(4333), + [anon_sym_PERCENT] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1465] = { + [sym_concatenation] = STATE(1865), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1865), + [anon_sym_RBRACE] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4339), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4341), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_COLON] = ACTIONS(4339), + [anon_sym_COLON_QMARK] = ACTIONS(4339), + [anon_sym_COLON_DASH] = ACTIONS(4339), + [anon_sym_PERCENT] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1466] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1832), + }, + [1467] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4345), + }, + [1468] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1469] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1840), + }, + [1470] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4349), + }, + [1471] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1472] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_RPAREN] = ACTIONS(1980), + [sym__special_characters] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1980), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [anon_sym_LT_LPAREN] = ACTIONS(1980), + [anon_sym_GT_LPAREN] = ACTIONS(1980), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1980), + }, + [1473] = { + [sym__concat] = ACTIONS(2046), + [anon_sym_RPAREN] = 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(2046), + }, + [1474] = { + [sym_file_descriptor] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [sym_variable_name] = ACTIONS(2756), + [anon_sym_esac] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_GT] = ACTIONS(2758), + [anon_sym_AMP_GT_GT] = ACTIONS(2758), + [anon_sym_LT_AMP] = ACTIONS(2758), + [anon_sym_GT_AMP] = ACTIONS(2758), + [sym__special_characters] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), + }, + [1475] = { + [sym_file_descriptor] = ACTIONS(2770), + [sym__concat] = ACTIONS(2770), + [sym_variable_name] = ACTIONS(2770), + [anon_sym_esac] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_SEMI_SEMI] = ACTIONS(2772), + [anon_sym_PIPE_AMP] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_GT_GT] = ACTIONS(2772), + [anon_sym_AMP_GT] = ACTIONS(2772), + [anon_sym_AMP_GT_GT] = ACTIONS(2772), + [anon_sym_LT_AMP] = ACTIONS(2772), + [anon_sym_GT_AMP] = ACTIONS(2772), + [sym__special_characters] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), + [anon_sym_BQUOTE] = ACTIONS(2772), + [anon_sym_LT_LPAREN] = ACTIONS(2772), + [anon_sym_GT_LPAREN] = ACTIONS(2772), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), + }, + [1476] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4351), + [sym_comment] = ACTIONS(53), + }, + [1477] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4353), + [sym_comment] = ACTIONS(53), + }, + [1478] = { + [anon_sym_RBRACE] = ACTIONS(4353), + [sym_comment] = ACTIONS(53), + }, + [1479] = { + [sym_concatenation] = STATE(1872), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1872), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4357), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4357), + [anon_sym_COLON_QMARK] = ACTIONS(4357), + [anon_sym_COLON_DASH] = ACTIONS(4357), + [anon_sym_PERCENT] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1480] = { + [sym_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [sym_variable_name] = ACTIONS(2852), + [anon_sym_esac] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [anon_sym_PIPE_AMP] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_GT] = ACTIONS(2854), + [anon_sym_AMP_GT_GT] = ACTIONS(2854), + [anon_sym_LT_AMP] = ACTIONS(2854), + [anon_sym_GT_AMP] = ACTIONS(2854), + [sym__special_characters] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), + [anon_sym_BQUOTE] = ACTIONS(2854), + [anon_sym_LT_LPAREN] = ACTIONS(2854), + [anon_sym_GT_LPAREN] = ACTIONS(2854), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + }, + [1481] = { + [sym_concatenation] = STATE(1875), + [sym_string] = STATE(1874), + [sym_simple_expansion] = STATE(1874), + [sym_string_expansion] = STATE(1874), + [sym_expansion] = STATE(1874), + [sym_command_substitution] = STATE(1874), + [sym_process_substitution] = STATE(1874), + [anon_sym_RBRACE] = ACTIONS(4353), + [sym__special_characters] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4363), + }, + [1482] = { + [sym_file_descriptor] = ACTIONS(2895), + [sym__concat] = ACTIONS(2895), + [sym_variable_name] = ACTIONS(2895), + [anon_sym_esac] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = ACTIONS(2897), + [anon_sym_PIPE_AMP] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_PIPE_PIPE] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_GT] = ACTIONS(2897), + [anon_sym_GT_GT] = ACTIONS(2897), + [anon_sym_AMP_GT] = ACTIONS(2897), + [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(2897), + [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(177), + [sym_word] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2897), + }, + [1483] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4365), + }, + [1484] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1485] = { + [sym_file_descriptor] = ACTIONS(2903), + [sym__concat] = ACTIONS(2903), + [sym_variable_name] = ACTIONS(2903), + [anon_sym_esac] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2905), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), + }, + [1486] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4369), + }, + [1487] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4371), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1488] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4373), + }, + [1489] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1490] = { + [sym_concatenation] = STATE(1882), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1882), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4377), + [anon_sym_COLON_QMARK] = ACTIONS(4377), + [anon_sym_COLON_DASH] = ACTIONS(4377), + [anon_sym_PERCENT] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4377), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1491] = { + [sym_file_descriptor] = ACTIONS(2919), + [sym__concat] = ACTIONS(2919), + [sym_variable_name] = ACTIONS(2919), + [anon_sym_esac] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2921), + [anon_sym_SEMI_SEMI] = ACTIONS(2921), + [anon_sym_PIPE_AMP] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_AMP_GT] = ACTIONS(2921), + [anon_sym_AMP_GT_GT] = ACTIONS(2921), + [anon_sym_LT_AMP] = ACTIONS(2921), + [anon_sym_GT_AMP] = ACTIONS(2921), + [sym__special_characters] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2921), + [anon_sym_GT_LPAREN] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + }, + [1492] = { + [sym_concatenation] = STATE(1884), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1884), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_EQ] = ACTIONS(4383), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4383), + [anon_sym_COLON_QMARK] = ACTIONS(4383), + [anon_sym_COLON_DASH] = ACTIONS(4383), + [anon_sym_PERCENT] = ACTIONS(4383), + [anon_sym_DASH] = ACTIONS(4383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1493] = { + [aux_sym_concatenation_repeat1] = STATE(1493), + [sym__concat] = ACTIONS(2311), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [1494] = { + [anon_sym_esac] = ACTIONS(4387), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_RPAREN] = ACTIONS(4387), + [anon_sym_SEMI_SEMI] = ACTIONS(4387), + [anon_sym_PIPE_AMP] = ACTIONS(4387), + [anon_sym_AMP_AMP] = ACTIONS(4387), + [anon_sym_PIPE_PIPE] = ACTIONS(4387), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym_LF] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + }, + [1495] = { + [anon_sym_esac] = ACTIONS(3514), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_RPAREN] = ACTIONS(3514), + [anon_sym_SEMI_SEMI] = ACTIONS(3514), + [anon_sym_PIPE_AMP] = ACTIONS(3514), + [anon_sym_AMP_AMP] = ACTIONS(3514), + [anon_sym_PIPE_PIPE] = ACTIONS(3514), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_LF] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3514), + }, + [1496] = { + [sym__terminated_statement] = STATE(1885), + [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(1885), + [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(4391), + [anon_sym_elif] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4391), + [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), + }, + [1497] = { + [sym__terminated_statement] = STATE(1497), + [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(1497), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1015), + [sym_variable_name] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_fi] = ACTIONS(3516), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), + [anon_sym_declare] = ACTIONS(1050), + [anon_sym_typeset] = ACTIONS(1050), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_readonly] = ACTIONS(1050), + [anon_sym_local] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1053), + [anon_sym_unsetenv] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [sym__special_characters] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1083), + [anon_sym_GT_LPAREN] = ACTIONS(1083), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1086), + }, + [1498] = { + [anon_sym_esac] = ACTIONS(4393), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(4393), + [anon_sym_SEMI_SEMI] = ACTIONS(4393), + [anon_sym_PIPE_AMP] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym_LF] = ACTIONS(4395), + [anon_sym_AMP] = ACTIONS(4393), + }, + [1499] = { + [anon_sym_fi] = ACTIONS(4397), + [sym_comment] = ACTIONS(53), + }, + [1500] = { + [sym_concatenation] = STATE(1889), + [sym_string] = STATE(1888), + [sym_simple_expansion] = STATE(1888), + [sym_string_expansion] = STATE(1888), + [sym_expansion] = STATE(1888), + [sym_command_substitution] = STATE(1888), + [sym_process_substitution] = STATE(1888), + [sym__special_characters] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(4401), + [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(4401), + }, + [1501] = { + [sym__terminated_statement] = STATE(1906), + [sym_for_statement] = STATE(1902), + [sym_while_statement] = STATE(1902), + [sym_if_statement] = STATE(1902), + [sym_case_statement] = STATE(1902), + [sym_function_definition] = STATE(1902), + [sym_subshell] = STATE(1902), + [sym_pipeline] = STATE(1902), + [sym_list] = STATE(1902), + [sym_negated_command] = STATE(1902), + [sym_test_command] = STATE(1902), + [sym_declaration_command] = STATE(1902), + [sym_unset_command] = STATE(1902), + [sym_command] = STATE(1902), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(1904), + [sym_subscript] = STATE(1905), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_program_repeat1] = STATE(1906), + [aux_sym_command_repeat1] = STATE(1907), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4403), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(4407), + [anon_sym_SEMI_SEMI] = ACTIONS(4409), + [anon_sym_function] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4427), + }, + [1502] = { + [aux_sym_case_item_repeat1] = STATE(1909), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(4429), + [sym_comment] = ACTIONS(53), + }, + [1503] = { + [aux_sym_concatenation_repeat1] = STATE(1910), + [sym__concat] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + }, + [1504] = { + [sym__terminated_statement] = STATE(1914), + [sym_for_statement] = STATE(1912), + [sym_while_statement] = STATE(1912), + [sym_if_statement] = STATE(1912), + [sym_case_statement] = STATE(1912), + [sym_function_definition] = STATE(1912), + [sym_subshell] = STATE(1912), + [sym_pipeline] = STATE(1912), + [sym_list] = STATE(1912), + [sym_negated_command] = STATE(1912), + [sym_test_command] = STATE(1912), + [sym_declaration_command] = STATE(1912), + [sym_unset_command] = STATE(1912), + [sym_command] = STATE(1912), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(1913), + [sym_subscript] = STATE(1905), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_program_repeat1] = STATE(1914), + [aux_sym_command_repeat1] = STATE(1907), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4403), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(4431), + [anon_sym_SEMI_SEMI] = ACTIONS(4433), + [anon_sym_function] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4427), + }, + [1505] = { + [aux_sym_case_item_repeat1] = STATE(1909), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(4435), + [sym_comment] = ACTIONS(53), + }, + [1506] = { + [anon_sym_esac] = ACTIONS(4437), + [anon_sym_PIPE] = ACTIONS(4437), + [anon_sym_RPAREN] = ACTIONS(4437), + [anon_sym_SEMI_SEMI] = ACTIONS(4437), + [anon_sym_PIPE_AMP] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_LF] = ACTIONS(4439), + [anon_sym_AMP] = ACTIONS(4437), + }, + [1507] = { + [anon_sym_esac] = ACTIONS(4441), + [sym_comment] = ACTIONS(53), + }, + [1508] = { + [sym_case_item] = STATE(1508), + [sym_concatenation] = STATE(1919), + [sym_string] = STATE(1918), + [sym_simple_expansion] = STATE(1918), + [sym_string_expansion] = STATE(1918), + [sym_expansion] = STATE(1918), + [sym_command_substitution] = STATE(1918), + [sym_process_substitution] = STATE(1918), + [aux_sym_case_statement_repeat1] = STATE(1508), + [sym__special_characters] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(4446), + [anon_sym_DOLLAR] = ACTIONS(4449), + [sym_raw_string] = ACTIONS(4452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4455), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4458), + [anon_sym_BQUOTE] = ACTIONS(4461), + [anon_sym_LT_LPAREN] = ACTIONS(4464), + [anon_sym_GT_LPAREN] = ACTIONS(4464), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4452), + }, + [1509] = { + [anon_sym_esac] = ACTIONS(4467), + [anon_sym_PIPE] = ACTIONS(4467), + [anon_sym_RPAREN] = ACTIONS(4467), + [anon_sym_SEMI_SEMI] = ACTIONS(4467), + [anon_sym_PIPE_AMP] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_PIPE_PIPE] = ACTIONS(4467), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4467), + [anon_sym_LF] = ACTIONS(4469), + [anon_sym_AMP] = ACTIONS(4467), + }, + [1510] = { + [sym_case_item] = STATE(1508), + [sym_last_case_item] = STATE(1920), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1508), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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), + }, + [1511] = { + [anon_sym_esac] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_RPAREN] = ACTIONS(4471), + [anon_sym_SEMI_SEMI] = ACTIONS(4471), + [anon_sym_PIPE_AMP] = ACTIONS(4471), + [anon_sym_AMP_AMP] = ACTIONS(4471), + [anon_sym_PIPE_PIPE] = ACTIONS(4471), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4471), + [anon_sym_LF] = ACTIONS(4473), + [anon_sym_AMP] = ACTIONS(4471), + }, + [1512] = { + [anon_sym_esac] = ACTIONS(4475), + [sym_comment] = ACTIONS(53), + }, + [1513] = { + [anon_sym_esac] = ACTIONS(4477), + [anon_sym_PIPE] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_SEMI_SEMI] = ACTIONS(4477), + [anon_sym_PIPE_AMP] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4477), + [anon_sym_PIPE_PIPE] = ACTIONS(4477), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4477), + [anon_sym_LF] = ACTIONS(4479), + [anon_sym_AMP] = ACTIONS(4477), + }, + [1514] = { + [sym_case_item] = STATE(1508), + [sym_last_case_item] = STATE(1922), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1508), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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), + }, + [1515] = { + [sym__concat] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3907), + [anon_sym_SEMI_SEMI] = ACTIONS(3907), + [sym__special_characters] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), + [anon_sym_BQUOTE] = ACTIONS(3907), + [anon_sym_LT_LPAREN] = ACTIONS(3907), + [anon_sym_GT_LPAREN] = ACTIONS(3907), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + }, + [1516] = { + [sym__concat] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3915), + [anon_sym_SEMI_SEMI] = ACTIONS(3915), + [sym__special_characters] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), + [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_LT_LPAREN] = ACTIONS(3915), + [anon_sym_GT_LPAREN] = ACTIONS(3915), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3915), + }, + [1517] = { + [sym__concat] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4002), + [anon_sym_SEMI_SEMI] = ACTIONS(4002), + [sym__special_characters] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), + [anon_sym_BQUOTE] = ACTIONS(4002), + [anon_sym_LT_LPAREN] = ACTIONS(4002), + [anon_sym_GT_LPAREN] = ACTIONS(4002), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4002), + }, + [1518] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1519] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4483), + [sym_comment] = ACTIONS(53), + }, + [1520] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4485), + [sym_comment] = ACTIONS(53), + }, + [1521] = { + [anon_sym_RBRACE] = ACTIONS(4485), + [sym_comment] = ACTIONS(53), + }, + [1522] = { + [sym_concatenation] = STATE(1927), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1927), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_EQ] = ACTIONS(4489), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4491), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_COLON_QMARK] = ACTIONS(4489), + [anon_sym_COLON_DASH] = ACTIONS(4489), + [anon_sym_PERCENT] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1523] = { + [sym__concat] = ACTIONS(4016), + [anon_sym_in] = ACTIONS(4018), + [anon_sym_SEMI_SEMI] = ACTIONS(4018), + [sym__special_characters] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4018), + [anon_sym_LT_LPAREN] = ACTIONS(4018), + [anon_sym_GT_LPAREN] = ACTIONS(4018), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4018), + }, + [1524] = { + [sym_concatenation] = STATE(1929), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1929), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4495), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4497), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_COLON_QMARK] = ACTIONS(4495), + [anon_sym_COLON_DASH] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1525] = { + [sym__concat] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_SEMI_SEMI] = ACTIONS(4028), + [sym__special_characters] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(4028), + [sym_raw_string] = ACTIONS(4028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), + [anon_sym_BQUOTE] = ACTIONS(4028), + [anon_sym_LT_LPAREN] = ACTIONS(4028), + [anon_sym_GT_LPAREN] = ACTIONS(4028), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4028), + }, + [1526] = { + [sym_concatenation] = STATE(1931), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1931), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4501), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4501), + [anon_sym_COLON_QMARK] = ACTIONS(4501), + [anon_sym_COLON_DASH] = ACTIONS(4501), + [anon_sym_PERCENT] = ACTIONS(4501), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1527] = { + [sym__concat] = ACTIONS(4036), + [anon_sym_in] = ACTIONS(4038), + [anon_sym_SEMI_SEMI] = ACTIONS(4038), + [sym__special_characters] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(4038), + [sym_raw_string] = ACTIONS(4038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), + [anon_sym_BQUOTE] = ACTIONS(4038), + [anon_sym_LT_LPAREN] = ACTIONS(4038), + [anon_sym_GT_LPAREN] = ACTIONS(4038), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4038), + }, + [1528] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1529] = { + [sym__concat] = ACTIONS(4042), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4044), + [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(177), + [sym_word] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4044), + }, + [1530] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1531] = { + [anon_sym_esac] = ACTIONS(4509), + [anon_sym_PIPE] = ACTIONS(4509), + [anon_sym_RPAREN] = ACTIONS(4509), + [anon_sym_SEMI_SEMI] = ACTIONS(4509), + [anon_sym_PIPE_AMP] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_LF] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4509), + }, + [1532] = { + [aux_sym_concatenation_repeat1] = STATE(1535), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), + }, + [1533] = { + [aux_sym_concatenation_repeat1] = STATE(1535), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + }, + [1534] = { + [anon_sym_esac] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + }, + [1535] = { + [aux_sym_concatenation_repeat1] = STATE(1934), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [1536] = { + [aux_sym_concatenation_repeat1] = STATE(1536), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(3439), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [1537] = { + [sym_file_redirect] = STATE(1531), + [sym_file_descriptor] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(3595), + [anon_sym_RPAREN] = ACTIONS(3595), + [anon_sym_SEMI_SEMI] = ACTIONS(3595), + [anon_sym_PIPE_AMP] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_PIPE_PIPE] = ACTIONS(3595), + [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), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym_LF] = ACTIONS(3597), + [anon_sym_AMP] = ACTIONS(3595), + }, + [1538] = { + [sym_concatenation] = STATE(1534), + [sym_string] = STATE(1936), + [sym_simple_expansion] = STATE(1936), + [sym_string_expansion] = STATE(1936), + [sym_expansion] = STATE(1936), + [sym_command_substitution] = STATE(1936), + [sym_process_substitution] = STATE(1936), + [sym__special_characters] = ACTIONS(4513), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(189), + [sym_raw_string] = ACTIONS(4515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1549), + [anon_sym_BQUOTE] = ACTIONS(1551), + [anon_sym_LT_LPAREN] = ACTIONS(1553), + [anon_sym_GT_LPAREN] = ACTIONS(1553), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4515), + }, + [1539] = { + [aux_sym_concatenation_repeat1] = STATE(1937), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(675), + }, + [1540] = { + [aux_sym_concatenation_repeat1] = STATE(1937), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + }, + [1541] = { + [sym_concatenation] = STATE(1567), + [sym_string] = STATE(1939), + [sym_simple_expansion] = STATE(1939), + [sym_string_expansion] = STATE(1939), + [sym_expansion] = STATE(1939), + [sym_command_substitution] = STATE(1939), + [sym_process_substitution] = STATE(1939), + [sym__special_characters] = ACTIONS(4517), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(4519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4519), + }, + [1542] = { + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(675), + [anon_sym_GT_AMP] = ACTIONS(675), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(675), + [anon_sym_LT_LT_LT] = ACTIONS(675), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(675), + }, + [1543] = { + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(691), + [anon_sym_LT_AMP] = ACTIONS(691), + [anon_sym_GT_AMP] = ACTIONS(691), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(691), + [anon_sym_LT_LT_LT] = ACTIONS(691), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + }, + [1544] = { + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2100), + [anon_sym_SEMI_SEMI] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(2100), + [anon_sym_PIPE_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2100), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2100), + [anon_sym_LT_AMP] = ACTIONS(2100), + [anon_sym_GT_AMP] = ACTIONS(2100), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2100), + [anon_sym_LT_LT_LT] = ACTIONS(2100), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_LF] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2100), + }, + [1545] = { + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2104), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2104), + [anon_sym_LT_AMP] = ACTIONS(2104), + [anon_sym_GT_AMP] = ACTIONS(2104), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2104), + [anon_sym_LT_LT_LT] = ACTIONS(2104), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LF] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2104), + }, + [1546] = { + [sym_file_redirect] = STATE(1546), + [sym_heredoc_redirect] = STATE(1546), + [sym_herestring_redirect] = STATE(1546), + [aux_sym_while_statement_repeat1] = STATE(1546), + [sym_file_descriptor] = ACTIONS(4521), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_SEMI_SEMI] = ACTIONS(2115), + [anon_sym_PIPE_AMP] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(4524), + [anon_sym_GT] = ACTIONS(4524), + [anon_sym_GT_GT] = ACTIONS(4524), + [anon_sym_AMP_GT] = ACTIONS(4524), + [anon_sym_AMP_GT_GT] = ACTIONS(4524), + [anon_sym_LT_AMP] = ACTIONS(4524), + [anon_sym_GT_AMP] = ACTIONS(4524), + [anon_sym_LT_LT] = ACTIONS(3703), + [anon_sym_LT_LT_DASH] = ACTIONS(3703), + [anon_sym_LT_LT_LT] = ACTIONS(4527), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2115), + }, + [1547] = { + [aux_sym_concatenation_repeat1] = STATE(1547), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [1548] = { + [sym_file_descriptor] = ACTIONS(3409), + [sym_variable_name] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3411), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_PIPE_AMP] = ACTIONS(3409), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT] = ACTIONS(3411), + [anon_sym_GT_GT] = ACTIONS(3409), + [anon_sym_AMP_GT] = ACTIONS(3411), + [anon_sym_AMP_GT_GT] = ACTIONS(3409), + [anon_sym_LT_AMP] = ACTIONS(3409), + [anon_sym_GT_AMP] = ACTIONS(3409), + [sym__special_characters] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_DOLLAR] = ACTIONS(3411), + [sym_raw_string] = ACTIONS(3409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3409), + [anon_sym_BQUOTE] = ACTIONS(3409), + [anon_sym_LT_LPAREN] = ACTIONS(3409), + [anon_sym_GT_LPAREN] = ACTIONS(3409), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3409), + }, + [1549] = { + [sym__concat] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_RBRACK] = ACTIONS(3905), + [anon_sym_EQ_TILDE] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3905), + }, + [1550] = { + [sym__concat] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(3913), + [anon_sym_PIPE_PIPE] = ACTIONS(3913), + [anon_sym_RBRACK] = ACTIONS(3913), + [anon_sym_EQ_TILDE] = ACTIONS(3913), + [anon_sym_EQ_EQ] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3915), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_BANG_EQ] = ACTIONS(3913), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3913), + }, + [1551] = { + [sym__concat] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_RBRACK] = ACTIONS(4000), + [anon_sym_EQ_TILDE] = ACTIONS(4000), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4000), + }, + [1552] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1553] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4532), + [sym_comment] = ACTIONS(53), + }, + [1554] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4534), + [sym_comment] = ACTIONS(53), + }, + [1555] = { + [anon_sym_RBRACE] = ACTIONS(4534), + [sym_comment] = ACTIONS(53), + }, + [1556] = { + [sym_concatenation] = STATE(1945), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1945), + [anon_sym_RBRACE] = ACTIONS(4536), + [anon_sym_EQ] = ACTIONS(4538), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COLON_QMARK] = ACTIONS(4538), + [anon_sym_COLON_DASH] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1557] = { + [sym__concat] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_RBRACK] = ACTIONS(4016), + [anon_sym_EQ_TILDE] = ACTIONS(4016), + [anon_sym_EQ_EQ] = ACTIONS(4016), + [anon_sym_EQ] = ACTIONS(4018), + [anon_sym_LT] = ACTIONS(4016), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_BANG_EQ] = ACTIONS(4016), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4016), + }, + [1558] = { + [sym_concatenation] = STATE(1947), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1947), + [anon_sym_RBRACE] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(4544), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4544), + [anon_sym_COLON_QMARK] = ACTIONS(4544), + [anon_sym_COLON_DASH] = ACTIONS(4544), + [anon_sym_PERCENT] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1559] = { + [sym__concat] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_PIPE_PIPE] = ACTIONS(4026), + [anon_sym_RBRACK] = ACTIONS(4026), + [anon_sym_EQ_TILDE] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_BANG_EQ] = ACTIONS(4026), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4026), + }, + [1560] = { + [sym_concatenation] = STATE(1949), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1949), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4550), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1561] = { + [sym__concat] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_RBRACK] = ACTIONS(4036), + [anon_sym_EQ_TILDE] = ACTIONS(4036), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ] = ACTIONS(4038), + [anon_sym_LT] = ACTIONS(4036), + [anon_sym_GT] = ACTIONS(4036), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4036), + }, + [1562] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1563] = { + [sym__concat] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_PIPE_PIPE] = ACTIONS(4042), + [anon_sym_RBRACK] = ACTIONS(4042), + [anon_sym_EQ_TILDE] = ACTIONS(4042), + [anon_sym_EQ_EQ] = ACTIONS(4042), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_BANG_EQ] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4042), + }, + [1564] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1565] = { + [aux_sym_concatenation_repeat1] = STATE(1569), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), + }, + [1566] = { + [aux_sym_concatenation_repeat1] = STATE(1569), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1111), + [anon_sym_LT_AMP] = ACTIONS(1111), + [anon_sym_GT_AMP] = ACTIONS(1111), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1111), + [anon_sym_LT_LT_LT] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + }, + [1567] = { + [sym_file_descriptor] = ACTIONS(1109), + [anon_sym_esac] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1111), + [anon_sym_LT_AMP] = ACTIONS(1111), + [anon_sym_GT_AMP] = ACTIONS(1111), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1111), + [anon_sym_LT_LT_LT] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + }, + [1568] = { + [sym_string] = STATE(1952), + [sym_simple_expansion] = STATE(1952), + [sym_string_expansion] = STATE(1952), + [sym_expansion] = STATE(1952), + [sym_command_substitution] = STATE(1952), + [sym_process_substitution] = STATE(1952), + [sym__special_characters] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(4558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4558), + }, + [1569] = { + [aux_sym_concatenation_repeat1] = STATE(1953), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [1570] = { + [sym_file_descriptor] = ACTIONS(709), + [sym__concat] = ACTIONS(709), + [anon_sym_esac] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(711), + [anon_sym_PIPE_AMP] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(711), + [anon_sym_PIPE_PIPE] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(711), + [anon_sym_LT_AMP] = ACTIONS(711), + [anon_sym_GT_AMP] = ACTIONS(711), + [anon_sym_LT_LT] = ACTIONS(711), + [anon_sym_LT_LT_DASH] = ACTIONS(711), + [anon_sym_LT_LT_LT] = ACTIONS(711), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + }, + [1571] = { + [anon_sym_DQUOTE] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [1572] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(4560), + [anon_sym_DOLLAR] = ACTIONS(4562), + [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), + }, + [1573] = { + [sym_file_descriptor] = ACTIONS(741), + [sym__concat] = ACTIONS(741), + [anon_sym_esac] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(743), + [anon_sym_AMP_GT] = ACTIONS(743), + [anon_sym_AMP_GT_GT] = ACTIONS(743), + [anon_sym_LT_AMP] = ACTIONS(743), + [anon_sym_GT_AMP] = ACTIONS(743), + [anon_sym_LT_LT] = ACTIONS(743), + [anon_sym_LT_LT_DASH] = ACTIONS(743), + [anon_sym_LT_LT_LT] = ACTIONS(743), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), + }, + [1574] = { + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(745), + [anon_sym_esac] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_PIPE_AMP] = ACTIONS(747), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_GT] = ACTIONS(747), + [anon_sym_AMP_GT] = ACTIONS(747), + [anon_sym_AMP_GT_GT] = ACTIONS(747), + [anon_sym_LT_AMP] = ACTIONS(747), + [anon_sym_GT_AMP] = ACTIONS(747), + [anon_sym_LT_LT] = ACTIONS(747), + [anon_sym_LT_LT_DASH] = ACTIONS(747), + [anon_sym_LT_LT_LT] = ACTIONS(747), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(747), + }, + [1575] = { + [sym_file_descriptor] = ACTIONS(749), + [sym__concat] = ACTIONS(749), + [anon_sym_esac] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_PIPE_AMP] = ACTIONS(751), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(751), + [anon_sym_AMP_GT] = ACTIONS(751), + [anon_sym_AMP_GT_GT] = ACTIONS(751), + [anon_sym_LT_AMP] = ACTIONS(751), + [anon_sym_GT_AMP] = ACTIONS(751), + [anon_sym_LT_LT] = ACTIONS(751), + [anon_sym_LT_LT_DASH] = ACTIONS(751), + [anon_sym_LT_LT_LT] = ACTIONS(751), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(751), + }, + [1576] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(4564), + [sym_comment] = ACTIONS(53), + }, + [1577] = { + [sym_concatenation] = STATE(1959), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1959), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4568), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4568), + [anon_sym_COLON_QMARK] = ACTIONS(4568), + [anon_sym_COLON_DASH] = ACTIONS(4568), + [anon_sym_PERCENT] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1578] = { + [sym_subscript] = STATE(1963), + [sym_variable_name] = ACTIONS(4574), + [anon_sym_DOLLAR] = ACTIONS(4576), + [anon_sym_DASH] = ACTIONS(4576), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4578), + [anon_sym_STAR] = ACTIONS(4576), + [anon_sym_AT] = ACTIONS(4576), + [anon_sym_QMARK] = ACTIONS(4576), + [anon_sym_0] = ACTIONS(4580), + [anon_sym__] = ACTIONS(4580), + }, + [1579] = { + [sym_concatenation] = STATE(1966), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1966), + [anon_sym_RBRACE] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4584), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4586), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4588), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1580] = { + [sym_concatenation] = STATE(1969), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1969), + [anon_sym_RBRACE] = ACTIONS(4590), + [anon_sym_EQ] = ACTIONS(4592), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_COLON_QMARK] = ACTIONS(4592), + [anon_sym_COLON_DASH] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4592), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1581] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(4598), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [1582] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(4598), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [1583] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4598), + [sym_comment] = ACTIONS(53), + }, + [1584] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(4598), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [1585] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(4600), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [1586] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(4600), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [1587] = { + [sym__concat] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3905), + [anon_sym_EQ_TILDE] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_BANG_EQ] = ACTIONS(3905), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3905), + }, + [1588] = { + [sym__concat] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(3913), + [anon_sym_PIPE_PIPE] = ACTIONS(3913), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3913), + [anon_sym_EQ_TILDE] = ACTIONS(3913), + [anon_sym_EQ_EQ] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3915), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_BANG_EQ] = ACTIONS(3913), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3913), + }, + [1589] = { + [sym__concat] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4000), + [anon_sym_EQ_TILDE] = ACTIONS(4000), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4000), + }, + [1590] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1591] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4604), + [sym_comment] = ACTIONS(53), + }, + [1592] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4606), + [sym_comment] = ACTIONS(53), + }, + [1593] = { + [anon_sym_RBRACE] = ACTIONS(4606), + [sym_comment] = ACTIONS(53), + }, + [1594] = { + [sym_concatenation] = STATE(1976), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1976), + [anon_sym_RBRACE] = ACTIONS(4608), + [anon_sym_EQ] = ACTIONS(4610), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4612), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_COLON_QMARK] = ACTIONS(4610), + [anon_sym_COLON_DASH] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1595] = { + [sym__concat] = ACTIONS(4016), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4016), + [anon_sym_EQ_TILDE] = ACTIONS(4016), + [anon_sym_EQ_EQ] = ACTIONS(4016), + [anon_sym_EQ] = ACTIONS(4018), + [anon_sym_LT] = ACTIONS(4016), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_BANG_EQ] = ACTIONS(4016), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4016), + }, + [1596] = { + [sym_concatenation] = STATE(1978), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1978), + [anon_sym_RBRACE] = ACTIONS(4614), + [anon_sym_EQ] = ACTIONS(4616), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4616), + [anon_sym_COLON_QMARK] = ACTIONS(4616), + [anon_sym_COLON_DASH] = ACTIONS(4616), + [anon_sym_PERCENT] = ACTIONS(4616), + [anon_sym_DASH] = ACTIONS(4616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1597] = { + [sym__concat] = ACTIONS(4026), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_PIPE_PIPE] = ACTIONS(4026), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4026), + [anon_sym_EQ_TILDE] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_BANG_EQ] = ACTIONS(4026), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4026), + }, + [1598] = { + [sym_concatenation] = STATE(1980), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1980), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4622), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4622), + [anon_sym_COLON_QMARK] = ACTIONS(4622), + [anon_sym_COLON_DASH] = ACTIONS(4622), + [anon_sym_PERCENT] = ACTIONS(4622), + [anon_sym_DASH] = ACTIONS(4622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1599] = { + [sym__concat] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4036), + [anon_sym_EQ_TILDE] = ACTIONS(4036), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ] = ACTIONS(4038), + [anon_sym_LT] = ACTIONS(4036), + [anon_sym_GT] = ACTIONS(4036), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4036), + }, + [1600] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1601] = { + [sym__concat] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_PIPE_PIPE] = ACTIONS(4042), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4042), + [anon_sym_EQ_TILDE] = ACTIONS(4042), + [anon_sym_EQ_EQ] = ACTIONS(4042), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_BANG_EQ] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4042), + }, + [1602] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4628), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1603] = { + [sym_variable_name] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3411), + [anon_sym_RPAREN] = ACTIONS(3411), + [anon_sym_SEMI_SEMI] = ACTIONS(3411), + [anon_sym_PIPE_AMP] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_PIPE_PIPE] = ACTIONS(3411), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [anon_sym_DOLLAR] = ACTIONS(3411), + [sym_raw_string] = ACTIONS(3411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3411), + [anon_sym_BQUOTE] = ACTIONS(3411), + [anon_sym_LT_LPAREN] = ACTIONS(3411), + [anon_sym_GT_LPAREN] = ACTIONS(3411), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3411), + [sym_word] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_LF] = ACTIONS(3409), + [anon_sym_AMP] = ACTIONS(3411), + }, + [1604] = { + [sym__concat] = ACTIONS(3905), + [sym_variable_name] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3907), + [anon_sym_SEMI_SEMI] = ACTIONS(3907), + [anon_sym_PIPE_AMP] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [sym__special_characters] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), + [anon_sym_BQUOTE] = ACTIONS(3907), + [anon_sym_LT_LPAREN] = ACTIONS(3907), + [anon_sym_GT_LPAREN] = ACTIONS(3907), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), + [sym_word] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + }, + [1605] = { + [sym__concat] = ACTIONS(3913), + [sym_variable_name] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_SEMI_SEMI] = ACTIONS(3915), + [anon_sym_PIPE_AMP] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [sym__special_characters] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), + [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_LT_LPAREN] = ACTIONS(3915), + [anon_sym_GT_LPAREN] = ACTIONS(3915), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), + [sym_word] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3915), + }, + [1606] = { + [sym__concat] = ACTIONS(4000), + [sym_variable_name] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_SEMI_SEMI] = ACTIONS(4002), + [anon_sym_PIPE_AMP] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [sym__special_characters] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), + [anon_sym_BQUOTE] = ACTIONS(4002), + [anon_sym_LT_LPAREN] = ACTIONS(4002), + [anon_sym_GT_LPAREN] = ACTIONS(4002), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), + [sym_word] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4002), + }, + [1607] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4630), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1608] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4632), + [sym_comment] = ACTIONS(53), + }, + [1609] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4634), + [sym_comment] = ACTIONS(53), + }, + [1610] = { + [anon_sym_RBRACE] = ACTIONS(4634), + [sym_comment] = ACTIONS(53), + }, + [1611] = { + [sym_concatenation] = STATE(1987), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1987), + [anon_sym_RBRACE] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(4638), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4638), + [anon_sym_COLON_QMARK] = ACTIONS(4638), + [anon_sym_COLON_DASH] = ACTIONS(4638), + [anon_sym_PERCENT] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1612] = { + [sym__concat] = ACTIONS(4016), + [sym_variable_name] = ACTIONS(4016), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4018), + [anon_sym_SEMI_SEMI] = ACTIONS(4018), + [anon_sym_PIPE_AMP] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_PIPE_PIPE] = ACTIONS(4018), + [sym__special_characters] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4018), + [anon_sym_LT_LPAREN] = ACTIONS(4018), + [anon_sym_GT_LPAREN] = ACTIONS(4018), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), + [sym_word] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4018), + }, + [1613] = { + [sym_concatenation] = STATE(1989), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1989), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_EQ] = ACTIONS(4644), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_COLON_QMARK] = ACTIONS(4644), + [anon_sym_COLON_DASH] = ACTIONS(4644), + [anon_sym_PERCENT] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1614] = { + [sym__concat] = ACTIONS(4026), + [sym_variable_name] = ACTIONS(4026), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_SEMI_SEMI] = ACTIONS(4028), + [anon_sym_PIPE_AMP] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [sym__special_characters] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(4028), + [sym_raw_string] = ACTIONS(4028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), + [anon_sym_BQUOTE] = ACTIONS(4028), + [anon_sym_LT_LPAREN] = ACTIONS(4028), + [anon_sym_GT_LPAREN] = ACTIONS(4028), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), + [sym_word] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4028), + }, + [1615] = { + [sym_concatenation] = STATE(1991), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1991), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4650), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4650), + [anon_sym_COLON_QMARK] = ACTIONS(4650), + [anon_sym_COLON_DASH] = ACTIONS(4650), + [anon_sym_PERCENT] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1616] = { + [sym__concat] = ACTIONS(4036), + [sym_variable_name] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4038), + [anon_sym_SEMI_SEMI] = ACTIONS(4038), + [anon_sym_PIPE_AMP] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_PIPE_PIPE] = ACTIONS(4038), + [sym__special_characters] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(4038), + [sym_raw_string] = ACTIONS(4038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), + [anon_sym_BQUOTE] = ACTIONS(4038), + [anon_sym_LT_LPAREN] = ACTIONS(4038), + [anon_sym_GT_LPAREN] = ACTIONS(4038), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), + [sym_word] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4038), + }, + [1617] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1618] = { + [sym__concat] = ACTIONS(4042), + [sym_variable_name] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4044), + [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(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), + [sym_word] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4044), + }, + [1619] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1620] = { + [sym__concat] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3907), + [anon_sym_SEMI_SEMI] = ACTIONS(3907), + [anon_sym_PIPE_AMP] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [sym__special_characters] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), + [anon_sym_BQUOTE] = ACTIONS(3907), + [anon_sym_LT_LPAREN] = ACTIONS(3907), + [anon_sym_GT_LPAREN] = ACTIONS(3907), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), + [sym_word] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + }, + [1621] = { + [sym__concat] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_SEMI_SEMI] = ACTIONS(3915), + [anon_sym_PIPE_AMP] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [sym__special_characters] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), + [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_LT_LPAREN] = ACTIONS(3915), + [anon_sym_GT_LPAREN] = ACTIONS(3915), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), + [sym_word] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3915), + }, + [1622] = { + [sym__concat] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_SEMI_SEMI] = ACTIONS(4002), + [anon_sym_PIPE_AMP] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [sym__special_characters] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), + [anon_sym_BQUOTE] = ACTIONS(4002), + [anon_sym_LT_LPAREN] = ACTIONS(4002), + [anon_sym_GT_LPAREN] = ACTIONS(4002), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), + [sym_word] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4002), + }, + [1623] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1624] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4660), + [sym_comment] = ACTIONS(53), + }, + [1625] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4662), + [sym_comment] = ACTIONS(53), + }, + [1626] = { + [anon_sym_RBRACE] = ACTIONS(4662), + [sym_comment] = ACTIONS(53), + }, + [1627] = { + [sym_concatenation] = STATE(1998), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(1998), + [anon_sym_RBRACE] = ACTIONS(4664), + [anon_sym_EQ] = ACTIONS(4666), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4668), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4666), + [anon_sym_COLON_QMARK] = ACTIONS(4666), + [anon_sym_COLON_DASH] = ACTIONS(4666), + [anon_sym_PERCENT] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4666), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1628] = { + [sym__concat] = ACTIONS(4016), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4018), + [anon_sym_SEMI_SEMI] = ACTIONS(4018), + [anon_sym_PIPE_AMP] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_PIPE_PIPE] = ACTIONS(4018), + [sym__special_characters] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4018), + [anon_sym_LT_LPAREN] = ACTIONS(4018), + [anon_sym_GT_LPAREN] = ACTIONS(4018), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), + [sym_word] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4018), + }, + [1629] = { + [sym_concatenation] = STATE(2000), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2000), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4672), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4672), + [anon_sym_COLON_QMARK] = ACTIONS(4672), + [anon_sym_COLON_DASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1630] = { + [sym__concat] = ACTIONS(4026), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_SEMI_SEMI] = ACTIONS(4028), + [anon_sym_PIPE_AMP] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [sym__special_characters] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(4028), + [sym_raw_string] = ACTIONS(4028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), + [anon_sym_BQUOTE] = ACTIONS(4028), + [anon_sym_LT_LPAREN] = ACTIONS(4028), + [anon_sym_GT_LPAREN] = ACTIONS(4028), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), + [sym_word] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4028), + }, + [1631] = { + [sym_concatenation] = STATE(2002), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2002), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4678), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4680), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4678), + [anon_sym_COLON_QMARK] = ACTIONS(4678), + [anon_sym_COLON_DASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1632] = { + [sym__concat] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4038), + [anon_sym_SEMI_SEMI] = ACTIONS(4038), + [anon_sym_PIPE_AMP] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_PIPE_PIPE] = ACTIONS(4038), + [sym__special_characters] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(4038), + [sym_raw_string] = ACTIONS(4038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), + [anon_sym_BQUOTE] = ACTIONS(4038), + [anon_sym_LT_LPAREN] = ACTIONS(4038), + [anon_sym_GT_LPAREN] = ACTIONS(4038), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), + [sym_word] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4038), + }, + [1633] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1634] = { + [sym__concat] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4044), + [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(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), + [sym_word] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4044), + }, + [1635] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1636] = { + [sym_file_descriptor] = ACTIONS(3905), + [sym__concat] = ACTIONS(3905), + [sym_variable_name] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_PIPE_AMP] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_AMP_GT] = ACTIONS(3907), + [anon_sym_AMP_GT_GT] = ACTIONS(3905), + [anon_sym_LT_AMP] = ACTIONS(3905), + [anon_sym_GT_AMP] = ACTIONS(3905), + [sym__special_characters] = ACTIONS(3905), + [anon_sym_DQUOTE] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), + [anon_sym_BQUOTE] = ACTIONS(3905), + [anon_sym_LT_LPAREN] = ACTIONS(3905), + [anon_sym_GT_LPAREN] = ACTIONS(3905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3905), + }, + [1637] = { + [sym_file_descriptor] = ACTIONS(3913), + [sym__concat] = ACTIONS(3913), + [sym_variable_name] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3913), + [anon_sym_PIPE_AMP] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(3913), + [anon_sym_PIPE_PIPE] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3915), + [anon_sym_GT] = ACTIONS(3915), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_AMP_GT] = ACTIONS(3915), + [anon_sym_AMP_GT_GT] = ACTIONS(3913), + [anon_sym_LT_AMP] = ACTIONS(3913), + [anon_sym_GT_AMP] = ACTIONS(3913), + [sym__special_characters] = ACTIONS(3913), + [anon_sym_DQUOTE] = ACTIONS(3913), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), + [anon_sym_BQUOTE] = ACTIONS(3913), + [anon_sym_LT_LPAREN] = ACTIONS(3913), + [anon_sym_GT_LPAREN] = ACTIONS(3913), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3913), + }, + [1638] = { + [sym_file_descriptor] = ACTIONS(4000), + [sym__concat] = ACTIONS(4000), + [sym_variable_name] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_PIPE_AMP] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4000), + [anon_sym_AMP_GT] = ACTIONS(4002), + [anon_sym_AMP_GT_GT] = ACTIONS(4000), + [anon_sym_LT_AMP] = ACTIONS(4000), + [anon_sym_GT_AMP] = ACTIONS(4000), + [sym__special_characters] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), + [anon_sym_BQUOTE] = ACTIONS(4000), + [anon_sym_LT_LPAREN] = ACTIONS(4000), + [anon_sym_GT_LPAREN] = ACTIONS(4000), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4000), + }, + [1639] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1640] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4688), + [sym_comment] = ACTIONS(53), + }, + [1641] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4690), + [sym_comment] = ACTIONS(53), + }, + [1642] = { + [anon_sym_RBRACE] = ACTIONS(4690), + [sym_comment] = ACTIONS(53), + }, + [1643] = { + [sym_concatenation] = STATE(2009), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2009), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_EQ] = ACTIONS(4694), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4696), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_COLON_QMARK] = ACTIONS(4694), + [anon_sym_COLON_DASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1644] = { + [sym_file_descriptor] = ACTIONS(4016), + [sym__concat] = ACTIONS(4016), + [sym_variable_name] = ACTIONS(4016), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4016), + [anon_sym_PIPE_AMP] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_GT_GT] = ACTIONS(4016), + [anon_sym_AMP_GT] = ACTIONS(4018), + [anon_sym_AMP_GT_GT] = ACTIONS(4016), + [anon_sym_LT_AMP] = ACTIONS(4016), + [anon_sym_GT_AMP] = ACTIONS(4016), + [sym__special_characters] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), + [anon_sym_BQUOTE] = ACTIONS(4016), + [anon_sym_LT_LPAREN] = ACTIONS(4016), + [anon_sym_GT_LPAREN] = ACTIONS(4016), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4016), + }, + [1645] = { + [sym_concatenation] = STATE(2011), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2011), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4700), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4700), + [anon_sym_COLON_QMARK] = ACTIONS(4700), + [anon_sym_COLON_DASH] = ACTIONS(4700), + [anon_sym_PERCENT] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1646] = { + [sym_file_descriptor] = ACTIONS(4026), + [sym__concat] = ACTIONS(4026), + [sym_variable_name] = ACTIONS(4026), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4026), + [anon_sym_PIPE_AMP] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_PIPE_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_AMP_GT] = ACTIONS(4028), + [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(4028), + [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(53), + [sym_word] = ACTIONS(4026), + }, + [1647] = { + [sym_concatenation] = STATE(2013), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2013), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4706), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4706), + [anon_sym_COLON_QMARK] = ACTIONS(4706), + [anon_sym_COLON_DASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1648] = { + [sym_file_descriptor] = ACTIONS(4036), + [sym__concat] = ACTIONS(4036), + [sym_variable_name] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_PIPE_AMP] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_GT_GT] = ACTIONS(4036), + [anon_sym_AMP_GT] = ACTIONS(4038), + [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(4038), + [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(53), + [sym_word] = ACTIONS(4036), + }, + [1649] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1650] = { + [sym_file_descriptor] = ACTIONS(4042), + [sym__concat] = ACTIONS(4042), + [sym_variable_name] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4042), + [anon_sym_PIPE_AMP] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_PIPE_PIPE] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_AMP_GT] = ACTIONS(4044), + [anon_sym_AMP_GT_GT] = ACTIONS(4042), + [anon_sym_LT_AMP] = ACTIONS(4042), + [anon_sym_GT_AMP] = ACTIONS(4042), + [sym__special_characters] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [anon_sym_DOLLAR] = ACTIONS(4044), + [sym_raw_string] = ACTIONS(4042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), + [anon_sym_BQUOTE] = ACTIONS(4042), + [anon_sym_LT_LPAREN] = ACTIONS(4042), + [anon_sym_GT_LPAREN] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4042), + }, + [1651] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1652] = { + [sym__concat] = ACTIONS(3905), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym__string_content] = ACTIONS(3905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(177), + }, + [1653] = { + [sym__concat] = ACTIONS(3913), + [anon_sym_DQUOTE] = ACTIONS(3915), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym__string_content] = ACTIONS(3913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), + [anon_sym_BQUOTE] = ACTIONS(3915), + [sym_comment] = ACTIONS(177), + }, + [1654] = { + [sym__concat] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym__string_content] = ACTIONS(4000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), + [anon_sym_BQUOTE] = ACTIONS(4002), + [sym_comment] = ACTIONS(177), + }, + [1655] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1656] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4716), + [sym_comment] = ACTIONS(53), + }, + [1657] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4718), + [sym_comment] = ACTIONS(53), + }, + [1658] = { + [anon_sym_RBRACE] = ACTIONS(4718), + [sym_comment] = ACTIONS(53), + }, + [1659] = { + [sym_concatenation] = STATE(2020), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2020), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4722), + [anon_sym_COLON_QMARK] = ACTIONS(4722), + [anon_sym_COLON_DASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1660] = { + [sym__concat] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym__string_content] = ACTIONS(4016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4018), + [sym_comment] = ACTIONS(177), + }, + [1661] = { + [sym_concatenation] = STATE(2022), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2022), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_COLON_QMARK] = ACTIONS(4728), + [anon_sym_COLON_DASH] = ACTIONS(4728), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_DASH] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1662] = { + [sym__concat] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(4028), + [sym__string_content] = ACTIONS(4026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_comment] = ACTIONS(177), + }, + [1663] = { + [sym_concatenation] = STATE(2024), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2024), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4734), + [anon_sym_COLON_QMARK] = ACTIONS(4734), + [anon_sym_COLON_DASH] = ACTIONS(4734), + [anon_sym_PERCENT] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1664] = { + [sym__concat] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(4038), + [sym__string_content] = ACTIONS(4036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), + [anon_sym_BQUOTE] = ACTIONS(4038), + [sym_comment] = ACTIONS(177), + }, + [1665] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1666] = { + [sym__concat] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4044), + [sym__string_content] = ACTIONS(4042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4044), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4044), + [anon_sym_BQUOTE] = ACTIONS(4044), + [sym_comment] = ACTIONS(177), + }, + [1667] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1668] = { + [sym__concat] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_EQ] = ACTIONS(4744), + [sym__special_characters] = ACTIONS(4744), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(4744), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_COLON] = ACTIONS(4744), + [anon_sym_COLON_QMARK] = ACTIONS(4744), + [anon_sym_COLON_DASH] = ACTIONS(4744), + [anon_sym_PERCENT] = ACTIONS(4744), + [anon_sym_DASH] = ACTIONS(4744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4744), + }, + [1669] = { + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_EQ] = ACTIONS(4744), + [sym__special_characters] = ACTIONS(4744), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(4744), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_COLON] = ACTIONS(4744), + [anon_sym_COLON_QMARK] = ACTIONS(4744), + [anon_sym_COLON_DASH] = ACTIONS(4744), + [anon_sym_PERCENT] = ACTIONS(4744), + [anon_sym_DASH] = ACTIONS(4744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4744), + }, + [1670] = { + [sym__concat] = ACTIONS(4746), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_EQ] = ACTIONS(4748), + [sym__special_characters] = ACTIONS(4748), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(4748), + [sym_raw_string] = ACTIONS(3363), + [anon_sym_POUND] = ACTIONS(3363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(4748), + [anon_sym_COLON_QMARK] = ACTIONS(4748), + [anon_sym_COLON_DASH] = ACTIONS(4748), + [anon_sym_PERCENT] = ACTIONS(4748), + [anon_sym_DASH] = ACTIONS(4748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3363), + [anon_sym_BQUOTE] = ACTIONS(3363), + [anon_sym_LT_LPAREN] = ACTIONS(3363), + [anon_sym_GT_LPAREN] = ACTIONS(3363), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4748), + }, + [1671] = { + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_EQ] = ACTIONS(4748), + [sym__special_characters] = ACTIONS(4748), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(4748), + [sym_raw_string] = ACTIONS(3363), + [anon_sym_POUND] = ACTIONS(3363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(4748), + [anon_sym_COLON_QMARK] = ACTIONS(4748), + [anon_sym_COLON_DASH] = ACTIONS(4748), + [anon_sym_PERCENT] = ACTIONS(4748), + [anon_sym_DASH] = ACTIONS(4748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3363), + [anon_sym_BQUOTE] = ACTIONS(3363), + [anon_sym_LT_LPAREN] = ACTIONS(3363), + [anon_sym_GT_LPAREN] = ACTIONS(3363), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4748), + }, + [1672] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + }, + [1673] = { + [aux_sym_concatenation_repeat1] = STATE(1673), + [sym__concat] = ACTIONS(4750), + [anon_sym_RBRACE] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + }, + [1674] = { + [sym__concat] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1679), + [sym_comment] = ACTIONS(53), + }, + [1675] = { + [anon_sym_DQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [1676] = { + [sym_concatenation] = STATE(2033), + [sym_string] = STATE(2032), + [sym_simple_expansion] = STATE(2032), + [sym_string_expansion] = STATE(2032), + [sym_expansion] = STATE(2032), + [sym_command_substitution] = STATE(2032), + [sym_process_substitution] = STATE(2032), + [anon_sym_RBRACE] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4757), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4759), + }, + [1677] = { + [sym__concat] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [sym_comment] = ACTIONS(53), + }, + [1678] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4761), + }, + [1679] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4763), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1680] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(4765), + [sym_comment] = ACTIONS(53), + }, + [1681] = { + [sym_concatenation] = STATE(2039), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2039), + [anon_sym_RBRACE] = ACTIONS(4767), + [anon_sym_EQ] = ACTIONS(4769), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_COLON] = ACTIONS(4769), + [anon_sym_COLON_QMARK] = ACTIONS(4769), + [anon_sym_COLON_DASH] = ACTIONS(4769), + [anon_sym_PERCENT] = ACTIONS(4769), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1682] = { + [sym_concatenation] = STATE(2042), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2042), + [anon_sym_RBRACE] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4781), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1683] = { + [sym_concatenation] = STATE(2044), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2044), + [anon_sym_RBRACE] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(4783), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4785), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(4787), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1684] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + }, + [1685] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4789), + }, + [1686] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4791), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1687] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + }, + [1688] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4793), + }, + [1689] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1690] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [sym_comment] = ACTIONS(53), + }, + [1691] = { + [sym__concat] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [sym_comment] = ACTIONS(53), + }, + [1692] = { + [sym__concat] = ACTIONS(2756), + [anon_sym_RBRACE] = ACTIONS(2756), + [anon_sym_EQ] = ACTIONS(2758), + [sym__special_characters] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_COLON_DASH] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2758), + }, + [1693] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_EQ] = ACTIONS(2772), + [sym__special_characters] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2770), + [anon_sym_POUND] = ACTIONS(2770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), + [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(2770), + [anon_sym_BQUOTE] = ACTIONS(2770), + [anon_sym_LT_LPAREN] = ACTIONS(2770), + [anon_sym_GT_LPAREN] = ACTIONS(2770), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2772), + }, + [1694] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4795), + [sym_comment] = ACTIONS(53), + }, + [1695] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4797), + [sym_comment] = ACTIONS(53), + }, + [1696] = { + [anon_sym_RBRACE] = ACTIONS(4797), + [sym_comment] = ACTIONS(53), + }, + [1697] = { + [sym_concatenation] = STATE(2051), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2051), + [anon_sym_RBRACE] = ACTIONS(4799), + [anon_sym_EQ] = ACTIONS(4801), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4801), + [anon_sym_COLON_QMARK] = ACTIONS(4801), + [anon_sym_COLON_DASH] = ACTIONS(4801), + [anon_sym_PERCENT] = ACTIONS(4801), + [anon_sym_DASH] = ACTIONS(4801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1698] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [sym__special_characters] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), + [anon_sym_COLON] = ACTIONS(2854), + [anon_sym_COLON_QMARK] = ACTIONS(2854), + [anon_sym_COLON_DASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [anon_sym_LT_LPAREN] = ACTIONS(2852), + [anon_sym_GT_LPAREN] = ACTIONS(2852), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2854), + }, + [1699] = { + [sym_concatenation] = STATE(2054), + [sym_string] = STATE(2053), + [sym_simple_expansion] = STATE(2053), + [sym_string_expansion] = STATE(2053), + [sym_expansion] = STATE(2053), + [sym_command_substitution] = STATE(2053), + [sym_process_substitution] = STATE(2053), + [anon_sym_RBRACE] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(4805), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4807), + }, + [1700] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym_EQ] = ACTIONS(2897), + [sym__special_characters] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR] = ACTIONS(2897), + [sym_raw_string] = ACTIONS(2895), + [anon_sym_POUND] = ACTIONS(2895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_QMARK] = ACTIONS(2897), + [anon_sym_COLON_DASH] = ACTIONS(2897), + [anon_sym_PERCENT] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), + [anon_sym_BQUOTE] = ACTIONS(2895), + [anon_sym_LT_LPAREN] = ACTIONS(2895), + [anon_sym_GT_LPAREN] = ACTIONS(2895), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2897), + }, + [1701] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4809), + }, + [1702] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1703] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2903), + [anon_sym_POUND] = ACTIONS(2903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_QMARK] = ACTIONS(2905), + [anon_sym_COLON_DASH] = ACTIONS(2905), + [anon_sym_PERCENT] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), + [anon_sym_BQUOTE] = ACTIONS(2903), + [anon_sym_LT_LPAREN] = ACTIONS(2903), + [anon_sym_GT_LPAREN] = ACTIONS(2903), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2905), + }, + [1704] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4813), + }, + [1705] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1706] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4817), + }, + [1707] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4797), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1708] = { + [sym_concatenation] = STATE(2061), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2061), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_EQ] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_COLON_QMARK] = ACTIONS(4821), + [anon_sym_COLON_DASH] = ACTIONS(4821), + [anon_sym_PERCENT] = ACTIONS(4821), + [anon_sym_DASH] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1709] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2921), + [sym__special_characters] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2919), + [anon_sym_POUND] = ACTIONS(2919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), + [anon_sym_COLON] = ACTIONS(2921), + [anon_sym_COLON_QMARK] = ACTIONS(2921), + [anon_sym_COLON_DASH] = ACTIONS(2921), + [anon_sym_PERCENT] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), + [anon_sym_BQUOTE] = ACTIONS(2919), + [anon_sym_LT_LPAREN] = ACTIONS(2919), + [anon_sym_GT_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2921), + }, + [1710] = { + [sym_concatenation] = STATE(2063), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2063), + [anon_sym_RBRACE] = ACTIONS(4825), + [anon_sym_EQ] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4827), + [anon_sym_COLON_QMARK] = ACTIONS(4827), + [anon_sym_COLON_DASH] = ACTIONS(4827), + [anon_sym_PERCENT] = ACTIONS(4827), + [anon_sym_DASH] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1711] = { + [sym__simple_heredoc_body] = ACTIONS(4831), + [sym__heredoc_body_beginning] = ACTIONS(4831), + [sym_file_descriptor] = ACTIONS(4831), + [sym__concat] = ACTIONS(4831), + [anon_sym_esac] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4833), + [anon_sym_SEMI_SEMI] = ACTIONS(4833), + [anon_sym_PIPE_AMP] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4833), + [anon_sym_PIPE_PIPE] = ACTIONS(4833), + [anon_sym_EQ_TILDE] = ACTIONS(4833), + [anon_sym_EQ_EQ] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_GT_GT] = ACTIONS(4833), + [anon_sym_AMP_GT] = ACTIONS(4833), + [anon_sym_AMP_GT_GT] = ACTIONS(4833), + [anon_sym_LT_AMP] = ACTIONS(4833), + [anon_sym_GT_AMP] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4833), + [anon_sym_LT_LT_DASH] = ACTIONS(4833), + [anon_sym_LT_LT_LT] = ACTIONS(4833), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), + [anon_sym_BQUOTE] = ACTIONS(4833), + [anon_sym_LT_LPAREN] = ACTIONS(4833), + [anon_sym_GT_LPAREN] = ACTIONS(4833), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4833), + }, + [1712] = { + [sym__simple_heredoc_body] = ACTIONS(4835), + [sym__heredoc_body_beginning] = ACTIONS(4835), + [sym_file_descriptor] = ACTIONS(4835), + [sym__concat] = ACTIONS(4835), + [anon_sym_esac] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4837), + [anon_sym_SEMI_SEMI] = ACTIONS(4837), + [anon_sym_PIPE_AMP] = ACTIONS(4837), + [anon_sym_AMP_AMP] = ACTIONS(4837), + [anon_sym_PIPE_PIPE] = ACTIONS(4837), + [anon_sym_EQ_TILDE] = ACTIONS(4837), + [anon_sym_EQ_EQ] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4837), + [anon_sym_AMP_GT] = ACTIONS(4837), + [anon_sym_AMP_GT_GT] = ACTIONS(4837), + [anon_sym_LT_AMP] = ACTIONS(4837), + [anon_sym_GT_AMP] = ACTIONS(4837), + [anon_sym_LT_LT] = ACTIONS(4837), + [anon_sym_LT_LT_DASH] = ACTIONS(4837), + [anon_sym_LT_LT_LT] = ACTIONS(4837), + [sym__special_characters] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(4837), + [anon_sym_LT_LPAREN] = ACTIONS(4837), + [anon_sym_GT_LPAREN] = ACTIONS(4837), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4837), + }, + [1713] = { + [sym__simple_heredoc_body] = ACTIONS(4839), + [sym__heredoc_body_beginning] = ACTIONS(4839), + [sym_file_descriptor] = ACTIONS(4839), + [sym__concat] = ACTIONS(4839), + [anon_sym_esac] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4841), + [anon_sym_SEMI_SEMI] = ACTIONS(4841), + [anon_sym_PIPE_AMP] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(4841), + [anon_sym_EQ_TILDE] = ACTIONS(4841), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_GT_GT] = ACTIONS(4841), + [anon_sym_AMP_GT] = ACTIONS(4841), + [anon_sym_AMP_GT_GT] = ACTIONS(4841), + [anon_sym_LT_AMP] = ACTIONS(4841), + [anon_sym_GT_AMP] = ACTIONS(4841), + [anon_sym_LT_LT] = ACTIONS(4841), + [anon_sym_LT_LT_DASH] = ACTIONS(4841), + [anon_sym_LT_LT_LT] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(4841), + [anon_sym_DQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), + [anon_sym_BQUOTE] = ACTIONS(4841), + [anon_sym_LT_LPAREN] = ACTIONS(4841), + [anon_sym_GT_LPAREN] = ACTIONS(4841), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4841), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4841), + }, + [1714] = { + [sym__simple_heredoc_body] = ACTIONS(4843), + [sym__heredoc_body_beginning] = ACTIONS(4843), + [sym_file_descriptor] = ACTIONS(4843), + [sym__concat] = ACTIONS(4843), + [anon_sym_esac] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4845), + [anon_sym_SEMI_SEMI] = ACTIONS(4845), + [anon_sym_PIPE_AMP] = ACTIONS(4845), + [anon_sym_AMP_AMP] = ACTIONS(4845), + [anon_sym_PIPE_PIPE] = ACTIONS(4845), + [anon_sym_EQ_TILDE] = ACTIONS(4845), + [anon_sym_EQ_EQ] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4845), + [anon_sym_AMP_GT] = ACTIONS(4845), + [anon_sym_AMP_GT_GT] = ACTIONS(4845), + [anon_sym_LT_AMP] = ACTIONS(4845), + [anon_sym_GT_AMP] = ACTIONS(4845), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_LT_LT_DASH] = ACTIONS(4845), + [anon_sym_LT_LT_LT] = ACTIONS(4845), + [sym__special_characters] = ACTIONS(4845), + [anon_sym_DQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), + [anon_sym_BQUOTE] = ACTIONS(4845), + [anon_sym_LT_LPAREN] = ACTIONS(4845), + [anon_sym_GT_LPAREN] = ACTIONS(4845), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4845), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4845), + }, + [1715] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1716] = { + [sym__simple_heredoc_body] = ACTIONS(4849), + [sym__heredoc_body_beginning] = ACTIONS(4849), + [sym_file_descriptor] = ACTIONS(4849), + [sym__concat] = ACTIONS(4849), + [anon_sym_esac] = ACTIONS(4851), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [anon_sym_PIPE_AMP] = ACTIONS(4851), + [anon_sym_AMP_AMP] = ACTIONS(4851), + [anon_sym_PIPE_PIPE] = ACTIONS(4851), + [anon_sym_EQ_TILDE] = ACTIONS(4851), + [anon_sym_EQ_EQ] = ACTIONS(4851), + [anon_sym_LT] = ACTIONS(4851), + [anon_sym_GT] = ACTIONS(4851), + [anon_sym_GT_GT] = ACTIONS(4851), + [anon_sym_AMP_GT] = ACTIONS(4851), + [anon_sym_AMP_GT_GT] = ACTIONS(4851), + [anon_sym_LT_AMP] = ACTIONS(4851), + [anon_sym_GT_AMP] = ACTIONS(4851), + [anon_sym_LT_LT] = ACTIONS(4851), + [anon_sym_LT_LT_DASH] = ACTIONS(4851), + [anon_sym_LT_LT_LT] = ACTIONS(4851), + [sym__special_characters] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), + [anon_sym_BQUOTE] = ACTIONS(4851), + [anon_sym_LT_LPAREN] = ACTIONS(4851), + [anon_sym_GT_LPAREN] = ACTIONS(4851), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4849), + [anon_sym_AMP] = ACTIONS(4851), + }, + [1717] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4853), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1718] = { + [sym__simple_heredoc_body] = ACTIONS(4855), + [sym__heredoc_body_beginning] = ACTIONS(4855), + [sym_file_descriptor] = ACTIONS(4855), + [sym__concat] = ACTIONS(4855), + [anon_sym_esac] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4857), + [anon_sym_SEMI_SEMI] = ACTIONS(4857), + [anon_sym_PIPE_AMP] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [anon_sym_EQ_TILDE] = ACTIONS(4857), + [anon_sym_EQ_EQ] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_GT_GT] = ACTIONS(4857), + [anon_sym_AMP_GT] = ACTIONS(4857), + [anon_sym_AMP_GT_GT] = ACTIONS(4857), + [anon_sym_LT_AMP] = ACTIONS(4857), + [anon_sym_GT_AMP] = ACTIONS(4857), + [anon_sym_LT_LT] = ACTIONS(4857), + [anon_sym_LT_LT_DASH] = ACTIONS(4857), + [anon_sym_LT_LT_LT] = ACTIONS(4857), + [sym__special_characters] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), + [anon_sym_BQUOTE] = ACTIONS(4857), + [anon_sym_LT_LPAREN] = ACTIONS(4857), + [anon_sym_GT_LPAREN] = ACTIONS(4857), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4857), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LF] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4857), + }, + [1719] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1720] = { + [sym__simple_heredoc_body] = ACTIONS(4861), + [sym__heredoc_body_beginning] = ACTIONS(4861), + [sym_file_descriptor] = ACTIONS(4861), + [sym__concat] = ACTIONS(4861), + [anon_sym_esac] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_SEMI_SEMI] = ACTIONS(4863), + [anon_sym_PIPE_AMP] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [anon_sym_EQ_TILDE] = ACTIONS(4863), + [anon_sym_EQ_EQ] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4863), + [anon_sym_GT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4863), + [anon_sym_AMP_GT] = ACTIONS(4863), + [anon_sym_AMP_GT_GT] = ACTIONS(4863), + [anon_sym_LT_AMP] = ACTIONS(4863), + [anon_sym_GT_AMP] = ACTIONS(4863), + [anon_sym_LT_LT] = ACTIONS(4863), + [anon_sym_LT_LT_DASH] = ACTIONS(4863), + [anon_sym_LT_LT_LT] = ACTIONS(4863), + [sym__special_characters] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(4863), + [anon_sym_LT_LPAREN] = ACTIONS(4863), + [anon_sym_GT_LPAREN] = ACTIONS(4863), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4863), + }, + [1721] = { + [sym__simple_heredoc_body] = ACTIONS(4865), + [sym__heredoc_body_beginning] = ACTIONS(4865), + [sym_file_descriptor] = ACTIONS(4865), + [sym__concat] = ACTIONS(4865), + [anon_sym_esac] = ACTIONS(4867), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4867), + [anon_sym_SEMI_SEMI] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [anon_sym_EQ_TILDE] = ACTIONS(4867), + [anon_sym_EQ_EQ] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4867), + [anon_sym_GT] = ACTIONS(4867), + [anon_sym_GT_GT] = ACTIONS(4867), + [anon_sym_AMP_GT] = ACTIONS(4867), + [anon_sym_AMP_GT_GT] = ACTIONS(4867), + [anon_sym_LT_AMP] = ACTIONS(4867), + [anon_sym_GT_AMP] = ACTIONS(4867), + [anon_sym_LT_LT] = ACTIONS(4867), + [anon_sym_LT_LT_DASH] = ACTIONS(4867), + [anon_sym_LT_LT_LT] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(4867), + [anon_sym_DQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4867), + [anon_sym_LT_LPAREN] = ACTIONS(4867), + [anon_sym_GT_LPAREN] = ACTIONS(4867), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4867), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_LF] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4867), + }, + [1722] = { + [aux_sym_concatenation_repeat1] = STATE(1722), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(2667), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1672), + }, + [1723] = { + [sym_do_group] = STATE(2067), + [anon_sym_do] = ACTIONS(2929), + [sym_comment] = ACTIONS(53), + }, + [1724] = { + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_PIPE_AMP] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(2273), + [anon_sym_PIPE_PIPE] = ACTIONS(2273), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_comment] = ACTIONS(53), + }, + [1725] = { + [sym__terminated_statement] = STATE(1058), + [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(1058), + [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(4869), + [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), + }, + [1726] = { + [sym__simple_heredoc_body] = ACTIONS(3512), + [sym__heredoc_body_beginning] = ACTIONS(3512), + [sym_file_descriptor] = ACTIONS(3512), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_RPAREN] = ACTIONS(3512), + [anon_sym_PIPE_AMP] = ACTIONS(3512), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3514), + [anon_sym_GT] = ACTIONS(3514), + [anon_sym_GT_GT] = ACTIONS(3512), + [anon_sym_AMP_GT] = ACTIONS(3514), + [anon_sym_AMP_GT_GT] = ACTIONS(3512), + [anon_sym_LT_AMP] = ACTIONS(3512), + [anon_sym_GT_AMP] = ACTIONS(3512), + [anon_sym_LT_LT] = ACTIONS(3514), + [anon_sym_LT_LT_DASH] = ACTIONS(3512), + [anon_sym_LT_LT_LT] = ACTIONS(3512), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_comment] = ACTIONS(53), + }, + [1727] = { + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_RPAREN] = ACTIONS(3520), + [anon_sym_PIPE_AMP] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_PIPE_PIPE] = ACTIONS(3520), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_comment] = ACTIONS(53), + }, + [1728] = { + [anon_sym_PIPE] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3528), + [anon_sym_PIPE_AMP] = ACTIONS(3528), + [anon_sym_AMP_AMP] = ACTIONS(3528), + [anon_sym_PIPE_PIPE] = ACTIONS(3528), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_comment] = ACTIONS(53), + }, + [1729] = { + [anon_sym_fi] = ACTIONS(4871), + [sym_comment] = ACTIONS(53), + }, + [1730] = { + [sym_elif_clause] = STATE(608), + [sym_else_clause] = STATE(2070), + [aux_sym_if_statement_repeat1] = STATE(1066), + [anon_sym_fi] = ACTIONS(4871), + [anon_sym_elif] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2297), + [sym_comment] = ACTIONS(53), + }, + [1731] = { + [anon_sym_PIPE] = ACTIONS(3537), + [anon_sym_RPAREN] = ACTIONS(3539), + [anon_sym_PIPE_AMP] = ACTIONS(3539), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_PIPE_PIPE] = ACTIONS(3539), + [anon_sym_BQUOTE] = ACTIONS(3539), + [sym_comment] = ACTIONS(53), + }, + [1732] = { + [anon_sym_esac] = ACTIONS(4873), + [sym_comment] = ACTIONS(53), + }, + [1733] = { + [sym_case_item] = STATE(1508), + [sym_last_case_item] = STATE(2072), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1508), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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), + }, + [1734] = { + [sym_case_item] = STATE(2074), + [sym_last_case_item] = STATE(2072), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(2074), + [anon_sym_esac] = ACTIONS(4875), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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(2305), + }, + [1735] = { + [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), + [sym_comment] = ACTIONS(53), + }, + [1736] = { + [anon_sym_esac] = ACTIONS(4877), + [sym_comment] = ACTIONS(53), + }, + [1737] = { + [sym_case_item] = STATE(1508), + [sym_last_case_item] = STATE(2076), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1508), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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), + }, + [1738] = { + [sym_case_item] = STATE(2078), + [sym_last_case_item] = STATE(2076), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(2078), + [anon_sym_esac] = ACTIONS(4879), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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(2305), + }, + [1739] = { + [sym_file_redirect] = STATE(2079), + [sym_file_descriptor] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(3595), + [anon_sym_RPAREN] = ACTIONS(3597), + [anon_sym_PIPE_AMP] = ACTIONS(3597), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_GT_GT] = ACTIONS(2955), + [anon_sym_AMP_GT] = ACTIONS(2953), + [anon_sym_AMP_GT_GT] = ACTIONS(2955), + [anon_sym_LT_AMP] = ACTIONS(2955), + [anon_sym_GT_AMP] = ACTIONS(2955), + [sym_comment] = ACTIONS(53), + }, + [1740] = { + [sym_file_descriptor] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(3601), + [anon_sym_RPAREN] = ACTIONS(3599), + [anon_sym_PIPE_AMP] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_GT] = ACTIONS(3601), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_AMP_GT] = ACTIONS(3601), + [anon_sym_AMP_GT_GT] = ACTIONS(3599), + [anon_sym_LT_AMP] = ACTIONS(3599), + [anon_sym_GT_AMP] = ACTIONS(3599), + [anon_sym_BQUOTE] = ACTIONS(3599), + [sym_comment] = ACTIONS(53), + }, + [1741] = { + [sym_concatenation] = STATE(2082), + [sym_string] = STATE(2081), + [sym_simple_expansion] = STATE(2081), + [sym_string_expansion] = STATE(2081), + [sym_expansion] = STATE(2081), + [sym_command_substitution] = STATE(2081), + [sym_process_substitution] = STATE(2081), + [sym__special_characters] = ACTIONS(4881), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(851), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4883), + }, + [1742] = { + [aux_sym_concatenation_repeat1] = STATE(2083), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(671), + [anon_sym_PIPE_AMP] = ACTIONS(671), + [anon_sym_AMP_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(671), + [sym_comment] = ACTIONS(53), + }, + [1743] = { + [aux_sym_concatenation_repeat1] = STATE(2083), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + }, + [1744] = { + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + }, + [1745] = { + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_RPAREN] = ACTIONS(3629), + [anon_sym_PIPE_AMP] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3629), + [anon_sym_PIPE_PIPE] = ACTIONS(3629), + [anon_sym_BQUOTE] = ACTIONS(3629), + [sym_comment] = ACTIONS(53), + }, + [1746] = { + [sym_concatenation] = STATE(2086), + [sym_string] = STATE(2085), + [sym_simple_expansion] = STATE(2085), + [sym_string_expansion] = STATE(2085), + [sym_expansion] = STATE(2085), + [sym_command_substitution] = STATE(2085), + [sym_process_substitution] = STATE(2085), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4092), + [sym_raw_string] = ACTIONS(4887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4100), + [anon_sym_LT_LPAREN] = ACTIONS(4102), + [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4887), + }, + [1747] = { + [aux_sym_concatenation_repeat1] = STATE(2088), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(671), + [anon_sym_PIPE_AMP] = ACTIONS(671), + [anon_sym_AMP_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(671), + [anon_sym_LT_AMP] = ACTIONS(671), + [anon_sym_GT_AMP] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(671), + [anon_sym_LT_LT_LT] = ACTIONS(671), + [sym_comment] = ACTIONS(53), + }, + [1748] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(2091), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4893), + [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), + }, + [1749] = { + [sym_string] = STATE(2093), + [anon_sym_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_POUND] = ACTIONS(4895), + [anon_sym_DASH] = ACTIONS(4895), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4899), + [anon_sym_STAR] = ACTIONS(4895), + [anon_sym_AT] = ACTIONS(4895), + [anon_sym_QMARK] = ACTIONS(4895), + [anon_sym_0] = ACTIONS(4901), + [anon_sym__] = ACTIONS(4901), + }, + [1750] = { + [aux_sym_concatenation_repeat1] = STATE(2088), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [anon_sym_LT_LT_LT] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + }, + [1751] = { + [sym_subscript] = STATE(2099), + [sym_variable_name] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4905), + [anon_sym_POUND] = ACTIONS(4907), + [anon_sym_DASH] = ACTIONS(4905), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_AT] = ACTIONS(4905), + [anon_sym_QMARK] = ACTIONS(4905), + [anon_sym_0] = ACTIONS(4911), + [anon_sym__] = ACTIONS(4911), + }, + [1752] = { + [sym_for_statement] = STATE(2100), + [sym_while_statement] = STATE(2100), + [sym_if_statement] = STATE(2100), + [sym_case_statement] = STATE(2100), + [sym_function_definition] = STATE(2100), + [sym_subshell] = STATE(2100), + [sym_pipeline] = STATE(2100), + [sym_list] = STATE(2100), + [sym_negated_command] = STATE(2100), + [sym_test_command] = STATE(2100), + [sym_declaration_command] = STATE(2100), + [sym_unset_command] = STATE(2100), + [sym_command] = STATE(2100), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(2101), + [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), + }, + [1753] = { + [sym_for_statement] = STATE(2102), + [sym_while_statement] = STATE(2102), + [sym_if_statement] = STATE(2102), + [sym_case_statement] = STATE(2102), + [sym_function_definition] = STATE(2102), + [sym_subshell] = STATE(2102), + [sym_pipeline] = STATE(2102), + [sym_list] = STATE(2102), + [sym_negated_command] = STATE(2102), + [sym_test_command] = STATE(2102), + [sym_declaration_command] = STATE(2102), + [sym_unset_command] = STATE(2102), + [sym_command] = STATE(2102), + [sym_command_name] = STATE(181), + [sym_variable_assignment] = STATE(2103), + [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), + }, + [1754] = { + [sym_for_statement] = STATE(2104), + [sym_while_statement] = STATE(2104), + [sym_if_statement] = STATE(2104), + [sym_case_statement] = STATE(2104), + [sym_function_definition] = STATE(2104), + [sym_subshell] = STATE(2104), + [sym_pipeline] = STATE(2104), + [sym_list] = STATE(2104), + [sym_negated_command] = STATE(2104), + [sym_test_command] = STATE(2104), + [sym_declaration_command] = STATE(2104), + [sym_unset_command] = STATE(2104), + [sym_command] = STATE(2104), + [sym_command_name] = STATE(164), + [sym_variable_assignment] = STATE(2105), + [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), + }, + [1755] = { + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [anon_sym_LT_LT_LT] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + }, + [1756] = { + [sym_file_descriptor] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_RPAREN] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(2094), + [anon_sym_AMP_AMP] = ACTIONS(2094), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_GT] = ACTIONS(2096), + [anon_sym_GT_GT] = ACTIONS(2094), + [anon_sym_AMP_GT] = ACTIONS(2096), + [anon_sym_AMP_GT_GT] = ACTIONS(2094), + [anon_sym_LT_AMP] = ACTIONS(2094), + [anon_sym_GT_AMP] = ACTIONS(2094), + [anon_sym_LT_LT] = ACTIONS(2096), + [anon_sym_LT_LT_DASH] = ACTIONS(2094), + [anon_sym_LT_LT_LT] = ACTIONS(2094), + [anon_sym_BQUOTE] = ACTIONS(2094), + [sym_comment] = ACTIONS(53), + }, + [1757] = { + [aux_sym_concatenation_repeat1] = STATE(2088), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_PIPE_AMP] = ACTIONS(2098), + [anon_sym_AMP_AMP] = ACTIONS(2098), + [anon_sym_PIPE_PIPE] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2098), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2098), + [anon_sym_LT_AMP] = ACTIONS(2098), + [anon_sym_GT_AMP] = ACTIONS(2098), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2098), + [anon_sym_LT_LT_LT] = ACTIONS(2098), + [sym_comment] = ACTIONS(53), + }, + [1758] = { + [aux_sym_concatenation_repeat1] = STATE(2088), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_PIPE_AMP] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2102), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2102), + [anon_sym_LT_AMP] = ACTIONS(2102), + [anon_sym_GT_AMP] = ACTIONS(2102), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2102), + [anon_sym_LT_LT_LT] = ACTIONS(2102), + [sym_comment] = ACTIONS(53), + }, + [1759] = { + [sym_file_descriptor] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_PIPE_AMP] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2102), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2102), + [anon_sym_LT_AMP] = ACTIONS(2102), + [anon_sym_GT_AMP] = ACTIONS(2102), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2102), + [anon_sym_LT_LT_LT] = ACTIONS(2102), + [anon_sym_BQUOTE] = ACTIONS(2102), + [sym_comment] = ACTIONS(53), + }, + [1760] = { + [sym_file_redirect] = STATE(1760), + [sym_heredoc_redirect] = STATE(1760), + [sym_herestring_redirect] = STATE(1760), + [aux_sym_while_statement_repeat1] = STATE(1760), + [sym_file_descriptor] = ACTIONS(4913), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(2110), + [anon_sym_PIPE_AMP] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_PIPE_PIPE] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_GT_GT] = ACTIONS(4919), + [anon_sym_AMP_GT] = ACTIONS(4916), + [anon_sym_AMP_GT_GT] = ACTIONS(4919), + [anon_sym_LT_AMP] = ACTIONS(4919), + [anon_sym_GT_AMP] = ACTIONS(4919), + [anon_sym_LT_LT] = ACTIONS(4922), + [anon_sym_LT_LT_DASH] = ACTIONS(4925), + [anon_sym_LT_LT_LT] = ACTIONS(4928), + [sym_comment] = ACTIONS(53), + }, + [1761] = { + [sym_variable_name] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2167), + [anon_sym_PIPE_AMP] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2167), + [anon_sym_PIPE_PIPE] = ACTIONS(2167), + [sym__special_characters] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2169), + [sym_raw_string] = ACTIONS(2167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2167), + [anon_sym_BQUOTE] = ACTIONS(2167), + [anon_sym_LT_LPAREN] = ACTIONS(2167), + [anon_sym_GT_LPAREN] = ACTIONS(2167), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2169), + [sym_word] = ACTIONS(2169), + }, + [1762] = { + [sym_concatenation] = STATE(1031), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(1031), + [anon_sym_RPAREN] = ACTIONS(4931), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1135), + }, + [1763] = { + [sym__concat] = ACTIONS(2756), + [sym_variable_name] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [sym__special_characters] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + }, + [1764] = { + [sym__concat] = ACTIONS(2770), + [sym_variable_name] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2770), + [anon_sym_PIPE_AMP] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [sym__special_characters] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), + [anon_sym_BQUOTE] = ACTIONS(2770), + [anon_sym_LT_LPAREN] = ACTIONS(2770), + [anon_sym_GT_LPAREN] = ACTIONS(2770), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), + [sym_word] = ACTIONS(2772), + }, + [1765] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4933), + [sym_comment] = ACTIONS(53), + }, + [1766] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4935), + [sym_comment] = ACTIONS(53), + }, + [1767] = { + [anon_sym_RBRACE] = ACTIONS(4935), + [sym_comment] = ACTIONS(53), + }, + [1768] = { + [sym_concatenation] = STATE(2110), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2110), + [anon_sym_RBRACE] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4939), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_COLON_QMARK] = ACTIONS(4939), + [anon_sym_COLON_DASH] = ACTIONS(4939), + [anon_sym_PERCENT] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1769] = { + [sym__concat] = ACTIONS(2852), + [sym_variable_name] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_PIPE_AMP] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [sym__special_characters] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [anon_sym_LT_LPAREN] = ACTIONS(2852), + [anon_sym_GT_LPAREN] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), + [sym_word] = ACTIONS(2854), + }, + [1770] = { + [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), + [anon_sym_RBRACE] = ACTIONS(4935), + [sym__special_characters] = ACTIONS(4943), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4945), + }, + [1771] = { + [sym__concat] = ACTIONS(2895), + [sym_variable_name] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_PIPE_AMP] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [sym__special_characters] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR] = ACTIONS(2897), + [sym_raw_string] = ACTIONS(2895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), + [anon_sym_BQUOTE] = ACTIONS(2895), + [anon_sym_LT_LPAREN] = ACTIONS(2895), + [anon_sym_GT_LPAREN] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), + [sym_word] = ACTIONS(2897), + }, + [1772] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4947), + }, + [1773] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1774] = { + [sym__concat] = ACTIONS(2903), + [sym_variable_name] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2903), + [anon_sym_PIPE_AMP] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [sym__special_characters] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), + [anon_sym_BQUOTE] = ACTIONS(2903), + [anon_sym_LT_LPAREN] = ACTIONS(2903), + [anon_sym_GT_LPAREN] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), + [sym_word] = ACTIONS(2905), + }, + [1775] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4951), + }, + [1776] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1777] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4955), + }, + [1778] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1779] = { + [sym_concatenation] = STATE(2120), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2120), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_COLON_QMARK] = ACTIONS(4959), + [anon_sym_COLON_DASH] = ACTIONS(4959), + [anon_sym_PERCENT] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1780] = { + [sym__concat] = ACTIONS(2919), + [sym_variable_name] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_PIPE_AMP] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [sym__special_characters] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), + [anon_sym_BQUOTE] = ACTIONS(2919), + [anon_sym_LT_LPAREN] = ACTIONS(2919), + [anon_sym_GT_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), + [sym_word] = ACTIONS(2921), + }, + [1781] = { + [sym_concatenation] = STATE(2122), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2122), + [anon_sym_RBRACE] = ACTIONS(4963), + [anon_sym_EQ] = ACTIONS(4965), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4965), + [anon_sym_COLON_QMARK] = ACTIONS(4965), + [anon_sym_COLON_DASH] = ACTIONS(4965), + [anon_sym_PERCENT] = ACTIONS(4965), + [anon_sym_DASH] = ACTIONS(4965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1782] = { + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [sym__special_characters] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + }, + [1783] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2770), + [anon_sym_PIPE_AMP] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [sym__special_characters] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), + [anon_sym_BQUOTE] = ACTIONS(2770), + [anon_sym_LT_LPAREN] = ACTIONS(2770), + [anon_sym_GT_LPAREN] = ACTIONS(2770), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), + [sym_word] = ACTIONS(2772), + }, + [1784] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4969), + [sym_comment] = ACTIONS(53), + }, + [1785] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(4971), + [sym_comment] = ACTIONS(53), + }, + [1786] = { + [anon_sym_RBRACE] = ACTIONS(4971), + [sym_comment] = ACTIONS(53), + }, + [1787] = { + [sym_concatenation] = STATE(2126), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2126), + [anon_sym_RBRACE] = ACTIONS(4973), + [anon_sym_EQ] = ACTIONS(4975), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4975), + [anon_sym_COLON_QMARK] = ACTIONS(4975), + [anon_sym_COLON_DASH] = ACTIONS(4975), + [anon_sym_PERCENT] = ACTIONS(4975), + [anon_sym_DASH] = ACTIONS(4975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1788] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_PIPE_AMP] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [sym__special_characters] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [anon_sym_LT_LPAREN] = ACTIONS(2852), + [anon_sym_GT_LPAREN] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), + [sym_word] = ACTIONS(2854), + }, + [1789] = { + [sym_concatenation] = STATE(2129), + [sym_string] = STATE(2128), + [sym_simple_expansion] = STATE(2128), + [sym_string_expansion] = STATE(2128), + [sym_expansion] = STATE(2128), + [sym_command_substitution] = STATE(2128), + [sym_process_substitution] = STATE(2128), + [anon_sym_RBRACE] = ACTIONS(4971), + [sym__special_characters] = ACTIONS(4979), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4981), + }, + [1790] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_PIPE_AMP] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [sym__special_characters] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR] = ACTIONS(2897), + [sym_raw_string] = ACTIONS(2895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), + [anon_sym_BQUOTE] = ACTIONS(2895), + [anon_sym_LT_LPAREN] = ACTIONS(2895), + [anon_sym_GT_LPAREN] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), + [sym_word] = ACTIONS(2897), + }, + [1791] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4983), + }, + [1792] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1793] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2903), + [anon_sym_PIPE_AMP] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [sym__special_characters] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), + [anon_sym_BQUOTE] = ACTIONS(2903), + [anon_sym_LT_LPAREN] = ACTIONS(2903), + [anon_sym_GT_LPAREN] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), + [sym_word] = ACTIONS(2905), + }, + [1794] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4987), + }, + [1795] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1796] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(4991), + }, + [1797] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(4971), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1798] = { + [sym_concatenation] = STATE(2136), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2136), + [anon_sym_RBRACE] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4995), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(4997), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_COLON_QMARK] = ACTIONS(4995), + [anon_sym_COLON_DASH] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1799] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_PIPE_AMP] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [sym__special_characters] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), + [anon_sym_BQUOTE] = ACTIONS(2919), + [anon_sym_LT_LPAREN] = ACTIONS(2919), + [anon_sym_GT_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), + [sym_word] = ACTIONS(2921), + }, + [1800] = { + [sym_concatenation] = STATE(2138), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2138), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(5001), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(5001), + [anon_sym_COLON_DASH] = ACTIONS(5001), + [anon_sym_PERCENT] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1801] = { + [sym__simple_heredoc_body] = ACTIONS(3905), + [sym__heredoc_body_beginning] = ACTIONS(3905), + [sym_file_descriptor] = ACTIONS(3905), + [sym__concat] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_PIPE_AMP] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_EQ_TILDE] = ACTIONS(3907), + [anon_sym_EQ_EQ] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_AMP_GT] = ACTIONS(3907), + [anon_sym_AMP_GT_GT] = ACTIONS(3905), + [anon_sym_LT_AMP] = ACTIONS(3905), + [anon_sym_GT_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3907), + [anon_sym_LT_LT_DASH] = ACTIONS(3905), + [anon_sym_LT_LT_LT] = ACTIONS(3905), + [sym__special_characters] = ACTIONS(3905), + [anon_sym_DQUOTE] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), + [anon_sym_BQUOTE] = ACTIONS(3905), + [anon_sym_LT_LPAREN] = ACTIONS(3905), + [anon_sym_GT_LPAREN] = ACTIONS(3905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3907), + }, + [1802] = { + [sym__simple_heredoc_body] = ACTIONS(3913), + [sym__heredoc_body_beginning] = ACTIONS(3913), + [sym_file_descriptor] = ACTIONS(3913), + [sym__concat] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3913), + [anon_sym_PIPE_AMP] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(3913), + [anon_sym_PIPE_PIPE] = ACTIONS(3913), + [anon_sym_EQ_TILDE] = ACTIONS(3915), + [anon_sym_EQ_EQ] = ACTIONS(3915), + [anon_sym_LT] = ACTIONS(3915), + [anon_sym_GT] = ACTIONS(3915), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_AMP_GT] = ACTIONS(3915), + [anon_sym_AMP_GT_GT] = ACTIONS(3913), + [anon_sym_LT_AMP] = ACTIONS(3913), + [anon_sym_GT_AMP] = ACTIONS(3913), + [anon_sym_LT_LT] = ACTIONS(3915), + [anon_sym_LT_LT_DASH] = ACTIONS(3913), + [anon_sym_LT_LT_LT] = ACTIONS(3913), + [sym__special_characters] = ACTIONS(3913), + [anon_sym_DQUOTE] = ACTIONS(3913), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), + [anon_sym_BQUOTE] = ACTIONS(3913), + [anon_sym_LT_LPAREN] = ACTIONS(3913), + [anon_sym_GT_LPAREN] = ACTIONS(3913), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3915), + }, + [1803] = { + [sym__simple_heredoc_body] = ACTIONS(4000), + [sym__heredoc_body_beginning] = ACTIONS(4000), + [sym_file_descriptor] = ACTIONS(4000), + [sym__concat] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_PIPE_AMP] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_EQ_TILDE] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4000), + [anon_sym_AMP_GT] = ACTIONS(4002), + [anon_sym_AMP_GT_GT] = ACTIONS(4000), + [anon_sym_LT_AMP] = ACTIONS(4000), + [anon_sym_GT_AMP] = ACTIONS(4000), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_LT_LT_DASH] = ACTIONS(4000), + [anon_sym_LT_LT_LT] = ACTIONS(4000), + [sym__special_characters] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), + [anon_sym_BQUOTE] = ACTIONS(4000), + [anon_sym_LT_LPAREN] = ACTIONS(4000), + [anon_sym_GT_LPAREN] = ACTIONS(4000), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4002), + }, + [1804] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1805] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5007), + [sym_comment] = ACTIONS(53), + }, + [1806] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5009), + [sym_comment] = ACTIONS(53), + }, + [1807] = { + [anon_sym_RBRACE] = ACTIONS(5009), + [sym_comment] = ACTIONS(53), + }, + [1808] = { + [sym_concatenation] = STATE(2143), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2143), + [anon_sym_RBRACE] = ACTIONS(5011), + [anon_sym_EQ] = ACTIONS(5013), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5013), + [anon_sym_COLON_QMARK] = ACTIONS(5013), + [anon_sym_COLON_DASH] = ACTIONS(5013), + [anon_sym_PERCENT] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1809] = { + [sym__simple_heredoc_body] = ACTIONS(4016), + [sym__heredoc_body_beginning] = ACTIONS(4016), + [sym_file_descriptor] = ACTIONS(4016), + [sym__concat] = ACTIONS(4016), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4016), + [anon_sym_PIPE_AMP] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_EQ_TILDE] = ACTIONS(4018), + [anon_sym_EQ_EQ] = ACTIONS(4018), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_GT_GT] = ACTIONS(4016), + [anon_sym_AMP_GT] = ACTIONS(4018), + [anon_sym_AMP_GT_GT] = ACTIONS(4016), + [anon_sym_LT_AMP] = ACTIONS(4016), + [anon_sym_GT_AMP] = ACTIONS(4016), + [anon_sym_LT_LT] = ACTIONS(4018), + [anon_sym_LT_LT_DASH] = ACTIONS(4016), + [anon_sym_LT_LT_LT] = ACTIONS(4016), + [sym__special_characters] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), + [anon_sym_BQUOTE] = ACTIONS(4016), + [anon_sym_LT_LPAREN] = ACTIONS(4016), + [anon_sym_GT_LPAREN] = ACTIONS(4016), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4018), + }, + [1810] = { + [sym_concatenation] = STATE(2145), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2145), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ] = ACTIONS(5019), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym_COLON_QMARK] = ACTIONS(5019), + [anon_sym_COLON_DASH] = ACTIONS(5019), + [anon_sym_PERCENT] = ACTIONS(5019), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1811] = { + [sym__simple_heredoc_body] = ACTIONS(4026), + [sym__heredoc_body_beginning] = ACTIONS(4026), + [sym_file_descriptor] = ACTIONS(4026), + [sym__concat] = ACTIONS(4026), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = 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(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_AMP_GT] = ACTIONS(4028), + [anon_sym_AMP_GT_GT] = ACTIONS(4026), + [anon_sym_LT_AMP] = ACTIONS(4026), + [anon_sym_GT_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [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(4028), + [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(53), + [sym_word] = ACTIONS(4028), + }, + [1812] = { + [sym_concatenation] = STATE(2147), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2147), + [anon_sym_RBRACE] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5025), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5025), + [anon_sym_COLON_QMARK] = ACTIONS(5025), + [anon_sym_COLON_DASH] = ACTIONS(5025), + [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1813] = { + [sym__simple_heredoc_body] = ACTIONS(4036), + [sym__heredoc_body_beginning] = ACTIONS(4036), + [sym_file_descriptor] = ACTIONS(4036), + [sym__concat] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = 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(4038), + [anon_sym_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_GT_GT] = ACTIONS(4036), + [anon_sym_AMP_GT] = ACTIONS(4038), + [anon_sym_AMP_GT_GT] = ACTIONS(4036), + [anon_sym_LT_AMP] = ACTIONS(4036), + [anon_sym_GT_AMP] = ACTIONS(4036), + [anon_sym_LT_LT] = ACTIONS(4038), + [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(4038), + [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(53), + [sym_word] = ACTIONS(4038), + }, + [1814] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1815] = { + [sym__simple_heredoc_body] = ACTIONS(4042), + [sym__heredoc_body_beginning] = ACTIONS(4042), + [sym_file_descriptor] = ACTIONS(4042), + [sym__concat] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4042), + [anon_sym_PIPE_AMP] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_PIPE_PIPE] = ACTIONS(4042), + [anon_sym_EQ_TILDE] = ACTIONS(4044), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_AMP_GT] = ACTIONS(4044), + [anon_sym_AMP_GT_GT] = ACTIONS(4042), + [anon_sym_LT_AMP] = ACTIONS(4042), + [anon_sym_GT_AMP] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_LT_LT_DASH] = ACTIONS(4042), + [anon_sym_LT_LT_LT] = ACTIONS(4042), + [sym__special_characters] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [anon_sym_DOLLAR] = ACTIONS(4044), + [sym_raw_string] = ACTIONS(4042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), + [anon_sym_BQUOTE] = ACTIONS(4042), + [anon_sym_LT_LPAREN] = ACTIONS(4042), + [anon_sym_GT_LPAREN] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4044), + }, + [1816] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1817] = { + [anon_sym_PIPE] = ACTIONS(3595), + [anon_sym_RPAREN] = ACTIONS(3597), + [anon_sym_PIPE_AMP] = ACTIONS(3597), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [sym_comment] = ACTIONS(53), + }, + [1818] = { + [aux_sym_concatenation_repeat1] = STATE(1818), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(3136), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1672), + [anon_sym_LT_LT_LT] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + }, + [1819] = { + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_RPAREN] = ACTIONS(4300), + [anon_sym_PIPE_AMP] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_BQUOTE] = ACTIONS(4300), + [sym_comment] = ACTIONS(53), + }, + [1820] = { + [aux_sym_concatenation_repeat1] = STATE(1820), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(2667), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [sym__special_characters] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1672), + [anon_sym_GT_LPAREN] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1672), + }, + [1821] = { + [sym_file_redirect] = STATE(2079), + [sym_file_descriptor] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3595), + [anon_sym_PIPE_AMP] = ACTIONS(3597), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_GT] = ACTIONS(3239), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_AMP_GT] = ACTIONS(3239), + [anon_sym_AMP_GT_GT] = ACTIONS(3241), + [anon_sym_LT_AMP] = ACTIONS(3241), + [anon_sym_GT_AMP] = ACTIONS(3241), + [anon_sym_BQUOTE] = ACTIONS(3597), + [sym_comment] = ACTIONS(53), + }, + [1822] = { + [sym_concatenation] = STATE(2082), + [sym_string] = STATE(2151), + [sym_simple_expansion] = STATE(2151), + [sym_string_expansion] = STATE(2151), + [sym_expansion] = STATE(2151), + [sym_command_substitution] = STATE(2151), + [sym_process_substitution] = STATE(2151), + [sym__special_characters] = ACTIONS(5033), + [anon_sym_DQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym_raw_string] = ACTIONS(5035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(851), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5035), + }, + [1823] = { + [aux_sym_concatenation_repeat1] = STATE(2152), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(671), + [anon_sym_AMP_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(671), + [anon_sym_BQUOTE] = ACTIONS(671), + [sym_comment] = ACTIONS(53), + }, + [1824] = { + [aux_sym_concatenation_repeat1] = STATE(2152), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + }, + [1825] = { + [sym_concatenation] = STATE(2086), + [sym_string] = STATE(2154), + [sym_simple_expansion] = STATE(2154), + [sym_string_expansion] = STATE(2154), + [sym_expansion] = STATE(2154), + [sym_command_substitution] = STATE(2154), + [sym_process_substitution] = STATE(2154), + [sym__special_characters] = ACTIONS(5037), + [anon_sym_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4092), + [sym_raw_string] = ACTIONS(5039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4100), + [anon_sym_LT_LPAREN] = ACTIONS(4102), + [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5039), + }, + [1826] = { + [aux_sym_concatenation_repeat1] = STATE(2155), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(671), + [anon_sym_AMP_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(671), + [anon_sym_LT_AMP] = ACTIONS(671), + [anon_sym_GT_AMP] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(671), + [anon_sym_LT_LT_LT] = ACTIONS(671), + [anon_sym_BQUOTE] = ACTIONS(671), + [sym_comment] = ACTIONS(53), + }, + [1827] = { + [aux_sym_concatenation_repeat1] = STATE(2155), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [anon_sym_LT_LT_LT] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + }, + [1828] = { + [aux_sym_concatenation_repeat1] = STATE(2155), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(2098), + [anon_sym_AMP_AMP] = ACTIONS(2098), + [anon_sym_PIPE_PIPE] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2098), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2098), + [anon_sym_LT_AMP] = ACTIONS(2098), + [anon_sym_GT_AMP] = ACTIONS(2098), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2098), + [anon_sym_LT_LT_LT] = ACTIONS(2098), + [anon_sym_BQUOTE] = ACTIONS(2098), + [sym_comment] = ACTIONS(53), + }, + [1829] = { + [aux_sym_concatenation_repeat1] = STATE(2155), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2102), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2102), + [anon_sym_LT_AMP] = ACTIONS(2102), + [anon_sym_GT_AMP] = ACTIONS(2102), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2102), + [anon_sym_LT_LT_LT] = ACTIONS(2102), + [anon_sym_BQUOTE] = ACTIONS(2102), + [sym_comment] = ACTIONS(53), + }, + [1830] = { + [sym_file_redirect] = STATE(1830), + [sym_heredoc_redirect] = STATE(1830), + [sym_herestring_redirect] = STATE(1830), + [aux_sym_while_statement_repeat1] = STATE(1830), + [sym_file_descriptor] = ACTIONS(5041), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_PIPE_AMP] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_PIPE_PIPE] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(5044), + [anon_sym_GT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5047), + [anon_sym_AMP_GT] = ACTIONS(5044), + [anon_sym_AMP_GT_GT] = ACTIONS(5047), + [anon_sym_LT_AMP] = ACTIONS(5047), + [anon_sym_GT_AMP] = ACTIONS(5047), + [anon_sym_LT_LT] = ACTIONS(4922), + [anon_sym_LT_LT_DASH] = ACTIONS(4925), + [anon_sym_LT_LT_LT] = ACTIONS(5050), + [anon_sym_BQUOTE] = ACTIONS(2110), + [sym_comment] = ACTIONS(53), + }, + [1831] = { + [aux_sym_concatenation_repeat1] = STATE(1831), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(3136), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1672), + [anon_sym_LT_LT_LT] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_comment] = ACTIONS(53), + }, + [1832] = { + [sym__heredoc_body_middle] = ACTIONS(2770), + [sym__heredoc_body_end] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), + [sym_comment] = ACTIONS(53), + }, + [1833] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5053), + [sym_comment] = ACTIONS(53), + }, + [1834] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5055), + [sym_comment] = ACTIONS(53), + }, + [1835] = { + [anon_sym_RBRACE] = ACTIONS(5055), + [sym_comment] = ACTIONS(53), + }, + [1836] = { + [sym_concatenation] = STATE(2159), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2159), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(5059), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5059), + [anon_sym_COLON_QMARK] = ACTIONS(5059), + [anon_sym_COLON_DASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1837] = { + [sym__heredoc_body_middle] = ACTIONS(2852), + [sym__heredoc_body_end] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + }, + [1838] = { + [sym_concatenation] = STATE(2162), + [sym_string] = STATE(2161), + [sym_simple_expansion] = STATE(2161), + [sym_string_expansion] = STATE(2161), + [sym_expansion] = STATE(2161), + [sym_command_substitution] = STATE(2161), + [sym_process_substitution] = STATE(2161), + [anon_sym_RBRACE] = ACTIONS(5055), + [sym__special_characters] = ACTIONS(5063), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5065), + }, + [1839] = { + [sym__heredoc_body_middle] = ACTIONS(2895), + [sym__heredoc_body_end] = ACTIONS(2895), + [anon_sym_DOLLAR] = ACTIONS(2897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + }, + [1840] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5067), + }, + [1841] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1842] = { + [sym__heredoc_body_middle] = ACTIONS(2903), + [sym__heredoc_body_end] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + }, + [1843] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5071), + }, + [1844] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1845] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5075), + }, + [1846] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1847] = { + [sym_concatenation] = STATE(2169), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2169), + [anon_sym_RBRACE] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5079), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5079), + [anon_sym_COLON_QMARK] = ACTIONS(5079), + [anon_sym_COLON_DASH] = ACTIONS(5079), + [anon_sym_PERCENT] = ACTIONS(5079), + [anon_sym_DASH] = ACTIONS(5079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1848] = { + [sym__heredoc_body_middle] = ACTIONS(2919), + [sym__heredoc_body_end] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + }, + [1849] = { + [sym_concatenation] = STATE(2171), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2171), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5085), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5085), + [anon_sym_COLON_QMARK] = ACTIONS(5085), + [anon_sym_COLON_DASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1850] = { + [sym__concat] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [sym__special_characters] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2756), + }, + [1851] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_RPAREN] = ACTIONS(2770), + [sym__special_characters] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2770), + [anon_sym_BQUOTE] = ACTIONS(2770), + [anon_sym_LT_LPAREN] = ACTIONS(2770), + [anon_sym_GT_LPAREN] = ACTIONS(2770), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2770), + }, + [1852] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5089), + [sym_comment] = ACTIONS(53), }, [1853] = { - [sym__expression] = STATE(2157), - [sym_binary_expression] = STATE(2157), - [sym_unary_expression] = STATE(2157), - [sym_parenthesized_expression] = STATE(2157), - [sym_concatenation] = STATE(2157), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5091), + [sym_comment] = ACTIONS(53), + }, + [1854] = { + [anon_sym_RBRACE] = ACTIONS(5091), + [sym_comment] = ACTIONS(53), + }, + [1855] = { + [sym_concatenation] = STATE(2175), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2175), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_EQ] = ACTIONS(5095), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5095), + [anon_sym_COLON_QMARK] = ACTIONS(5095), + [anon_sym_COLON_DASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1856] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_RPAREN] = ACTIONS(2852), + [sym__special_characters] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [anon_sym_LT_LPAREN] = ACTIONS(2852), + [anon_sym_GT_LPAREN] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2852), + }, + [1857] = { + [sym_concatenation] = STATE(2178), + [sym_string] = STATE(2177), + [sym_simple_expansion] = STATE(2177), + [sym_string_expansion] = STATE(2177), + [sym_expansion] = STATE(2177), + [sym_command_substitution] = STATE(2177), + [sym_process_substitution] = STATE(2177), + [anon_sym_RBRACE] = ACTIONS(5091), + [sym__special_characters] = ACTIONS(5099), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5101), + }, + [1858] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_RPAREN] = ACTIONS(2895), + [sym__special_characters] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR] = ACTIONS(2897), + [sym_raw_string] = ACTIONS(2895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2895), + [anon_sym_BQUOTE] = ACTIONS(2895), + [anon_sym_LT_LPAREN] = ACTIONS(2895), + [anon_sym_GT_LPAREN] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2895), + }, + [1859] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5103), + }, + [1860] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1861] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_RPAREN] = ACTIONS(2903), + [sym__special_characters] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2903), + [anon_sym_BQUOTE] = ACTIONS(2903), + [anon_sym_LT_LPAREN] = ACTIONS(2903), + [anon_sym_GT_LPAREN] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2903), + }, + [1862] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5107), + }, + [1863] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1864] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5111), + }, + [1865] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1866] = { + [sym_concatenation] = STATE(2185), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2185), + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5115), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5115), + [anon_sym_COLON_QMARK] = ACTIONS(5115), + [anon_sym_COLON_DASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1867] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_RPAREN] = ACTIONS(2919), + [sym__special_characters] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2919), + [anon_sym_BQUOTE] = ACTIONS(2919), + [anon_sym_LT_LPAREN] = ACTIONS(2919), + [anon_sym_GT_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2919), + }, + [1868] = { + [sym_concatenation] = STATE(2187), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2187), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_EQ] = ACTIONS(5121), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5121), + [anon_sym_COLON_QMARK] = ACTIONS(5121), + [anon_sym_COLON_DASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1869] = { + [sym_file_descriptor] = ACTIONS(3905), + [sym__concat] = ACTIONS(3905), + [sym_variable_name] = ACTIONS(3905), + [anon_sym_esac] = ACTIONS(3907), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3907), + [anon_sym_SEMI_SEMI] = ACTIONS(3907), + [anon_sym_PIPE_AMP] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_GT_GT] = ACTIONS(3907), + [anon_sym_AMP_GT] = ACTIONS(3907), + [anon_sym_AMP_GT_GT] = ACTIONS(3907), + [anon_sym_LT_AMP] = ACTIONS(3907), + [anon_sym_GT_AMP] = ACTIONS(3907), + [sym__special_characters] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), + [anon_sym_BQUOTE] = ACTIONS(3907), + [anon_sym_LT_LPAREN] = ACTIONS(3907), + [anon_sym_GT_LPAREN] = ACTIONS(3907), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + }, + [1870] = { + [sym_file_descriptor] = ACTIONS(3913), + [sym__concat] = ACTIONS(3913), + [sym_variable_name] = ACTIONS(3913), + [anon_sym_esac] = ACTIONS(3915), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_SEMI_SEMI] = ACTIONS(3915), + [anon_sym_PIPE_AMP] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_LT] = ACTIONS(3915), + [anon_sym_GT] = ACTIONS(3915), + [anon_sym_GT_GT] = ACTIONS(3915), + [anon_sym_AMP_GT] = ACTIONS(3915), + [anon_sym_AMP_GT_GT] = ACTIONS(3915), + [anon_sym_LT_AMP] = ACTIONS(3915), + [anon_sym_GT_AMP] = ACTIONS(3915), + [sym__special_characters] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), + [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_LT_LPAREN] = ACTIONS(3915), + [anon_sym_GT_LPAREN] = ACTIONS(3915), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3915), + }, + [1871] = { + [sym_file_descriptor] = ACTIONS(4000), + [sym__concat] = ACTIONS(4000), + [sym_variable_name] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_SEMI_SEMI] = ACTIONS(4002), + [anon_sym_PIPE_AMP] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4002), + [anon_sym_AMP_GT] = ACTIONS(4002), + [anon_sym_AMP_GT_GT] = ACTIONS(4002), + [anon_sym_LT_AMP] = ACTIONS(4002), + [anon_sym_GT_AMP] = ACTIONS(4002), + [sym__special_characters] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), + [anon_sym_BQUOTE] = ACTIONS(4002), + [anon_sym_LT_LPAREN] = ACTIONS(4002), + [anon_sym_GT_LPAREN] = ACTIONS(4002), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4002), + }, + [1872] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1873] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5127), + [sym_comment] = ACTIONS(53), + }, + [1874] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5129), + [sym_comment] = ACTIONS(53), + }, + [1875] = { + [anon_sym_RBRACE] = ACTIONS(5129), + [sym_comment] = ACTIONS(53), + }, + [1876] = { + [sym_concatenation] = STATE(2192), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2192), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5133), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5133), + [anon_sym_COLON_QMARK] = ACTIONS(5133), + [anon_sym_COLON_DASH] = ACTIONS(5133), + [anon_sym_PERCENT] = ACTIONS(5133), + [anon_sym_DASH] = ACTIONS(5133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1877] = { + [sym_file_descriptor] = ACTIONS(4016), + [sym__concat] = ACTIONS(4016), + [sym_variable_name] = ACTIONS(4016), + [anon_sym_esac] = ACTIONS(4018), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4018), + [anon_sym_SEMI_SEMI] = ACTIONS(4018), + [anon_sym_PIPE_AMP] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_PIPE_PIPE] = ACTIONS(4018), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_GT_GT] = ACTIONS(4018), + [anon_sym_AMP_GT] = ACTIONS(4018), + [anon_sym_AMP_GT_GT] = ACTIONS(4018), + [anon_sym_LT_AMP] = ACTIONS(4018), + [anon_sym_GT_AMP] = ACTIONS(4018), + [sym__special_characters] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4018), + [anon_sym_LT_LPAREN] = ACTIONS(4018), + [anon_sym_GT_LPAREN] = ACTIONS(4018), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4018), + }, + [1878] = { + [sym_concatenation] = STATE(2194), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2194), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5139), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_COLON_QMARK] = ACTIONS(5139), + [anon_sym_COLON_DASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1879] = { + [sym_file_descriptor] = ACTIONS(4026), + [sym__concat] = ACTIONS(4026), + [sym_variable_name] = ACTIONS(4026), + [anon_sym_esac] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_SEMI_SEMI] = ACTIONS(4028), + [anon_sym_PIPE_AMP] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4028), + [anon_sym_AMP_GT] = ACTIONS(4028), + [anon_sym_AMP_GT_GT] = ACTIONS(4028), + [anon_sym_LT_AMP] = ACTIONS(4028), + [anon_sym_GT_AMP] = ACTIONS(4028), + [sym__special_characters] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(4028), + [sym_raw_string] = ACTIONS(4028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), + [anon_sym_BQUOTE] = ACTIONS(4028), + [anon_sym_LT_LPAREN] = ACTIONS(4028), + [anon_sym_GT_LPAREN] = ACTIONS(4028), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4028), + }, + [1880] = { + [sym_concatenation] = STATE(2196), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2196), + [anon_sym_RBRACE] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5145), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_COLON_QMARK] = ACTIONS(5145), + [anon_sym_COLON_DASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1881] = { + [sym_file_descriptor] = ACTIONS(4036), + [sym__concat] = ACTIONS(4036), + [sym_variable_name] = ACTIONS(4036), + [anon_sym_esac] = ACTIONS(4038), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4038), + [anon_sym_SEMI_SEMI] = ACTIONS(4038), + [anon_sym_PIPE_AMP] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_PIPE_PIPE] = ACTIONS(4038), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_GT_GT] = ACTIONS(4038), + [anon_sym_AMP_GT] = ACTIONS(4038), + [anon_sym_AMP_GT_GT] = ACTIONS(4038), + [anon_sym_LT_AMP] = ACTIONS(4038), + [anon_sym_GT_AMP] = ACTIONS(4038), + [sym__special_characters] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(4038), + [sym_raw_string] = ACTIONS(4038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), + [anon_sym_BQUOTE] = ACTIONS(4038), + [anon_sym_LT_LPAREN] = ACTIONS(4038), + [anon_sym_GT_LPAREN] = ACTIONS(4038), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4038), + }, + [1882] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1883] = { + [sym_file_descriptor] = ACTIONS(4042), + [sym__concat] = ACTIONS(4042), + [sym_variable_name] = ACTIONS(4042), + [anon_sym_esac] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4044), + [anon_sym_AMP_GT] = ACTIONS(4044), + [anon_sym_AMP_GT_GT] = ACTIONS(4044), + [anon_sym_LT_AMP] = ACTIONS(4044), + [anon_sym_GT_AMP] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4044), + [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(177), + [sym_word] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4044), + }, + [1884] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [1885] = { + [sym__terminated_statement] = STATE(1064), + [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(1064), + [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(5153), + [anon_sym_elif] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5153), + [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), + }, + [1886] = { + [anon_sym_esac] = ACTIONS(5155), + [anon_sym_PIPE] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_SEMI_SEMI] = ACTIONS(5155), + [anon_sym_PIPE_AMP] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_LF] = ACTIONS(5157), + [anon_sym_AMP] = ACTIONS(5155), + }, + [1887] = { + [aux_sym_concatenation_repeat1] = STATE(1503), + [sym__concat] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [sym_comment] = ACTIONS(53), + }, + [1888] = { + [aux_sym_concatenation_repeat1] = STATE(1503), + [sym__concat] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_RPAREN] = ACTIONS(5161), + [sym_comment] = ACTIONS(53), + }, + [1889] = { + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_RPAREN] = ACTIONS(5161), + [sym_comment] = ACTIONS(53), + }, + [1890] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_PLUS_EQ] = ACTIONS(5163), + [sym_comment] = ACTIONS(53), + }, + [1891] = { + [sym__terminated_statement] = STATE(2200), + [sym_for_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_subshell] = STATE(39), + [sym_pipeline] = STATE(39), + [sym_list] = STATE(39), + [sym_negated_command] = STATE(39), + [sym_test_command] = STATE(39), + [sym_declaration_command] = STATE(39), + [sym_unset_command] = STATE(39), + [sym_command] = STATE(39), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(40), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [1892] = { + [anon_sym_esac] = ACTIONS(5165), + [sym__special_characters] = ACTIONS(5167), + [anon_sym_DQUOTE] = ACTIONS(5167), + [anon_sym_DOLLAR] = ACTIONS(5169), + [sym_raw_string] = ACTIONS(5167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5167), + [anon_sym_BQUOTE] = ACTIONS(5167), + [anon_sym_LT_LPAREN] = ACTIONS(5167), + [anon_sym_GT_LPAREN] = ACTIONS(5167), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5169), + }, + [1893] = { + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5171), + }, + [1894] = { + [sym_subshell] = STATE(70), + [sym_test_command] = STATE(70), + [sym_command] = STATE(70), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(71), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_command_repeat1] = STATE(1907), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4425), + }, + [1895] = { + [sym__expression] = STATE(2202), + [sym_binary_expression] = STATE(2202), + [sym_unary_expression] = STATE(2202), + [sym_parenthesized_expression] = STATE(2202), + [sym_concatenation] = STATE(2202), [sym_string] = STATE(77), [sym_simple_expansion] = STATE(77), [sym_string_expansion] = STATE(77), @@ -49473,12 +50247,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(129), [sym_test_operator] = ACTIONS(131), }, - [1854] = { - [sym__expression] = STATE(2158), - [sym_binary_expression] = STATE(2158), - [sym_unary_expression] = STATE(2158), - [sym_parenthesized_expression] = STATE(2158), - [sym_concatenation] = STATE(2158), + [1896] = { + [sym__expression] = STATE(2203), + [sym_binary_expression] = STATE(2203), + [sym_unary_expression] = STATE(2203), + [sym_parenthesized_expression] = STATE(2203), + [sym_concatenation] = STATE(2203), [sym_string] = STATE(88), [sym_simple_expansion] = STATE(88), [sym_string_expansion] = STATE(88), @@ -49500,73 +50274,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(153), [sym_test_operator] = ACTIONS(155), }, - [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), + [1897] = { + [sym_variable_assignment] = STATE(2215), + [sym_subscript] = STATE(2214), + [sym_concatenation] = STATE(2215), + [sym_string] = STATE(2208), + [sym_simple_expansion] = STATE(2208), + [sym_string_expansion] = STATE(2208), + [sym_expansion] = STATE(2208), + [sym_command_substitution] = STATE(2208), + [sym_process_substitution] = STATE(2208), + [aux_sym_declaration_command_repeat1] = STATE(2215), + [sym_variable_name] = ACTIONS(5173), [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(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__special_characters] = ACTIONS(5175), + [anon_sym_DQUOTE] = ACTIONS(5177), + [anon_sym_DOLLAR] = ACTIONS(5179), + [sym_raw_string] = ACTIONS(5181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5185), + [anon_sym_BQUOTE] = ACTIONS(5187), + [anon_sym_LT_LPAREN] = ACTIONS(5189), + [anon_sym_GT_LPAREN] = ACTIONS(5189), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5099), - [sym_word] = ACTIONS(5089), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5191), + [sym_word] = ACTIONS(5181), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_LF] = ACTIONS(181), [anon_sym_AMP] = ACTIONS(159), }, - [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), + [1898] = { + [sym_concatenation] = STATE(2225), + [sym_string] = STATE(2219), + [sym_simple_expansion] = STATE(2219), + [sym_string_expansion] = STATE(2219), + [sym_expansion] = STATE(2219), + [sym_command_substitution] = STATE(2219), + [sym_process_substitution] = STATE(2219), + [aux_sym_unset_command_repeat1] = STATE(2225), [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(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__special_characters] = ACTIONS(5193), + [anon_sym_DQUOTE] = ACTIONS(5195), + [anon_sym_DOLLAR] = ACTIONS(5197), + [sym_raw_string] = ACTIONS(5199), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5203), + [anon_sym_BQUOTE] = ACTIONS(5205), + [anon_sym_LT_LPAREN] = ACTIONS(5207), + [anon_sym_GT_LPAREN] = ACTIONS(5207), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5117), - [sym_word] = ACTIONS(5107), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5209), + [sym_word] = ACTIONS(5199), [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LF] = ACTIONS(203), [anon_sym_AMP] = ACTIONS(183), }, - [1857] = { - [aux_sym_concatenation_repeat1] = STATE(2181), + [1899] = { + [aux_sym_concatenation_repeat1] = STATE(2226), [sym__simple_heredoc_body] = ACTIONS(221), [sym__heredoc_body_beginning] = ACTIONS(221), [sym_file_descriptor] = ACTIONS(221), @@ -49604,8 +50378,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(221), [anon_sym_AMP] = ACTIONS(225), }, - [1858] = { - [aux_sym_concatenation_repeat1] = STATE(2181), + [1900] = { + [aux_sym_concatenation_repeat1] = STATE(2226), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), @@ -49643,8 +50417,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(247), [anon_sym_AMP] = ACTIONS(249), }, - [1859] = { - [aux_sym_concatenation_repeat1] = STATE(2181), + [1901] = { + [aux_sym_concatenation_repeat1] = STATE(2226), [sym__simple_heredoc_body] = ACTIONS(247), [sym__heredoc_body_beginning] = ACTIONS(247), [sym_file_descriptor] = ACTIONS(247), @@ -49652,7 +50426,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_esac] = ACTIONS(249), [anon_sym_PIPE] = ACTIONS(249), [anon_sym_SEMI_SEMI] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5211), [anon_sym_PIPE_AMP] = ACTIONS(249), [anon_sym_AMP_AMP] = ACTIONS(249), [anon_sym_PIPE_PIPE] = ACTIONS(249), @@ -49683,77 +50457,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(247), [anon_sym_AMP] = ACTIONS(249), }, - [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), + [1902] = { + [anon_sym_esac] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(5215), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), [sym_comment] = ACTIONS(177), [anon_sym_SEMI] = ACTIONS(331), [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [1861] = { - [sym_file_redirect] = STATE(2192), - [sym_heredoc_redirect] = STATE(2192), + [1903] = { + [sym_file_redirect] = STATE(2237), + [sym_heredoc_redirect] = STATE(2237), [sym_heredoc_body] = STATE(200), - [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_herestring_redirect] = STATE(2237), + [sym_concatenation] = STATE(2238), + [sym_string] = STATE(2236), + [sym_simple_expansion] = STATE(2236), + [sym_string_expansion] = STATE(2236), + [sym_expansion] = STATE(2236), + [sym_command_substitution] = STATE(2236), + [sym_process_substitution] = STATE(2236), + [aux_sym_while_statement_repeat1] = STATE(2237), + [aux_sym_command_repeat2] = STATE(2238), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [sym_file_descriptor] = ACTIONS(5127), + [sym_file_descriptor] = ACTIONS(5219), [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(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_EQ_TILDE] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_GT] = ACTIONS(5223), + [anon_sym_AMP_GT] = ACTIONS(5223), + [anon_sym_AMP_GT_GT] = ACTIONS(5223), + [anon_sym_LT_AMP] = ACTIONS(5223), + [anon_sym_GT_AMP] = ACTIONS(5223), [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_LT_LT_LT] = ACTIONS(5225), + [sym__special_characters] = ACTIONS(5227), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5137), + [sym_raw_string] = ACTIONS(5229), [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(5137), + [sym_word] = ACTIONS(5229), [anon_sym_SEMI] = ACTIONS(343), [anon_sym_LF] = ACTIONS(367), [anon_sym_AMP] = ACTIONS(343), }, - [1862] = { + [1904] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [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_esac] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(5215), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -49776,59 +50550,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [1863] = { - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_PLUS_EQ] = ACTIONS(5071), + [1905] = { + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_PLUS_EQ] = ACTIONS(5163), [sym_comment] = ACTIONS(53), }, - [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), + [1906] = { + [sym__terminated_statement] = STATE(2242), + [sym_for_statement] = STATE(2240), + [sym_while_statement] = STATE(2240), + [sym_if_statement] = STATE(2240), + [sym_case_statement] = STATE(2240), + [sym_function_definition] = STATE(2240), + [sym_subshell] = STATE(2240), + [sym_pipeline] = STATE(2240), + [sym_list] = STATE(2240), + [sym_negated_command] = STATE(2240), + [sym_test_command] = STATE(2240), + [sym_declaration_command] = STATE(2240), + [sym_unset_command] = STATE(2240), + [sym_command] = STATE(2240), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(2241), + [sym_subscript] = STATE(1905), [sym_file_redirect] = STATE(30), [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_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_program_repeat1] = STATE(2242), + [aux_sym_command_repeat1] = STATE(1907), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4317), + [sym_variable_name] = ACTIONS(4403), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), + [anon_sym_while] = ACTIONS(4405), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5073), - [anon_sym_SEMI_SEMI] = ACTIONS(5139), - [anon_sym_function] = ACTIONS(4325), + [anon_sym_esac] = ACTIONS(5165), + [anon_sym_SEMI_SEMI] = ACTIONS(5231), + [anon_sym_function] = ACTIONS(4411), [anon_sym_LPAREN] = ACTIONS(21), - [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_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -49836,30 +50610,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(4337), + [sym__special_characters] = ACTIONS(4423), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4339), + [sym_raw_string] = ACTIONS(4425), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4341), + [sym_word] = ACTIONS(4427), }, - [1865] = { - [sym_command_name] = STATE(2198), + [1907] = { + [sym_command_name] = STATE(2243), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(71), [sym_file_redirect] = STATE(30), [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), + [sym_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), [aux_sym_command_repeat1] = STATE(205), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(107), @@ -49870,66 +50644,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(5141), + [sym__special_characters] = ACTIONS(5233), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4339), + [sym_raw_string] = ACTIONS(4425), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4339), + [sym_word] = ACTIONS(4425), }, - [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), + [1908] = { + [sym__terminated_statement] = STATE(2244), + [sym_for_statement] = STATE(2240), + [sym_while_statement] = STATE(2240), + [sym_if_statement] = STATE(2240), + [sym_case_statement] = STATE(2240), + [sym_function_definition] = STATE(2240), + [sym_subshell] = STATE(2240), + [sym_pipeline] = STATE(2240), + [sym_list] = STATE(2240), + [sym_negated_command] = STATE(2240), + [sym_test_command] = STATE(2240), + [sym_declaration_command] = STATE(2240), + [sym_unset_command] = STATE(2240), + [sym_command] = STATE(2240), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(2241), + [sym_subscript] = STATE(1905), [sym_file_redirect] = STATE(30), [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_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_program_repeat1] = STATE(2244), + [aux_sym_command_repeat1] = STATE(1907), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4317), + [sym_variable_name] = ACTIONS(4403), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), + [anon_sym_while] = ACTIONS(4405), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5073), - [anon_sym_SEMI_SEMI] = ACTIONS(5139), - [anon_sym_function] = ACTIONS(4325), + [anon_sym_esac] = ACTIONS(5165), + [anon_sym_SEMI_SEMI] = ACTIONS(5231), + [anon_sym_function] = ACTIONS(4411), [anon_sym_LPAREN] = ACTIONS(21), - [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_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -49937,66 +50711,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(4337), + [sym__special_characters] = ACTIONS(4423), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4339), + [sym_raw_string] = ACTIONS(4425), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4341), + [sym_word] = ACTIONS(4427), }, - [1867] = { - [aux_sym_case_item_repeat1] = STATE(1867), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5069), + [1909] = { + [aux_sym_case_item_repeat1] = STATE(1909), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5161), [sym_comment] = ACTIONS(53), }, - [1868] = { - [aux_sym_concatenation_repeat1] = STATE(1868), - [sym__concat] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_RPAREN] = ACTIONS(1642), + [1910] = { + [aux_sym_concatenation_repeat1] = STATE(1910), + [sym__concat] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), [sym_comment] = ACTIONS(53), }, - [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), + [1911] = { + [anon_sym_esac] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5240), + [anon_sym_DQUOTE] = ACTIONS(5240), + [anon_sym_DOLLAR] = ACTIONS(5242), + [sym_raw_string] = ACTIONS(5240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5240), + [anon_sym_BQUOTE] = ACTIONS(5240), + [anon_sym_LT_LPAREN] = ACTIONS(5240), + [anon_sym_GT_LPAREN] = ACTIONS(5240), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5150), + [sym_word] = ACTIONS(5242), }, - [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), + [1912] = { + [anon_sym_esac] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(5244), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), [sym_comment] = ACTIONS(177), [anon_sym_SEMI] = ACTIONS(331), [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [1871] = { + [1913] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [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_esac] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(5244), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -50019,5970 +50793,6003 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [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(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(4317), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [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(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), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [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(4341), - }, - [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(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(4317), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [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(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), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [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(4341), - }, - [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(5156), - [anon_sym_LF] = ACTIONS(5158), - [anon_sym_AMP] = ACTIONS(5156), - }, - [1875] = { - [aux_sym_case_item_repeat1] = STATE(2206), - [aux_sym_concatenation_repeat1] = STATE(1467), - [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(3467), - [anon_sym_RPAREN] = ACTIONS(5160), - [sym_comment] = ACTIONS(53), - }, - [1876] = { - [aux_sym_case_item_repeat1] = STATE(2208), - [aux_sym_concatenation_repeat1] = STATE(1467), - [sym__concat] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(3467), - [anon_sym_RPAREN] = ACTIONS(5162), - [sym_comment] = ACTIONS(53), - }, - [1877] = { - [aux_sym_case_item_repeat1] = STATE(2208), - [anon_sym_PIPE] = ACTIONS(3467), - [anon_sym_RPAREN] = ACTIONS(5162), - [sym_comment] = ACTIONS(53), - }, - [1878] = { - [anon_sym_esac] = ACTIONS(5164), - [sym_comment] = ACTIONS(53), - }, - [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(5166), - [anon_sym_LF] = ACTIONS(5168), - [anon_sym_AMP] = ACTIONS(5166), - }, - [1880] = { - [anon_sym_esac] = ACTIONS(5170), - [sym_comment] = ACTIONS(53), - }, - [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), - [sym_word] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_LF] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - }, - [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), - [sym_word] = ACTIONS(4747), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_LF] = ACTIONS(4745), - [anon_sym_AMP] = ACTIONS(4747), - }, - [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), - [sym_word] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4751), - [anon_sym_LF] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4751), - }, - [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), - [sym_word] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_LF] = ACTIONS(4753), - [anon_sym_AMP] = ACTIONS(4755), - }, - [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(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(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), - }, - [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), - [sym_word] = ACTIONS(4761), - [anon_sym_SEMI] = ACTIONS(4761), - [anon_sym_LF] = ACTIONS(4759), - [anon_sym_AMP] = ACTIONS(4761), - }, - [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(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(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), - }, - [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), - [sym_word] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4767), - [anon_sym_LF] = ACTIONS(4765), - [anon_sym_AMP] = ACTIONS(4767), - }, - [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(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(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), - }, - [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), - [sym_word] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4773), - [anon_sym_LF] = ACTIONS(4771), - [anon_sym_AMP] = ACTIONS(4773), - }, - [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), - [sym_word] = ACTIONS(4777), - [anon_sym_SEMI] = ACTIONS(4777), - [anon_sym_LF] = ACTIONS(4775), - [anon_sym_AMP] = ACTIONS(4777), - }, - [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(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [1893] = { - [aux_sym_concatenation_repeat1] = STATE(1895), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_RPAREN] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [1894] = { - [aux_sym_concatenation_repeat1] = STATE(1895), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - }, - [1895] = { - [aux_sym_concatenation_repeat1] = STATE(2214), - [sym__concat] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [1896] = { - [aux_sym_concatenation_repeat1] = STATE(1898), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_RPAREN] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1091), - [anon_sym_LT_AMP] = ACTIONS(1091), - [anon_sym_GT_AMP] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1091), - [anon_sym_LT_LT_LT] = ACTIONS(1091), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [1897] = { - [aux_sym_concatenation_repeat1] = STATE(1898), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1095), - [anon_sym_LT_AMP] = ACTIONS(1095), - [anon_sym_GT_AMP] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1095), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - }, - [1898] = { - [aux_sym_concatenation_repeat1] = STATE(2215), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(3599), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [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(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), + [sym__terminated_statement] = STATE(2242), + [sym_for_statement] = STATE(2247), + [sym_while_statement] = STATE(2247), + [sym_if_statement] = STATE(2247), + [sym_case_statement] = STATE(2247), + [sym_function_definition] = STATE(2247), + [sym_subshell] = STATE(2247), + [sym_pipeline] = STATE(2247), + [sym_list] = STATE(2247), + [sym_negated_command] = STATE(2247), + [sym_test_command] = STATE(2247), + [sym_declaration_command] = STATE(2247), + [sym_unset_command] = STATE(2247), + [sym_command] = STATE(2247), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(2248), + [sym_subscript] = STATE(1905), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_program_repeat1] = STATE(2242), + [aux_sym_command_repeat1] = STATE(1907), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4403), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5246), + [anon_sym_function] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4427), }, [1915] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5193), + [sym__terminated_statement] = STATE(2249), + [sym_for_statement] = STATE(2247), + [sym_while_statement] = STATE(2247), + [sym_if_statement] = STATE(2247), + [sym_case_statement] = STATE(2247), + [sym_function_definition] = STATE(2247), + [sym_subshell] = STATE(2247), + [sym_pipeline] = STATE(2247), + [sym_list] = STATE(2247), + [sym_negated_command] = STATE(2247), + [sym_test_command] = STATE(2247), + [sym_declaration_command] = STATE(2247), + [sym_unset_command] = STATE(2247), + [sym_command] = STATE(2247), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(2248), + [sym_subscript] = STATE(1905), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_program_repeat1] = STATE(2249), + [aux_sym_command_repeat1] = STATE(1907), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4403), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5238), + [anon_sym_SEMI_SEMI] = ACTIONS(5246), + [anon_sym_function] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4427), }, [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), + [anon_sym_esac] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_RPAREN] = ACTIONS(5248), + [anon_sym_SEMI_SEMI] = ACTIONS(5248), + [anon_sym_PIPE_AMP] = ACTIONS(5248), + [anon_sym_AMP_AMP] = ACTIONS(5248), + [anon_sym_PIPE_PIPE] = ACTIONS(5248), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(5248), + [anon_sym_LF] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5248), }, [1917] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(5197), + [aux_sym_case_item_repeat1] = STATE(2251), + [aux_sym_concatenation_repeat1] = STATE(1503), + [sym__concat] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(5252), [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), + [aux_sym_case_item_repeat1] = STATE(2253), + [aux_sym_concatenation_repeat1] = STATE(1503), + [sym__concat] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(5254), + [sym_comment] = ACTIONS(53), }, [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), + [aux_sym_case_item_repeat1] = STATE(2253), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(5254), + [sym_comment] = ACTIONS(53), }, [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), + [anon_sym_esac] = ACTIONS(5256), + [sym_comment] = ACTIONS(53), }, [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), + [anon_sym_esac] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_SEMI_SEMI] = ACTIONS(5258), + [anon_sym_PIPE_AMP] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_LF] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(5258), + [anon_sym_LF] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5258), }, [1922] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5221), + [anon_sym_esac] = ACTIONS(5262), + [sym_comment] = ACTIONS(53), }, [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__concat] = ACTIONS(4831), + [anon_sym_in] = ACTIONS(4833), + [anon_sym_SEMI_SEMI] = ACTIONS(4833), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), + [anon_sym_BQUOTE] = ACTIONS(4833), + [anon_sym_LT_LPAREN] = ACTIONS(4833), + [anon_sym_GT_LPAREN] = ACTIONS(4833), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4833), }, [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__concat] = ACTIONS(4835), + [anon_sym_in] = ACTIONS(4837), + [anon_sym_SEMI_SEMI] = ACTIONS(4837), + [sym__special_characters] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(4837), + [anon_sym_LT_LPAREN] = ACTIONS(4837), + [anon_sym_GT_LPAREN] = ACTIONS(4837), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_LF] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1808), + [sym_word] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4837), }, [1925] = { + [sym__concat] = ACTIONS(4839), + [anon_sym_in] = ACTIONS(4841), + [anon_sym_SEMI_SEMI] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(4841), + [anon_sym_DQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), + [anon_sym_BQUOTE] = ACTIONS(4841), + [anon_sym_LT_LPAREN] = ACTIONS(4841), + [anon_sym_GT_LPAREN] = ACTIONS(4841), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5225), + [sym_word] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4841), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4841), }, [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__concat] = ACTIONS(4843), + [anon_sym_in] = ACTIONS(4845), + [anon_sym_SEMI_SEMI] = ACTIONS(4845), + [sym__special_characters] = ACTIONS(4845), + [anon_sym_DQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), + [anon_sym_BQUOTE] = ACTIONS(4845), + [anon_sym_LT_LPAREN] = ACTIONS(4845), + [anon_sym_GT_LPAREN] = ACTIONS(4845), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4845), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4845), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5264), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4849), + [anon_sym_in] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [sym__special_characters] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), + [anon_sym_BQUOTE] = ACTIONS(4851), + [anon_sym_LT_LPAREN] = ACTIONS(4851), + [anon_sym_GT_LPAREN] = ACTIONS(4851), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LF] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2008), + [sym_word] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4849), + [anon_sym_AMP] = ACTIONS(4851), }, [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4855), + [anon_sym_in] = ACTIONS(4857), + [anon_sym_SEMI_SEMI] = ACTIONS(4857), + [sym__special_characters] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), + [anon_sym_BQUOTE] = ACTIONS(4857), + [anon_sym_LT_LPAREN] = ACTIONS(4857), + [anon_sym_GT_LPAREN] = ACTIONS(4857), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4857), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LF] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4857), }, [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4861), + [anon_sym_in] = ACTIONS(4863), + [anon_sym_SEMI_SEMI] = ACTIONS(4863), + [sym__special_characters] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(4863), + [anon_sym_LT_LPAREN] = ACTIONS(4863), + [anon_sym_GT_LPAREN] = ACTIONS(4863), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4863), }, [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__concat] = ACTIONS(4865), + [anon_sym_in] = ACTIONS(4867), + [anon_sym_SEMI_SEMI] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(4867), + [anon_sym_DQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4867), + [anon_sym_LT_LPAREN] = ACTIONS(4867), + [anon_sym_GT_LPAREN] = ACTIONS(4867), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(4867), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_LF] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4867), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1934), + [sym__concat] = ACTIONS(2622), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1937), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1937), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2259), + [sym__concat] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1111), + [anon_sym_LT_AMP] = ACTIONS(1111), + [anon_sym_GT_AMP] = ACTIONS(1111), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1111), + [anon_sym_LT_LT_LT] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2260), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), [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), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, [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), + [sym__concat] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_EQ_TILDE] = ACTIONS(4831), + [anon_sym_EQ_EQ] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4831), + [anon_sym_GT] = ACTIONS(4831), + [anon_sym_BANG_EQ] = ACTIONS(4831), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4831), }, [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), + [sym__concat] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [anon_sym_RBRACK] = ACTIONS(4835), + [anon_sym_EQ_TILDE] = ACTIONS(4835), + [anon_sym_EQ_EQ] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4835), + [anon_sym_GT] = ACTIONS(4835), + [anon_sym_BANG_EQ] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4835), }, [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), + [sym__concat] = ACTIONS(4839), + [anon_sym_AMP_AMP] = ACTIONS(4839), + [anon_sym_PIPE_PIPE] = ACTIONS(4839), + [anon_sym_RBRACK] = ACTIONS(4839), + [anon_sym_EQ_TILDE] = ACTIONS(4839), + [anon_sym_EQ_EQ] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4839), + [anon_sym_GT] = ACTIONS(4839), + [anon_sym_BANG_EQ] = ACTIONS(4839), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4839), }, [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), + [sym__concat] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_RBRACK] = ACTIONS(4843), + [anon_sym_EQ_TILDE] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4843), + [anon_sym_GT] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4843), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [anon_sym_RBRACK] = ACTIONS(4849), + [anon_sym_EQ_TILDE] = ACTIONS(4849), + [anon_sym_EQ_EQ] = ACTIONS(4849), + [anon_sym_EQ] = ACTIONS(4851), + [anon_sym_LT] = ACTIONS(4849), + [anon_sym_GT] = ACTIONS(4849), + [anon_sym_BANG_EQ] = ACTIONS(4849), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4849), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4855), + [anon_sym_AMP_AMP] = ACTIONS(4855), + [anon_sym_PIPE_PIPE] = ACTIONS(4855), + [anon_sym_RBRACK] = ACTIONS(4855), + [anon_sym_EQ_TILDE] = ACTIONS(4855), + [anon_sym_EQ_EQ] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4855), + [anon_sym_GT] = ACTIONS(4855), + [anon_sym_BANG_EQ] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4855), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_RBRACK] = ACTIONS(4861), + [anon_sym_EQ_TILDE] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4861), }, [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), + [sym__concat] = ACTIONS(4865), + [anon_sym_AMP_AMP] = ACTIONS(4865), + [anon_sym_PIPE_PIPE] = ACTIONS(4865), + [anon_sym_RBRACK] = ACTIONS(4865), + [anon_sym_EQ_TILDE] = ACTIONS(4865), + [anon_sym_EQ_EQ] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG_EQ] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4865), }, [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_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1672), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), [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), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1953), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), [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), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), }, [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_file_descriptor] = ACTIONS(1679), + [sym__concat] = ACTIONS(1679), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), [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), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), }, [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), + [anon_sym_DQUOTE] = ACTIONS(5279), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), }, [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), + [sym_concatenation] = STATE(2268), + [sym_string] = STATE(2267), + [sym_simple_expansion] = STATE(2267), + [sym_string_expansion] = STATE(2267), + [sym_expansion] = STATE(2267), + [sym_command_substitution] = STATE(2267), + [sym_process_substitution] = STATE(2267), + [anon_sym_RBRACE] = ACTIONS(5281), + [sym__special_characters] = ACTIONS(5283), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5285), }, [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_file_descriptor] = ACTIONS(1764), + [sym__concat] = ACTIONS(1764), + [anon_sym_esac] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_AMP_GT] = ACTIONS(1766), + [anon_sym_AMP_GT_GT] = ACTIONS(1766), + [anon_sym_LT_AMP] = ACTIONS(1766), + [anon_sym_GT_AMP] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LT_LT_DASH] = ACTIONS(1766), + [anon_sym_LT_LT_LT] = ACTIONS(1766), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_LF] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), }, [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), + [sym_regex_without_right_brace] = ACTIONS(5287), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5289), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(5291), + [sym_comment] = ACTIONS(53), }, [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_concatenation] = STATE(2274), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2274), + [anon_sym_RBRACE] = ACTIONS(5293), + [anon_sym_EQ] = ACTIONS(5295), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5299), + [anon_sym_COLON] = ACTIONS(5295), + [anon_sym_COLON_QMARK] = ACTIONS(5295), + [anon_sym_COLON_DASH] = ACTIONS(5295), + [anon_sym_PERCENT] = ACTIONS(5295), + [anon_sym_DASH] = ACTIONS(5295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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), + [sym_concatenation] = STATE(2277), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2277), + [anon_sym_RBRACE] = ACTIONS(5301), + [anon_sym_EQ] = ACTIONS(5303), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5307), + [anon_sym_COLON] = ACTIONS(5303), + [anon_sym_COLON_QMARK] = ACTIONS(5303), + [anon_sym_COLON_DASH] = ACTIONS(5303), + [anon_sym_PERCENT] = ACTIONS(5303), + [anon_sym_DASH] = ACTIONS(5303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym_concatenation] = STATE(2279), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2279), + [anon_sym_RBRACE] = ACTIONS(5281), + [anon_sym_EQ] = ACTIONS(5309), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5309), + [anon_sym_COLON_QMARK] = ACTIONS(5309), + [anon_sym_COLON_DASH] = ACTIONS(5309), + [anon_sym_PERCENT] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1834), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), }, [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), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5315), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5317), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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), + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1842), + [anon_sym_PIPE_AMP] = ACTIONS(1842), + [anon_sym_AMP_AMP] = ACTIONS(1842), + [anon_sym_PIPE_PIPE] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1842), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1842), + [anon_sym_LT_AMP] = ACTIONS(1842), + [anon_sym_GT_AMP] = ACTIONS(1842), + [anon_sym_LT_LT] = ACTIONS(1842), + [anon_sym_LT_LT_DASH] = ACTIONS(1842), + [anon_sym_LT_LT_LT] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), }, [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), + [sym_regex_without_right_brace] = ACTIONS(5319), }, [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5281), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(1980), + [anon_sym_esac] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1982), + [anon_sym_PIPE_AMP] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_PIPE_PIPE] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1982), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1982), + [anon_sym_LT_AMP] = ACTIONS(1982), + [anon_sym_GT_AMP] = ACTIONS(1982), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1982), + [anon_sym_LT_LT_LT] = ACTIONS(1982), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), }, [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), + [sym_file_descriptor] = ACTIONS(2046), + [sym__concat] = ACTIONS(2046), + [anon_sym_esac] = ACTIONS(2048), + [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_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_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), }, [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__concat] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4831), + [anon_sym_EQ_TILDE] = ACTIONS(4831), + [anon_sym_EQ_EQ] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4831), + [anon_sym_GT] = ACTIONS(4831), + [anon_sym_BANG_EQ] = ACTIONS(4831), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4775), + [sym_test_operator] = ACTIONS(4831), }, [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), + [sym__concat] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4835), + [anon_sym_EQ_TILDE] = ACTIONS(4835), + [anon_sym_EQ_EQ] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4835), + [anon_sym_GT] = ACTIONS(4835), + [anon_sym_BANG_EQ] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4835), }, [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), + [sym__concat] = ACTIONS(4839), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_AMP_AMP] = ACTIONS(4839), + [anon_sym_PIPE_PIPE] = ACTIONS(4839), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4839), + [anon_sym_EQ_TILDE] = ACTIONS(4839), + [anon_sym_EQ_EQ] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4839), + [anon_sym_GT] = ACTIONS(4839), + [anon_sym_BANG_EQ] = ACTIONS(4839), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4839), }, [1975] = { - [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), + [sym__concat] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4843), + [anon_sym_EQ_TILDE] = ACTIONS(4843), + [anon_sym_EQ_EQ] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4843), + [anon_sym_GT] = ACTIONS(4843), + [anon_sym_BANG_EQ] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4843), }, [1976] = { - [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [1977] = { - [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), + [sym__concat] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4849), + [anon_sym_EQ_TILDE] = ACTIONS(4849), + [anon_sym_EQ_EQ] = ACTIONS(4849), + [anon_sym_EQ] = ACTIONS(4851), + [anon_sym_LT] = ACTIONS(4849), + [anon_sym_GT] = ACTIONS(4849), + [anon_sym_BANG_EQ] = ACTIONS(4849), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4849), }, [1978] = { - [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5323), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [1979] = { - [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), + [sym__concat] = ACTIONS(4855), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_AMP_AMP] = ACTIONS(4855), + [anon_sym_PIPE_PIPE] = ACTIONS(4855), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4855), + [anon_sym_EQ_TILDE] = ACTIONS(4855), + [anon_sym_EQ_EQ] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4855), + [anon_sym_GT] = ACTIONS(4855), + [anon_sym_BANG_EQ] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4855), }, [1980] = { - [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [1981] = { - [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), + [sym__concat] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4861), + [anon_sym_EQ_TILDE] = ACTIONS(4861), + [anon_sym_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4861), }, [1982] = { - [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__concat] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4865), + [anon_sym_AMP_AMP] = ACTIONS(4865), + [anon_sym_PIPE_PIPE] = ACTIONS(4865), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4865), + [anon_sym_EQ_TILDE] = ACTIONS(4865), + [anon_sym_EQ_EQ] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG_EQ] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4865), }, [1983] = { - [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__concat] = ACTIONS(4831), + [sym_variable_name] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4833), + [anon_sym_SEMI_SEMI] = ACTIONS(4833), + [anon_sym_PIPE_AMP] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4833), + [anon_sym_PIPE_PIPE] = ACTIONS(4833), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), + [anon_sym_BQUOTE] = ACTIONS(4833), + [anon_sym_LT_LPAREN] = ACTIONS(4833), + [anon_sym_GT_LPAREN] = ACTIONS(4833), [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), + [sym_word] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4833), }, [1984] = { - [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__concat] = ACTIONS(4835), + [sym_variable_name] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4837), + [anon_sym_SEMI_SEMI] = ACTIONS(4837), + [anon_sym_PIPE_AMP] = ACTIONS(4837), + [anon_sym_AMP_AMP] = ACTIONS(4837), + [anon_sym_PIPE_PIPE] = ACTIONS(4837), + [sym__special_characters] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(4837), + [anon_sym_LT_LPAREN] = ACTIONS(4837), + [anon_sym_GT_LPAREN] = ACTIONS(4837), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5257), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), + [sym_word] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4837), }, [1985] = { - [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__concat] = ACTIONS(4839), + [sym_variable_name] = ACTIONS(4839), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4841), + [anon_sym_SEMI_SEMI] = ACTIONS(4841), + [anon_sym_PIPE_AMP] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(4841), + [anon_sym_DQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), + [anon_sym_BQUOTE] = ACTIONS(4841), + [anon_sym_LT_LPAREN] = ACTIONS(4841), + [anon_sym_GT_LPAREN] = ACTIONS(4841), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5259), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), + [sym_word] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4841), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4841), }, [1986] = { - [sym__concat] = ACTIONS(2710), - [anon_sym_RBRACE] = ACTIONS(2710), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4843), + [sym_variable_name] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4845), + [anon_sym_SEMI_SEMI] = ACTIONS(4845), + [anon_sym_PIPE_AMP] = ACTIONS(4845), + [anon_sym_AMP_AMP] = ACTIONS(4845), + [anon_sym_PIPE_PIPE] = ACTIONS(4845), + [sym__special_characters] = ACTIONS(4845), + [anon_sym_DQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), + [anon_sym_BQUOTE] = ACTIONS(4845), + [anon_sym_LT_LPAREN] = ACTIONS(4845), + [anon_sym_GT_LPAREN] = ACTIONS(4845), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), + [sym_word] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4845), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4845), }, [1987] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5261), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5327), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [1988] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5263), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4849), + [sym_variable_name] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [anon_sym_PIPE_AMP] = ACTIONS(4851), + [anon_sym_AMP_AMP] = ACTIONS(4851), + [anon_sym_PIPE_PIPE] = ACTIONS(4851), + [sym__special_characters] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), + [anon_sym_BQUOTE] = ACTIONS(4851), + [anon_sym_LT_LPAREN] = ACTIONS(4851), + [anon_sym_GT_LPAREN] = ACTIONS(4851), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), + [sym_word] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4849), + [anon_sym_AMP] = ACTIONS(4851), }, [1989] = { - [anon_sym_RBRACE] = ACTIONS(5263), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5329), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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(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(5269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(4855), + [sym_variable_name] = ACTIONS(4855), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4857), + [anon_sym_SEMI_SEMI] = ACTIONS(4857), + [anon_sym_PIPE_AMP] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [sym__special_characters] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), + [anon_sym_BQUOTE] = ACTIONS(4857), + [anon_sym_LT_LPAREN] = ACTIONS(4857), + [anon_sym_GT_LPAREN] = ACTIONS(4857), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), + [sym_word] = ACTIONS(4857), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LF] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4857), }, [1991] = { - [sym__concat] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5331), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4861), + [sym_variable_name] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_SEMI_SEMI] = ACTIONS(4863), + [anon_sym_PIPE_AMP] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [sym__special_characters] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(4863), + [anon_sym_LT_LPAREN] = ACTIONS(4863), + [anon_sym_GT_LPAREN] = ACTIONS(4863), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), + [sym_word] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4863), }, [1993] = { - [sym__concat] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4865), + [sym_variable_name] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4867), + [anon_sym_SEMI_SEMI] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(4867), + [anon_sym_DQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4867), + [anon_sym_LT_LPAREN] = ACTIONS(4867), + [anon_sym_GT_LPAREN] = ACTIONS(4867), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), + [sym_word] = ACTIONS(4867), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_LF] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4867), }, [1994] = { + [sym__concat] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4833), + [anon_sym_SEMI_SEMI] = ACTIONS(4833), + [anon_sym_PIPE_AMP] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4833), + [anon_sym_PIPE_PIPE] = ACTIONS(4833), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), + [anon_sym_BQUOTE] = ACTIONS(4833), + [anon_sym_LT_LPAREN] = ACTIONS(4833), + [anon_sym_GT_LPAREN] = ACTIONS(4833), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5275), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), + [sym_word] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4833), }, [1995] = { - [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(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(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__concat] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4837), + [anon_sym_SEMI_SEMI] = ACTIONS(4837), + [anon_sym_PIPE_AMP] = ACTIONS(4837), + [anon_sym_AMP_AMP] = ACTIONS(4837), + [anon_sym_PIPE_PIPE] = ACTIONS(4837), + [sym__special_characters] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(4837), + [anon_sym_LT_LPAREN] = ACTIONS(4837), + [anon_sym_GT_LPAREN] = ACTIONS(4837), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), + [sym_word] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4837), }, [1996] = { - [sym__concat] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4839), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4841), + [anon_sym_SEMI_SEMI] = ACTIONS(4841), + [anon_sym_PIPE_AMP] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(4841), + [anon_sym_DQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), + [anon_sym_BQUOTE] = ACTIONS(4841), + [anon_sym_LT_LPAREN] = ACTIONS(4841), + [anon_sym_GT_LPAREN] = ACTIONS(4841), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), + [sym_word] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4841), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4841), }, [1997] = { + [sym__concat] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4845), + [anon_sym_SEMI_SEMI] = ACTIONS(4845), + [anon_sym_PIPE_AMP] = ACTIONS(4845), + [anon_sym_AMP_AMP] = ACTIONS(4845), + [anon_sym_PIPE_PIPE] = ACTIONS(4845), + [sym__special_characters] = ACTIONS(4845), + [anon_sym_DQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), + [anon_sym_BQUOTE] = ACTIONS(4845), + [anon_sym_LT_LPAREN] = ACTIONS(4845), + [anon_sym_GT_LPAREN] = ACTIONS(4845), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5279), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), + [sym_word] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4845), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4845), }, [1998] = { - [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(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(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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5333), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [1999] = { + [sym__concat] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [anon_sym_PIPE_AMP] = ACTIONS(4851), + [anon_sym_AMP_AMP] = ACTIONS(4851), + [anon_sym_PIPE_PIPE] = ACTIONS(4851), + [sym__special_characters] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), + [anon_sym_BQUOTE] = ACTIONS(4851), + [anon_sym_LT_LPAREN] = ACTIONS(4851), + [anon_sym_GT_LPAREN] = ACTIONS(4851), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5283), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), + [sym_word] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4849), + [anon_sym_AMP] = ACTIONS(4851), }, [2000] = { - [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(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(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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5335), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(4855), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4857), + [anon_sym_SEMI_SEMI] = ACTIONS(4857), + [anon_sym_PIPE_AMP] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [sym__special_characters] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), + [anon_sym_BQUOTE] = ACTIONS(4857), + [anon_sym_LT_LPAREN] = ACTIONS(4857), + [anon_sym_GT_LPAREN] = ACTIONS(4857), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), + [sym_word] = ACTIONS(4857), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LF] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4857), }, [2002] = { - [sym__concat] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5337), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [2003] = { - [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__concat] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_SEMI_SEMI] = ACTIONS(4863), + [anon_sym_PIPE_AMP] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [sym__special_characters] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(4863), + [anon_sym_LT_LPAREN] = ACTIONS(4863), + [anon_sym_GT_LPAREN] = ACTIONS(4863), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), + [sym_word] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4863), }, [2004] = { - [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__concat] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4867), + [anon_sym_SEMI_SEMI] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(4867), + [anon_sym_DQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4867), + [anon_sym_LT_LPAREN] = ACTIONS(4867), + [anon_sym_GT_LPAREN] = ACTIONS(4867), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(3831), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), + [sym_word] = ACTIONS(4867), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_LF] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4867), }, [2005] = { - [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), + [sym_file_descriptor] = ACTIONS(4831), + [sym__concat] = ACTIONS(4831), + [sym_variable_name] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_PIPE_AMP] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_GT_GT] = ACTIONS(4831), + [anon_sym_AMP_GT] = ACTIONS(4833), + [anon_sym_AMP_GT_GT] = ACTIONS(4831), + [anon_sym_LT_AMP] = ACTIONS(4831), + [anon_sym_GT_AMP] = ACTIONS(4831), + [sym__special_characters] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), + [anon_sym_BQUOTE] = ACTIONS(4831), + [anon_sym_LT_LPAREN] = ACTIONS(4831), + [anon_sym_GT_LPAREN] = ACTIONS(4831), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4831), }, [2006] = { - [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), + [sym_file_descriptor] = ACTIONS(4835), + [sym__concat] = ACTIONS(4835), + [sym_variable_name] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_PIPE_AMP] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4835), + [anon_sym_AMP_GT] = ACTIONS(4837), + [anon_sym_AMP_GT_GT] = ACTIONS(4835), + [anon_sym_LT_AMP] = ACTIONS(4835), + [anon_sym_GT_AMP] = ACTIONS(4835), + [sym__special_characters] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), + [anon_sym_BQUOTE] = ACTIONS(4835), + [anon_sym_LT_LPAREN] = ACTIONS(4835), + [anon_sym_GT_LPAREN] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4835), }, [2007] = { - [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), + [sym_file_descriptor] = ACTIONS(4839), + [sym__concat] = ACTIONS(4839), + [sym_variable_name] = ACTIONS(4839), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_PIPE_AMP] = ACTIONS(4839), + [anon_sym_AMP_AMP] = ACTIONS(4839), + [anon_sym_PIPE_PIPE] = ACTIONS(4839), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_GT_GT] = ACTIONS(4839), + [anon_sym_AMP_GT] = ACTIONS(4841), + [anon_sym_AMP_GT_GT] = ACTIONS(4839), + [anon_sym_LT_AMP] = ACTIONS(4839), + [anon_sym_GT_AMP] = ACTIONS(4839), + [sym__special_characters] = ACTIONS(4839), + [anon_sym_DQUOTE] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), + [anon_sym_BQUOTE] = ACTIONS(4839), + [anon_sym_LT_LPAREN] = ACTIONS(4839), + [anon_sym_GT_LPAREN] = ACTIONS(4839), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4839), }, [2008] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5299), + [sym_file_descriptor] = ACTIONS(4843), + [sym__concat] = ACTIONS(4843), + [sym_variable_name] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_PIPE_AMP] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4843), + [anon_sym_AMP_GT] = ACTIONS(4845), + [anon_sym_AMP_GT_GT] = ACTIONS(4843), + [anon_sym_LT_AMP] = ACTIONS(4843), + [anon_sym_GT_AMP] = ACTIONS(4843), + [sym__special_characters] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), + [anon_sym_BQUOTE] = ACTIONS(4843), + [anon_sym_LT_LPAREN] = ACTIONS(4843), + [anon_sym_GT_LPAREN] = ACTIONS(4843), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4843), }, [2009] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5301), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5339), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [2010] = { - [anon_sym_RBRACE] = ACTIONS(5301), + [sym_file_descriptor] = ACTIONS(4849), + [sym__concat] = ACTIONS(4849), + [sym_variable_name] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4849), + [anon_sym_PIPE_AMP] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4851), + [anon_sym_GT] = ACTIONS(4851), + [anon_sym_GT_GT] = ACTIONS(4849), + [anon_sym_AMP_GT] = ACTIONS(4851), + [anon_sym_AMP_GT_GT] = ACTIONS(4849), + [anon_sym_LT_AMP] = ACTIONS(4849), + [anon_sym_GT_AMP] = ACTIONS(4849), + [sym__special_characters] = ACTIONS(4849), + [anon_sym_DQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), + [anon_sym_BQUOTE] = ACTIONS(4849), + [anon_sym_LT_LPAREN] = ACTIONS(4849), + [anon_sym_GT_LPAREN] = ACTIONS(4849), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4849), }, [2011] = { - [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(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(5307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5341), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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), + [sym_file_descriptor] = ACTIONS(4855), + [sym__concat] = ACTIONS(4855), + [sym_variable_name] = ACTIONS(4855), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_PIPE_AMP] = ACTIONS(4855), + [anon_sym_AMP_AMP] = ACTIONS(4855), + [anon_sym_PIPE_PIPE] = ACTIONS(4855), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_GT_GT] = ACTIONS(4855), + [anon_sym_AMP_GT] = ACTIONS(4857), + [anon_sym_AMP_GT_GT] = ACTIONS(4855), + [anon_sym_LT_AMP] = ACTIONS(4855), + [anon_sym_GT_AMP] = ACTIONS(4855), + [sym__special_characters] = ACTIONS(4855), + [anon_sym_DQUOTE] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), + [anon_sym_BQUOTE] = ACTIONS(4855), + [anon_sym_LT_LPAREN] = ACTIONS(4855), + [anon_sym_GT_LPAREN] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4855), }, [2013] = { - [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(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(5313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5343), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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), + [sym_file_descriptor] = ACTIONS(4861), + [sym__concat] = ACTIONS(4861), + [sym_variable_name] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4863), + [anon_sym_GT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4863), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4861), }, [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), + [sym_file_descriptor] = ACTIONS(4865), + [sym__concat] = ACTIONS(4865), + [sym_variable_name] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4865), + [anon_sym_PIPE_AMP] = ACTIONS(4865), + [anon_sym_AMP_AMP] = ACTIONS(4865), + [anon_sym_PIPE_PIPE] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4867), + [anon_sym_GT] = ACTIONS(4867), + [anon_sym_GT_GT] = ACTIONS(4865), + [anon_sym_AMP_GT] = ACTIONS(4867), + [anon_sym_AMP_GT_GT] = ACTIONS(4865), + [anon_sym_LT_AMP] = ACTIONS(4865), + [anon_sym_GT_AMP] = ACTIONS(4865), + [sym__special_characters] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), + [anon_sym_BQUOTE] = ACTIONS(4865), + [anon_sym_LT_LPAREN] = ACTIONS(4865), + [anon_sym_GT_LPAREN] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4865), }, [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__concat] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym__string_content] = ACTIONS(4831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), + [anon_sym_BQUOTE] = ACTIONS(4833), [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__concat] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym__string_content] = ACTIONS(4835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(4837), [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__concat] = ACTIONS(4839), + [anon_sym_DQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym__string_content] = ACTIONS(4839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), + [anon_sym_BQUOTE] = ACTIONS(4841), [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym__string_content] = ACTIONS(4843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), + [anon_sym_BQUOTE] = ACTIONS(4845), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), }, [2020] = { - [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5345), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5327), - [anon_sym_SEMI] = ACTIONS(5327), - [anon_sym_LF] = ACTIONS(5325), - [anon_sym_AMP] = ACTIONS(5327), + [sym_word] = ACTIONS(781), }, [2021] = { - [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__concat] = ACTIONS(4849), + [anon_sym_DQUOTE] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym__string_content] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), + [anon_sym_BQUOTE] = ACTIONS(4851), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5331), - [anon_sym_SEMI] = ACTIONS(5331), - [anon_sym_LF] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5331), }, [2022] = { - [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5347), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(5335), - [anon_sym_SEMI] = ACTIONS(5335), - [anon_sym_LF] = ACTIONS(5333), - [anon_sym_AMP] = ACTIONS(5335), + [sym_word] = ACTIONS(781), }, [2023] = { - [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), + [sym__concat] = ACTIONS(4855), + [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym__string_content] = ACTIONS(4855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), + [anon_sym_BQUOTE] = ACTIONS(4857), + [sym_comment] = ACTIONS(177), }, [2024] = { - [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5349), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [2025] = { - [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), + [sym__concat] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym__string_content] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(4863), + [sym_comment] = ACTIONS(177), }, [2026] = { - [anon_sym_fi] = ACTIONS(5337), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym__string_content] = ACTIONS(4865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4867), + [sym_comment] = ACTIONS(177), }, [2027] = { - [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), + [anon_sym_RBRACE] = ACTIONS(4302), + [anon_sym_EQ] = ACTIONS(5351), + [sym__special_characters] = ACTIONS(5351), + [anon_sym_DQUOTE] = ACTIONS(4302), + [anon_sym_DOLLAR] = ACTIONS(5351), + [sym_raw_string] = ACTIONS(4302), + [anon_sym_POUND] = ACTIONS(4302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4302), + [anon_sym_SLASH] = ACTIONS(4302), + [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(4302), + [anon_sym_BQUOTE] = ACTIONS(4302), + [anon_sym_LT_LPAREN] = ACTIONS(4302), + [anon_sym_GT_LPAREN] = ACTIONS(4302), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5351), }, [2028] = { - [anon_sym_esac] = ACTIONS(5339), - [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(5353), + [sym__special_characters] = ACTIONS(5353), + [anon_sym_DQUOTE] = ACTIONS(4304), + [anon_sym_DOLLAR] = ACTIONS(5353), + [sym_raw_string] = ACTIONS(4304), + [anon_sym_POUND] = ACTIONS(4304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4304), + [anon_sym_SLASH] = ACTIONS(4304), + [anon_sym_COLON] = ACTIONS(5353), + [anon_sym_COLON_QMARK] = ACTIONS(5353), + [anon_sym_COLON_DASH] = ACTIONS(5353), + [anon_sym_PERCENT] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4304), + [anon_sym_BQUOTE] = ACTIONS(4304), + [anon_sym_LT_LPAREN] = ACTIONS(4304), + [anon_sym_GT_LPAREN] = ACTIONS(4304), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5353), }, [2029] = { - [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__concat] = ACTIONS(2756), + [anon_sym_RBRACE] = ACTIONS(2756), [sym_comment] = ACTIONS(53), }, [2030] = { - [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__concat] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2259), }, [2031] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5355), [sym_comment] = ACTIONS(53), }, [2032] = { - [anon_sym_esac] = ACTIONS(5341), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5357), [sym_comment] = ACTIONS(53), }, [2033] = { - [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), + [anon_sym_RBRACE] = ACTIONS(5357), [sym_comment] = ACTIONS(53), }, [2034] = { - [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), + [sym_concatenation] = STATE(2301), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2301), + [anon_sym_RBRACE] = ACTIONS(5359), + [anon_sym_EQ] = ACTIONS(5361), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5361), + [anon_sym_COLON_QMARK] = ACTIONS(5361), + [anon_sym_COLON_DASH] = ACTIONS(5361), + [anon_sym_PERCENT] = ACTIONS(5361), + [anon_sym_DASH] = ACTIONS(5361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2035] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + }, + [2036] = { + [sym_concatenation] = STATE(2304), + [sym_string] = STATE(2303), + [sym_simple_expansion] = STATE(2303), + [sym_string_expansion] = STATE(2303), + [sym_expansion] = STATE(2303), + [sym_command_substitution] = STATE(2303), + [sym_process_substitution] = STATE(2303), + [anon_sym_RBRACE] = ACTIONS(5357), + [sym__special_characters] = ACTIONS(5365), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5367), + }, + [2037] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_RBRACE] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + }, + [2038] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5369), + }, + [2039] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5371), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2040] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_RBRACE] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + }, + [2041] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5373), + }, + [2042] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5375), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2043] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5377), + }, + [2044] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5357), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2045] = { + [sym_concatenation] = STATE(2311), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2311), + [anon_sym_RBRACE] = ACTIONS(5379), + [anon_sym_EQ] = ACTIONS(5381), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5381), + [anon_sym_COLON_QMARK] = ACTIONS(5381), + [anon_sym_COLON_DASH] = ACTIONS(5381), + [anon_sym_PERCENT] = ACTIONS(5381), + [anon_sym_DASH] = ACTIONS(5381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2046] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_RBRACE] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + }, + [2047] = { + [sym_concatenation] = STATE(2313), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2313), + [anon_sym_RBRACE] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(5387), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5389), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5387), + [anon_sym_COLON_QMARK] = ACTIONS(5387), + [anon_sym_COLON_DASH] = ACTIONS(5387), + [anon_sym_PERCENT] = ACTIONS(5387), + [anon_sym_DASH] = ACTIONS(5387), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2048] = { + [sym__concat] = ACTIONS(3905), + [anon_sym_RBRACE] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(3907), + [sym__special_characters] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3905), + [anon_sym_POUND] = ACTIONS(3905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), + [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(3905), + [anon_sym_BQUOTE] = ACTIONS(3905), + [anon_sym_LT_LPAREN] = ACTIONS(3905), + [anon_sym_GT_LPAREN] = ACTIONS(3905), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3907), + }, + [2049] = { + [sym__concat] = ACTIONS(3913), + [anon_sym_RBRACE] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3915), + [sym__special_characters] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3913), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3913), + [anon_sym_POUND] = ACTIONS(3913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), + [anon_sym_COLON] = ACTIONS(3915), + [anon_sym_COLON_QMARK] = ACTIONS(3915), + [anon_sym_COLON_DASH] = ACTIONS(3915), + [anon_sym_PERCENT] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), + [anon_sym_BQUOTE] = ACTIONS(3913), + [anon_sym_LT_LPAREN] = ACTIONS(3913), + [anon_sym_GT_LPAREN] = ACTIONS(3913), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(3915), + }, + [2050] = { + [sym__concat] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4002), + [sym__special_characters] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4000), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4000), + [anon_sym_POUND] = ACTIONS(4000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_COLON_QMARK] = ACTIONS(4002), + [anon_sym_COLON_DASH] = ACTIONS(4002), + [anon_sym_PERCENT] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), + [anon_sym_BQUOTE] = ACTIONS(4000), + [anon_sym_LT_LPAREN] = ACTIONS(4000), + [anon_sym_GT_LPAREN] = ACTIONS(4000), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4002), + }, + [2051] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5391), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2052] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5393), + [sym_comment] = ACTIONS(53), + }, + [2053] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5395), + [sym_comment] = ACTIONS(53), + }, + [2054] = { + [anon_sym_RBRACE] = ACTIONS(5395), + [sym_comment] = ACTIONS(53), + }, + [2055] = { + [sym_concatenation] = STATE(2318), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2318), + [anon_sym_RBRACE] = ACTIONS(5397), + [anon_sym_EQ] = ACTIONS(5399), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2056] = { + [sym__concat] = ACTIONS(4016), + [anon_sym_RBRACE] = ACTIONS(4016), + [anon_sym_EQ] = ACTIONS(4018), + [sym__special_characters] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4016), + [anon_sym_POUND] = ACTIONS(4016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_COLON] = ACTIONS(4018), + [anon_sym_COLON_QMARK] = ACTIONS(4018), + [anon_sym_COLON_DASH] = ACTIONS(4018), + [anon_sym_PERCENT] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), + [anon_sym_BQUOTE] = ACTIONS(4016), + [anon_sym_LT_LPAREN] = ACTIONS(4016), + [anon_sym_GT_LPAREN] = ACTIONS(4016), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4018), + }, + [2057] = { + [sym_concatenation] = STATE(2320), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2320), + [anon_sym_RBRACE] = ACTIONS(5403), + [anon_sym_EQ] = ACTIONS(5405), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2058] = { + [sym__concat] = ACTIONS(4026), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(4028), + [sym__special_characters] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4026), + [anon_sym_DOLLAR] = ACTIONS(4028), + [sym_raw_string] = ACTIONS(4026), + [anon_sym_POUND] = ACTIONS(4026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COLON_QMARK] = ACTIONS(4028), + [anon_sym_COLON_DASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [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(4028), + }, + [2059] = { + [sym_concatenation] = STATE(2322), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2322), + [anon_sym_RBRACE] = ACTIONS(5409), + [anon_sym_EQ] = ACTIONS(5411), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5411), + [anon_sym_COLON_QMARK] = ACTIONS(5411), + [anon_sym_COLON_DASH] = ACTIONS(5411), + [anon_sym_PERCENT] = ACTIONS(5411), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2060] = { + [sym__concat] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_EQ] = ACTIONS(4038), + [sym__special_characters] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4036), + [anon_sym_DOLLAR] = ACTIONS(4038), + [sym_raw_string] = ACTIONS(4036), + [anon_sym_POUND] = ACTIONS(4036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), + [anon_sym_COLON] = ACTIONS(4038), + [anon_sym_COLON_QMARK] = ACTIONS(4038), + [anon_sym_COLON_DASH] = ACTIONS(4038), + [anon_sym_PERCENT] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(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(4038), + }, + [2061] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5415), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2062] = { + [sym__concat] = ACTIONS(4042), + [anon_sym_RBRACE] = ACTIONS(4042), + [anon_sym_EQ] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4042), + [anon_sym_DOLLAR] = ACTIONS(4044), + [sym_raw_string] = ACTIONS(4042), + [anon_sym_POUND] = ACTIONS(4042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), + [anon_sym_COLON] = ACTIONS(4044), + [anon_sym_COLON_QMARK] = ACTIONS(4044), + [anon_sym_COLON_DASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), + [anon_sym_BQUOTE] = ACTIONS(4042), + [anon_sym_LT_LPAREN] = ACTIONS(4042), + [anon_sym_GT_LPAREN] = ACTIONS(4042), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4044), + }, + [2063] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5417), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2064] = { + [sym__simple_heredoc_body] = ACTIONS(5419), + [sym__heredoc_body_beginning] = ACTIONS(5419), + [sym_file_descriptor] = ACTIONS(5419), + [sym__concat] = ACTIONS(5419), + [anon_sym_esac] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5421), + [anon_sym_SEMI_SEMI] = ACTIONS(5421), + [anon_sym_PIPE_AMP] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [anon_sym_EQ_TILDE] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym_AMP_GT] = ACTIONS(5421), + [anon_sym_AMP_GT_GT] = ACTIONS(5421), + [anon_sym_LT_AMP] = ACTIONS(5421), + [anon_sym_GT_AMP] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_LT_LT_DASH] = ACTIONS(5421), + [anon_sym_LT_LT_LT] = ACTIONS(5421), + [sym__special_characters] = ACTIONS(5421), + [anon_sym_DQUOTE] = ACTIONS(5421), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), + [anon_sym_BQUOTE] = ACTIONS(5421), + [anon_sym_LT_LPAREN] = ACTIONS(5421), + [anon_sym_GT_LPAREN] = ACTIONS(5421), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LF] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5421), + }, + [2065] = { + [sym__simple_heredoc_body] = ACTIONS(5423), + [sym__heredoc_body_beginning] = ACTIONS(5423), + [sym_file_descriptor] = ACTIONS(5423), + [sym__concat] = ACTIONS(5423), + [anon_sym_esac] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5425), + [anon_sym_SEMI_SEMI] = ACTIONS(5425), + [anon_sym_PIPE_AMP] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [anon_sym_EQ_TILDE] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym_AMP_GT] = ACTIONS(5425), + [anon_sym_AMP_GT_GT] = ACTIONS(5425), + [anon_sym_LT_AMP] = ACTIONS(5425), + [anon_sym_GT_AMP] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_LT_LT_DASH] = ACTIONS(5425), + [anon_sym_LT_LT_LT] = ACTIONS(5425), + [sym__special_characters] = ACTIONS(5425), + [anon_sym_DQUOTE] = ACTIONS(5425), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), + [anon_sym_BQUOTE] = ACTIONS(5425), + [anon_sym_LT_LPAREN] = ACTIONS(5425), + [anon_sym_GT_LPAREN] = ACTIONS(5425), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LF] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5425), + }, + [2066] = { + [sym__simple_heredoc_body] = ACTIONS(5427), + [sym__heredoc_body_beginning] = ACTIONS(5427), + [sym_file_descriptor] = ACTIONS(5427), + [sym__concat] = ACTIONS(5427), + [anon_sym_esac] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5429), + [anon_sym_SEMI_SEMI] = ACTIONS(5429), + [anon_sym_PIPE_AMP] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_EQ_TILDE] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym_AMP_GT] = ACTIONS(5429), + [anon_sym_AMP_GT_GT] = ACTIONS(5429), + [anon_sym_LT_AMP] = ACTIONS(5429), + [anon_sym_GT_AMP] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_LT_LT_DASH] = ACTIONS(5429), + [anon_sym_LT_LT_LT] = ACTIONS(5429), + [sym__special_characters] = ACTIONS(5429), + [anon_sym_DQUOTE] = ACTIONS(5429), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), + [anon_sym_BQUOTE] = ACTIONS(5429), + [anon_sym_LT_LPAREN] = ACTIONS(5429), + [anon_sym_GT_LPAREN] = ACTIONS(5429), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5429), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LF] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5429), + }, + [2067] = { + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_RPAREN] = ACTIONS(4389), + [anon_sym_PIPE_AMP] = ACTIONS(4389), + [anon_sym_AMP_AMP] = ACTIONS(4389), + [anon_sym_PIPE_PIPE] = ACTIONS(4389), + [anon_sym_BQUOTE] = ACTIONS(4389), + [sym_comment] = ACTIONS(53), + }, + [2068] = { + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_RPAREN] = ACTIONS(3512), + [anon_sym_PIPE_AMP] = ACTIONS(3512), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(3512), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_comment] = ACTIONS(53), + }, + [2069] = { + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(4395), + [anon_sym_PIPE_AMP] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_BQUOTE] = ACTIONS(4395), + [sym_comment] = ACTIONS(53), + }, + [2070] = { + [anon_sym_fi] = ACTIONS(5431), + [sym_comment] = ACTIONS(53), + }, + [2071] = { + [anon_sym_PIPE] = ACTIONS(4437), + [anon_sym_RPAREN] = ACTIONS(4439), + [anon_sym_PIPE_AMP] = ACTIONS(4439), + [anon_sym_AMP_AMP] = ACTIONS(4439), + [anon_sym_PIPE_PIPE] = ACTIONS(4439), + [anon_sym_BQUOTE] = ACTIONS(4439), + [sym_comment] = ACTIONS(53), + }, + [2072] = { + [anon_sym_esac] = ACTIONS(5433), + [sym_comment] = ACTIONS(53), + }, + [2073] = { + [anon_sym_PIPE] = ACTIONS(4467), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_PIPE_AMP] = ACTIONS(4469), + [anon_sym_AMP_AMP] = ACTIONS(4469), + [anon_sym_PIPE_PIPE] = ACTIONS(4469), + [anon_sym_BQUOTE] = ACTIONS(4469), + [sym_comment] = ACTIONS(53), + }, + [2074] = { + [sym_case_item] = STATE(1508), + [sym_last_case_item] = STATE(2327), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1508), + [sym__special_characters] = ACTIONS(2301), [anon_sym_DQUOTE] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(2259), + [sym_raw_string] = ACTIONS(2303), [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), + [sym_word] = ACTIONS(2303), }, - [2035] = { - [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), + [2075] = { + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_PIPE_AMP] = ACTIONS(4473), + [anon_sym_AMP_AMP] = ACTIONS(4473), + [anon_sym_PIPE_PIPE] = ACTIONS(4473), + [anon_sym_BQUOTE] = ACTIONS(4473), [sym_comment] = ACTIONS(53), }, - [2036] = { - [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), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), + [2076] = { + [anon_sym_esac] = ACTIONS(5435), [sym_comment] = ACTIONS(53), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), + [2077] = { + [anon_sym_PIPE] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4479), + [anon_sym_PIPE_AMP] = ACTIONS(4479), + [anon_sym_AMP_AMP] = ACTIONS(4479), + [anon_sym_PIPE_PIPE] = ACTIONS(4479), + [anon_sym_BQUOTE] = ACTIONS(4479), [sym_comment] = ACTIONS(53), }, - [2038] = { - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), + [2078] = { + [sym_case_item] = STATE(1508), + [sym_last_case_item] = STATE(2329), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(1069), + [sym_simple_expansion] = STATE(1069), + [sym_string_expansion] = STATE(1069), + [sym_expansion] = STATE(1069), + [sym_command_substitution] = STATE(1069), + [sym_process_substitution] = STATE(1069), + [aux_sym_case_statement_repeat1] = STATE(1508), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [sym_raw_string] = ACTIONS(2303), + [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), + }, + [2079] = { + [anon_sym_PIPE] = ACTIONS(4509), + [anon_sym_RPAREN] = ACTIONS(4511), + [anon_sym_PIPE_AMP] = ACTIONS(4511), + [anon_sym_AMP_AMP] = ACTIONS(4511), + [anon_sym_PIPE_PIPE] = ACTIONS(4511), + [anon_sym_BQUOTE] = ACTIONS(4511), [sym_comment] = ACTIONS(53), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), + [2080] = { + [aux_sym_concatenation_repeat1] = STATE(2083), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), [sym_comment] = ACTIONS(53), }, - [2040] = { - [aux_sym_concatenation_repeat1] = STATE(2044), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), + [2081] = { + [aux_sym_concatenation_repeat1] = STATE(2083), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), [sym_comment] = ACTIONS(53), }, - [2041] = { - [aux_sym_concatenation_repeat1] = STATE(2044), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_LT_LT_LT] = ACTIONS(1093), + [2082] = { + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_BQUOTE] = ACTIONS(1109), [sym_comment] = ACTIONS(53), }, - [2042] = { - [sym_file_descriptor] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), + [2083] = { + [aux_sym_concatenation_repeat1] = STATE(2330), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), [sym_comment] = ACTIONS(53), }, - [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(5343), - }, - [2044] = { - [aux_sym_concatenation_repeat1] = STATE(2286), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_AMP] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(693), - [anon_sym_LT_LT_LT] = ACTIONS(693), + [2084] = { + [aux_sym_concatenation_repeat1] = STATE(2088), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1105), + [anon_sym_LT_AMP] = ACTIONS(1105), + [anon_sym_GT_AMP] = ACTIONS(1105), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(1105), [sym_comment] = ACTIONS(53), }, - [2045] = { - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_GT] = ACTIONS(697), - [anon_sym_AMP_GT] = ACTIONS(699), - [anon_sym_AMP_GT_GT] = ACTIONS(697), - [anon_sym_LT_AMP] = ACTIONS(697), - [anon_sym_GT_AMP] = ACTIONS(697), - [anon_sym_LT_LT] = ACTIONS(699), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), + [2085] = { + [aux_sym_concatenation_repeat1] = STATE(2088), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1109), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1109), + [anon_sym_LT_AMP] = ACTIONS(1109), + [anon_sym_GT_AMP] = ACTIONS(1109), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1109), + [anon_sym_LT_LT_LT] = ACTIONS(1109), [sym_comment] = ACTIONS(53), }, - [2046] = { + [2086] = { + [sym_file_descriptor] = ACTIONS(1109), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1109), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1109), + [anon_sym_LT_AMP] = ACTIONS(1109), + [anon_sym_GT_AMP] = ACTIONS(1109), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1109), + [anon_sym_LT_LT_LT] = ACTIONS(1109), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_comment] = ACTIONS(53), + }, + [2087] = { + [sym_string] = STATE(2331), + [sym_simple_expansion] = STATE(2331), + [sym_string_expansion] = STATE(2331), + [sym_expansion] = STATE(2331), + [sym_command_substitution] = STATE(2331), + [sym_process_substitution] = STATE(2331), + [sym__special_characters] = ACTIONS(5437), + [anon_sym_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4092), + [sym_raw_string] = ACTIONS(5437), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4100), + [anon_sym_LT_LPAREN] = ACTIONS(4102), + [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5437), + }, + [2088] = { + [aux_sym_concatenation_repeat1] = STATE(2332), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(705), + [anon_sym_LT_AMP] = ACTIONS(705), + [anon_sym_GT_AMP] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(705), + [anon_sym_LT_LT_LT] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + }, + [2089] = { + [sym_file_descriptor] = ACTIONS(709), + [sym__concat] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_PIPE_AMP] = ACTIONS(709), + [anon_sym_AMP_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(709), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(709), + [anon_sym_LT_AMP] = ACTIONS(709), + [anon_sym_GT_AMP] = ACTIONS(709), + [anon_sym_LT_LT] = ACTIONS(711), + [anon_sym_LT_LT_DASH] = ACTIONS(709), + [anon_sym_LT_LT_LT] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [sym_comment] = ACTIONS(53), + }, + [2090] = { + [anon_sym_DQUOTE] = ACTIONS(5439), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [2091] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(5439), + [anon_sym_DOLLAR] = ACTIONS(5441), [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), }, - [2047] = { - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_PIPE_AMP] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(727), - [anon_sym_LT_AMP] = ACTIONS(727), - [anon_sym_GT_AMP] = ACTIONS(727), - [anon_sym_LT_LT] = ACTIONS(729), - [anon_sym_LT_LT_DASH] = ACTIONS(727), - [anon_sym_LT_LT_LT] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), - [sym_comment] = ACTIONS(53), - }, - [2048] = { - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - }, - [2049] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(735), - [anon_sym_LT_AMP] = ACTIONS(735), - [anon_sym_GT_AMP] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(735), - [anon_sym_LT_LT_LT] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - }, - [2050] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(5347), - [sym_comment] = ACTIONS(53), - }, - [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(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(5353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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), - }, - [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(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(5369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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(5377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2055] = { - [anon_sym_PIPE] = ACTIONS(869), - [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), - }, - [2056] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5381), - [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), - }, - [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(5381), - [sym_comment] = ACTIONS(53), - }, - [2058] = { - [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(5381), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2059] = { - [anon_sym_PIPE] = ACTIONS(869), - [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), - }, - [2060] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5383), - [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), - }, - [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(3339), - [sym_word] = ACTIONS(3339), - }, - [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(3831), - [sym_word] = ACTIONS(3831), - }, - [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(3837), - [sym_word] = ACTIONS(3837), - }, - [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(3922), - [sym_word] = ACTIONS(3922), - }, - [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(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(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), - }, - [2066] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5387), - [sym_comment] = ACTIONS(53), - }, - [2067] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5389), - [sym_comment] = ACTIONS(53), - }, - [2068] = { - [anon_sym_RBRACE] = ACTIONS(5389), - [sym_comment] = ACTIONS(53), - }, - [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(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(5395), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3938), - [sym_word] = ACTIONS(3938), - }, - [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(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(5401), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3948), - [sym_word] = ACTIONS(3948), - }, - [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(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(5407), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3958), - [sym_word] = ACTIONS(3958), - }, - [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(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(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), - }, - [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(3964), - [sym_word] = ACTIONS(3964), - }, - [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(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(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), - }, - [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(3831), - [sym_word] = ACTIONS(3831), - }, - [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(3837), - [sym_word] = ACTIONS(3837), - }, - [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(3922), - [sym_word] = ACTIONS(3922), - }, - [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(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(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), - }, - [2082] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5415), - [sym_comment] = ACTIONS(53), - }, - [2083] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5417), - [sym_comment] = ACTIONS(53), - }, - [2084] = { - [anon_sym_RBRACE] = ACTIONS(5417), - [sym_comment] = ACTIONS(53), - }, - [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(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(5423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3938), - [sym_word] = ACTIONS(3938), - }, - [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(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(5429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3948), - [sym_word] = ACTIONS(3948), - }, - [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(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(5435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3958), - [sym_word] = ACTIONS(3958), - }, - [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(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(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), - }, [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_file_descriptor] = ACTIONS(741), + [sym__concat] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_PIPE_AMP] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(741), + [anon_sym_AMP_GT] = ACTIONS(743), + [anon_sym_AMP_GT_GT] = ACTIONS(741), + [anon_sym_LT_AMP] = ACTIONS(741), + [anon_sym_GT_AMP] = ACTIONS(741), + [anon_sym_LT_LT] = ACTIONS(743), + [anon_sym_LT_LT_DASH] = ACTIONS(741), + [anon_sym_LT_LT_LT] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3964), - [sym_word] = ACTIONS(3964), }, [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(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(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), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_AMP_GT] = ACTIONS(747), + [anon_sym_AMP_GT_GT] = ACTIONS(745), + [anon_sym_LT_AMP] = ACTIONS(745), + [anon_sym_GT_AMP] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(747), + [anon_sym_LT_LT_DASH] = ACTIONS(745), + [anon_sym_LT_LT_LT] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(745), + [sym_comment] = ACTIONS(53), }, [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_file_descriptor] = ACTIONS(749), + [sym__concat] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_PIPE_AMP] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(749), + [anon_sym_AMP_GT] = ACTIONS(751), + [anon_sym_AMP_GT_GT] = ACTIONS(749), + [anon_sym_LT_AMP] = ACTIONS(749), + [anon_sym_GT_AMP] = ACTIONS(749), + [anon_sym_LT_LT] = ACTIONS(751), + [anon_sym_LT_LT_DASH] = ACTIONS(749), + [anon_sym_LT_LT_LT] = ACTIONS(749), + [anon_sym_BQUOTE] = ACTIONS(749), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4743), }, [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), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(5443), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4747), }, [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(4751), + [sym_concatenation] = STATE(2338), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2338), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_EQ] = ACTIONS(5447), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5451), + [anon_sym_COLON] = ACTIONS(5447), + [anon_sym_COLON_QMARK] = ACTIONS(5447), + [anon_sym_COLON_DASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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_subscript] = STATE(2342), + [sym_variable_name] = ACTIONS(5453), + [anon_sym_DOLLAR] = ACTIONS(5455), + [anon_sym_DASH] = ACTIONS(5455), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4755), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5457), + [anon_sym_STAR] = ACTIONS(5455), + [anon_sym_AT] = ACTIONS(5455), + [anon_sym_QMARK] = ACTIONS(5455), + [anon_sym_0] = ACTIONS(5459), + [anon_sym__] = ACTIONS(5459), }, [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(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(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_concatenation] = STATE(2345), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2345), + [anon_sym_RBRACE] = ACTIONS(5461), + [anon_sym_EQ] = ACTIONS(5463), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5465), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5467), + [anon_sym_COLON] = ACTIONS(5463), + [anon_sym_COLON_QMARK] = ACTIONS(5463), + [anon_sym_COLON_DASH] = ACTIONS(5463), + [anon_sym_PERCENT] = ACTIONS(5463), + [anon_sym_DASH] = ACTIONS(5463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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(4761), + [sym_concatenation] = STATE(2348), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2348), + [anon_sym_RBRACE] = ACTIONS(5469), + [anon_sym_EQ] = ACTIONS(5471), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5475), + [anon_sym_COLON] = ACTIONS(5471), + [anon_sym_COLON_QMARK] = ACTIONS(5471), + [anon_sym_COLON_DASH] = ACTIONS(5471), + [anon_sym_PERCENT] = ACTIONS(5471), + [anon_sym_DASH] = ACTIONS(5471), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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(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(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), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(5477), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), }, [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_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(5477), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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(4767), + [sym_word] = ACTIONS(369), }, [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(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(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), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(5477), + [sym_comment] = ACTIONS(53), }, [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_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(5477), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4773), + [sym_word] = ACTIONS(369), }, [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), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(5479), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4777), }, [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), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(5479), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), }, [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), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), + [sym_variable_name] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3411), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_PIPE_AMP] = ACTIONS(3409), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [sym__special_characters] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_DOLLAR] = ACTIONS(3411), + [sym_raw_string] = ACTIONS(3409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3409), + [anon_sym_BQUOTE] = ACTIONS(3409), + [anon_sym_LT_LPAREN] = ACTIONS(3409), + [anon_sym_GT_LPAREN] = ACTIONS(3409), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3411), + [sym_word] = ACTIONS(3411), }, [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), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), + [sym__concat] = ACTIONS(3905), + [sym_variable_name] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_PIPE_AMP] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [sym__special_characters] = ACTIONS(3905), + [anon_sym_DQUOTE] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), + [anon_sym_BQUOTE] = ACTIONS(3905), + [anon_sym_LT_LPAREN] = ACTIONS(3905), + [anon_sym_GT_LPAREN] = ACTIONS(3905), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), + [sym_word] = ACTIONS(3907), }, [2108] = { - [aux_sym_concatenation_repeat1] = STATE(2110), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), + [sym__concat] = ACTIONS(3913), + [sym_variable_name] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3913), + [anon_sym_PIPE_AMP] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(3913), + [anon_sym_PIPE_PIPE] = ACTIONS(3913), + [sym__special_characters] = ACTIONS(3913), + [anon_sym_DQUOTE] = ACTIONS(3913), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), + [anon_sym_BQUOTE] = ACTIONS(3913), + [anon_sym_LT_LPAREN] = ACTIONS(3913), + [anon_sym_GT_LPAREN] = ACTIONS(3913), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), + [sym_word] = ACTIONS(3915), }, [2109] = { - [aux_sym_concatenation_repeat1] = STATE(2110), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), + [sym__concat] = ACTIONS(4000), + [sym_variable_name] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_PIPE_AMP] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [sym__special_characters] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), + [anon_sym_BQUOTE] = ACTIONS(4000), + [anon_sym_LT_LPAREN] = ACTIONS(4000), + [anon_sym_GT_LPAREN] = ACTIONS(4000), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), + [sym_word] = ACTIONS(4002), }, [2110] = { - [aux_sym_concatenation_repeat1] = STATE(2330), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_AMP] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(693), - [anon_sym_LT_LT_LT] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(693), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5481), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [2111] = { - [sym__heredoc_body_middle] = ACTIONS(3829), - [sym__heredoc_body_end] = ACTIONS(3829), - [anon_sym_DOLLAR] = ACTIONS(3831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3829), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5483), [sym_comment] = ACTIONS(53), }, [2112] = { - [sym__heredoc_body_middle] = ACTIONS(3835), - [sym__heredoc_body_end] = ACTIONS(3835), - [anon_sym_DOLLAR] = ACTIONS(3837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3835), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5485), [sym_comment] = ACTIONS(53), }, [2113] = { - [sym__heredoc_body_middle] = ACTIONS(3920), - [sym__heredoc_body_end] = ACTIONS(3920), - [anon_sym_DOLLAR] = ACTIONS(3922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3920), + [anon_sym_RBRACE] = ACTIONS(5485), [sym_comment] = ACTIONS(53), }, [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(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(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), - }, - [2115] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5449), - [sym_comment] = ACTIONS(53), - }, - [2116] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5451), - [sym_comment] = ACTIONS(53), - }, - [2117] = { - [anon_sym_RBRACE] = ACTIONS(5451), - [sym_comment] = ACTIONS(53), - }, - [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(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(5457), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - }, - [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(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(5463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - }, - [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(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(5469), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - }, - [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(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(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), - }, - [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), - }, - [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(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(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), - }, - [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(3829), - }, - [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(3835), - }, - [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(3920), - }, - [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(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(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), - }, - [2131] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5477), - [sym_comment] = ACTIONS(53), - }, - [2132] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5479), - [sym_comment] = ACTIONS(53), - }, - [2133] = { - [anon_sym_RBRACE] = ACTIONS(5479), - [sym_comment] = ACTIONS(53), - }, - [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(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(5485), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3936), - }, - [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(2348), + [sym_concatenation] = STATE(2355), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2355), [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), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(5491), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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), + [2115] = { + [sym__concat] = ACTIONS(4016), + [sym_variable_name] = ACTIONS(4016), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4016), + [anon_sym_PIPE_AMP] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [sym__special_characters] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), + [anon_sym_BQUOTE] = ACTIONS(4016), + [anon_sym_LT_LPAREN] = ACTIONS(4016), + [anon_sym_GT_LPAREN] = ACTIONS(4016), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3946), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), + [sym_word] = ACTIONS(4018), }, - [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(2350), + [2116] = { + [sym_concatenation] = STATE(2357), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2357), [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), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(5497), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), + }, + [2117] = { + [sym__concat] = ACTIONS(4026), + [sym_variable_name] = ACTIONS(4026), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = 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(4028), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), + [sym_word] = ACTIONS(4028), + }, + [2118] = { + [sym_concatenation] = STATE(2359), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2359), + [anon_sym_RBRACE] = ACTIONS(5499), + [anon_sym_EQ] = ACTIONS(5501), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5503), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5501), + [anon_sym_COLON_QMARK] = ACTIONS(5501), + [anon_sym_COLON_DASH] = ACTIONS(5501), + [anon_sym_PERCENT] = ACTIONS(5501), + [anon_sym_DASH] = ACTIONS(5501), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2119] = { + [sym__concat] = ACTIONS(4036), + [sym_variable_name] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = 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(4038), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), + [sym_word] = ACTIONS(4038), + }, + [2120] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5505), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2121] = { + [sym__concat] = ACTIONS(4042), + [sym_variable_name] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4042), + [anon_sym_PIPE_AMP] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_PIPE_PIPE] = ACTIONS(4042), + [sym__special_characters] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [anon_sym_DOLLAR] = ACTIONS(4044), + [sym_raw_string] = ACTIONS(4042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), + [anon_sym_BQUOTE] = ACTIONS(4042), + [anon_sym_LT_LPAREN] = ACTIONS(4042), + [anon_sym_GT_LPAREN] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), + [sym_word] = ACTIONS(4044), + }, + [2122] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5507), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2123] = { + [sym__concat] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_PIPE_AMP] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [sym__special_characters] = ACTIONS(3905), + [anon_sym_DQUOTE] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), + [anon_sym_BQUOTE] = ACTIONS(3905), + [anon_sym_LT_LPAREN] = ACTIONS(3905), + [anon_sym_GT_LPAREN] = ACTIONS(3905), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), + [sym_word] = ACTIONS(3907), + }, + [2124] = { + [sym__concat] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3913), + [anon_sym_PIPE_AMP] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(3913), + [anon_sym_PIPE_PIPE] = ACTIONS(3913), + [sym__special_characters] = ACTIONS(3913), + [anon_sym_DQUOTE] = ACTIONS(3913), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), + [anon_sym_BQUOTE] = ACTIONS(3913), + [anon_sym_LT_LPAREN] = ACTIONS(3913), + [anon_sym_GT_LPAREN] = ACTIONS(3913), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), + [sym_word] = ACTIONS(3915), + }, + [2125] = { + [sym__concat] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_PIPE_AMP] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [sym__special_characters] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), + [anon_sym_BQUOTE] = ACTIONS(4000), + [anon_sym_LT_LPAREN] = ACTIONS(4000), + [anon_sym_GT_LPAREN] = ACTIONS(4000), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), + [sym_word] = ACTIONS(4002), + }, + [2126] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5509), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2127] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5511), + [sym_comment] = ACTIONS(53), + }, + [2128] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5513), + [sym_comment] = ACTIONS(53), + }, + [2129] = { + [anon_sym_RBRACE] = ACTIONS(5513), + [sym_comment] = ACTIONS(53), + }, + [2130] = { + [sym_concatenation] = STATE(2366), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2366), + [anon_sym_RBRACE] = ACTIONS(5515), + [anon_sym_EQ] = ACTIONS(5517), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5517), + [anon_sym_COLON_QMARK] = ACTIONS(5517), + [anon_sym_COLON_DASH] = ACTIONS(5517), + [anon_sym_PERCENT] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5517), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2131] = { + [sym__concat] = ACTIONS(4016), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4016), + [anon_sym_PIPE_AMP] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [sym__special_characters] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), + [anon_sym_BQUOTE] = ACTIONS(4016), + [anon_sym_LT_LPAREN] = ACTIONS(4016), + [anon_sym_GT_LPAREN] = ACTIONS(4016), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), + [sym_word] = ACTIONS(4018), + }, + [2132] = { + [sym_concatenation] = STATE(2368), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2368), + [anon_sym_RBRACE] = ACTIONS(5521), + [anon_sym_EQ] = ACTIONS(5523), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5523), + [anon_sym_COLON_QMARK] = ACTIONS(5523), + [anon_sym_COLON_DASH] = ACTIONS(5523), + [anon_sym_PERCENT] = ACTIONS(5523), + [anon_sym_DASH] = ACTIONS(5523), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2133] = { + [sym__concat] = ACTIONS(4026), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = 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(4028), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), + [sym_word] = ACTIONS(4028), + }, + [2134] = { + [sym_concatenation] = STATE(2370), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2370), + [anon_sym_RBRACE] = ACTIONS(5527), + [anon_sym_EQ] = ACTIONS(5529), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5529), + [anon_sym_COLON_QMARK] = ACTIONS(5529), + [anon_sym_COLON_DASH] = ACTIONS(5529), + [anon_sym_PERCENT] = ACTIONS(5529), + [anon_sym_DASH] = ACTIONS(5529), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2135] = { + [sym__concat] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = 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(4038), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), + [sym_word] = ACTIONS(4038), + }, + [2136] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2137] = { + [sym__concat] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4042), + [anon_sym_PIPE_AMP] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_PIPE_PIPE] = ACTIONS(4042), + [sym__special_characters] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [anon_sym_DOLLAR] = ACTIONS(4044), + [sym_raw_string] = ACTIONS(4042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), + [anon_sym_BQUOTE] = ACTIONS(4042), + [anon_sym_LT_LPAREN] = ACTIONS(4042), + [anon_sym_GT_LPAREN] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), + [sym_word] = ACTIONS(4044), + }, + [2138] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5535), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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__simple_heredoc_body] = ACTIONS(4831), + [sym__heredoc_body_beginning] = ACTIONS(4831), + [sym_file_descriptor] = ACTIONS(4831), + [sym__concat] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_PIPE_AMP] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_EQ_TILDE] = ACTIONS(4833), + [anon_sym_EQ_EQ] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_GT_GT] = ACTIONS(4831), + [anon_sym_AMP_GT] = ACTIONS(4833), + [anon_sym_AMP_GT_GT] = ACTIONS(4831), + [anon_sym_LT_AMP] = ACTIONS(4831), + [anon_sym_GT_AMP] = ACTIONS(4831), + [anon_sym_LT_LT] = ACTIONS(4833), + [anon_sym_LT_LT_DASH] = ACTIONS(4831), + [anon_sym_LT_LT_LT] = ACTIONS(4831), + [sym__special_characters] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), + [anon_sym_BQUOTE] = ACTIONS(4831), + [anon_sym_LT_LPAREN] = ACTIONS(4831), + [anon_sym_GT_LPAREN] = ACTIONS(4831), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3956), + [sym_word] = ACTIONS(4833), }, [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(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(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), + [sym__simple_heredoc_body] = ACTIONS(4835), + [sym__heredoc_body_beginning] = ACTIONS(4835), + [sym_file_descriptor] = ACTIONS(4835), + [sym__concat] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_PIPE_AMP] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [anon_sym_EQ_TILDE] = ACTIONS(4837), + [anon_sym_EQ_EQ] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4835), + [anon_sym_AMP_GT] = ACTIONS(4837), + [anon_sym_AMP_GT_GT] = ACTIONS(4835), + [anon_sym_LT_AMP] = ACTIONS(4835), + [anon_sym_GT_AMP] = ACTIONS(4835), + [anon_sym_LT_LT] = ACTIONS(4837), + [anon_sym_LT_LT_DASH] = ACTIONS(4835), + [anon_sym_LT_LT_LT] = ACTIONS(4835), + [sym__special_characters] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), + [anon_sym_BQUOTE] = ACTIONS(4835), + [anon_sym_LT_LPAREN] = ACTIONS(4835), + [anon_sym_GT_LPAREN] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4837), }, [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__simple_heredoc_body] = ACTIONS(4839), + [sym__heredoc_body_beginning] = ACTIONS(4839), + [sym_file_descriptor] = ACTIONS(4839), + [sym__concat] = ACTIONS(4839), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_PIPE_AMP] = ACTIONS(4839), + [anon_sym_AMP_AMP] = ACTIONS(4839), + [anon_sym_PIPE_PIPE] = ACTIONS(4839), + [anon_sym_EQ_TILDE] = ACTIONS(4841), + [anon_sym_EQ_EQ] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_GT_GT] = ACTIONS(4839), + [anon_sym_AMP_GT] = ACTIONS(4841), + [anon_sym_AMP_GT_GT] = ACTIONS(4839), + [anon_sym_LT_AMP] = ACTIONS(4839), + [anon_sym_GT_AMP] = ACTIONS(4839), + [anon_sym_LT_LT] = ACTIONS(4841), + [anon_sym_LT_LT_DASH] = ACTIONS(4839), + [anon_sym_LT_LT_LT] = ACTIONS(4839), + [sym__special_characters] = ACTIONS(4839), + [anon_sym_DQUOTE] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), + [anon_sym_BQUOTE] = ACTIONS(4839), + [anon_sym_LT_LPAREN] = ACTIONS(4839), + [anon_sym_GT_LPAREN] = ACTIONS(4839), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3962), + [sym_word] = ACTIONS(4841), }, [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(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(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), + [sym__simple_heredoc_body] = ACTIONS(4843), + [sym__heredoc_body_beginning] = ACTIONS(4843), + [sym_file_descriptor] = ACTIONS(4843), + [sym__concat] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_PIPE_AMP] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_EQ_TILDE] = ACTIONS(4845), + [anon_sym_EQ_EQ] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4843), + [anon_sym_AMP_GT] = ACTIONS(4845), + [anon_sym_AMP_GT_GT] = ACTIONS(4843), + [anon_sym_LT_AMP] = ACTIONS(4843), + [anon_sym_GT_AMP] = ACTIONS(4843), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_LT_LT_DASH] = ACTIONS(4843), + [anon_sym_LT_LT_LT] = ACTIONS(4843), + [sym__special_characters] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), + [anon_sym_BQUOTE] = ACTIONS(4843), + [anon_sym_LT_LPAREN] = ACTIONS(4843), + [anon_sym_GT_LPAREN] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4845), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5537), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_LF] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), + [sym_word] = ACTIONS(781), }, [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(4747), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_LF] = ACTIONS(4745), - [anon_sym_AMP] = ACTIONS(4747), + [sym__simple_heredoc_body] = ACTIONS(4849), + [sym__heredoc_body_beginning] = ACTIONS(4849), + [sym_file_descriptor] = ACTIONS(4849), + [sym__concat] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4849), + [anon_sym_PIPE_AMP] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [anon_sym_EQ_TILDE] = ACTIONS(4851), + [anon_sym_EQ_EQ] = ACTIONS(4851), + [anon_sym_LT] = ACTIONS(4851), + [anon_sym_GT] = ACTIONS(4851), + [anon_sym_GT_GT] = ACTIONS(4849), + [anon_sym_AMP_GT] = ACTIONS(4851), + [anon_sym_AMP_GT_GT] = ACTIONS(4849), + [anon_sym_LT_AMP] = ACTIONS(4849), + [anon_sym_GT_AMP] = ACTIONS(4849), + [anon_sym_LT_LT] = ACTIONS(4851), + [anon_sym_LT_LT_DASH] = ACTIONS(4849), + [anon_sym_LT_LT_LT] = ACTIONS(4849), + [sym__special_characters] = ACTIONS(4849), + [anon_sym_DQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), + [anon_sym_BQUOTE] = ACTIONS(4849), + [anon_sym_LT_LPAREN] = ACTIONS(4849), + [anon_sym_GT_LPAREN] = ACTIONS(4849), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4851), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5539), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4751), - [anon_sym_LF] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4751), + [sym_word] = ACTIONS(781), }, [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(4755), - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_LF] = ACTIONS(4753), - [anon_sym_AMP] = ACTIONS(4755), + [sym__simple_heredoc_body] = ACTIONS(4855), + [sym__heredoc_body_beginning] = ACTIONS(4855), + [sym_file_descriptor] = ACTIONS(4855), + [sym__concat] = ACTIONS(4855), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_PIPE_AMP] = ACTIONS(4855), + [anon_sym_AMP_AMP] = ACTIONS(4855), + [anon_sym_PIPE_PIPE] = ACTIONS(4855), + [anon_sym_EQ_TILDE] = ACTIONS(4857), + [anon_sym_EQ_EQ] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_GT_GT] = ACTIONS(4855), + [anon_sym_AMP_GT] = ACTIONS(4857), + [anon_sym_AMP_GT_GT] = ACTIONS(4855), + [anon_sym_LT_AMP] = ACTIONS(4855), + [anon_sym_GT_AMP] = ACTIONS(4855), + [anon_sym_LT_LT] = ACTIONS(4857), + [anon_sym_LT_LT_DASH] = ACTIONS(4855), + [anon_sym_LT_LT_LT] = ACTIONS(4855), + [sym__special_characters] = ACTIONS(4855), + [anon_sym_DQUOTE] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), + [anon_sym_BQUOTE] = ACTIONS(4855), + [anon_sym_LT_LPAREN] = ACTIONS(4855), + [anon_sym_GT_LPAREN] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4857), }, [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(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(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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5541), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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(4761), - [anon_sym_SEMI] = ACTIONS(4761), - [anon_sym_LF] = ACTIONS(4759), - [anon_sym_AMP] = ACTIONS(4761), + [sym__simple_heredoc_body] = ACTIONS(4861), + [sym__heredoc_body_beginning] = ACTIONS(4861), + [sym_file_descriptor] = ACTIONS(4861), + [sym__concat] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_EQ_TILDE] = ACTIONS(4863), + [anon_sym_EQ_EQ] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4863), + [anon_sym_GT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4863), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4863), + [anon_sym_LT_LT_DASH] = ACTIONS(4861), + [anon_sym_LT_LT_LT] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4863), }, [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(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(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), + [sym__simple_heredoc_body] = ACTIONS(4865), + [sym__heredoc_body_beginning] = ACTIONS(4865), + [sym_file_descriptor] = ACTIONS(4865), + [sym__concat] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4865), + [anon_sym_PIPE_AMP] = ACTIONS(4865), + [anon_sym_AMP_AMP] = ACTIONS(4865), + [anon_sym_PIPE_PIPE] = ACTIONS(4865), + [anon_sym_EQ_TILDE] = ACTIONS(4867), + [anon_sym_EQ_EQ] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4867), + [anon_sym_GT] = ACTIONS(4867), + [anon_sym_GT_GT] = ACTIONS(4865), + [anon_sym_AMP_GT] = ACTIONS(4867), + [anon_sym_AMP_GT_GT] = ACTIONS(4865), + [anon_sym_LT_AMP] = ACTIONS(4865), + [anon_sym_GT_AMP] = ACTIONS(4865), + [anon_sym_LT_LT] = ACTIONS(4867), + [anon_sym_LT_LT_DASH] = ACTIONS(4865), + [anon_sym_LT_LT_LT] = ACTIONS(4865), + [sym__special_characters] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), + [anon_sym_BQUOTE] = ACTIONS(4865), + [anon_sym_LT_LPAREN] = ACTIONS(4865), + [anon_sym_GT_LPAREN] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4867), }, [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(4767), - [anon_sym_SEMI] = ACTIONS(4767), - [anon_sym_LF] = ACTIONS(4765), - [anon_sym_AMP] = ACTIONS(4767), + [aux_sym_concatenation_repeat1] = STATE(2152), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [sym_comment] = ACTIONS(53), }, [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(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(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), + [aux_sym_concatenation_repeat1] = STATE(2152), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_comment] = ACTIONS(53), }, [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(4773), - [anon_sym_SEMI] = ACTIONS(4773), - [anon_sym_LF] = ACTIONS(4771), - [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_concatenation_repeat1] = STATE(2376), + [sym__concat] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [sym_comment] = ACTIONS(53), }, [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(4777), - [anon_sym_SEMI] = ACTIONS(4777), - [anon_sym_LF] = ACTIONS(4775), - [anon_sym_AMP] = ACTIONS(4777), + [aux_sym_concatenation_repeat1] = STATE(2155), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1105), + [anon_sym_LT_AMP] = ACTIONS(1105), + [anon_sym_GT_AMP] = ACTIONS(1105), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [sym_comment] = ACTIONS(53), }, [2154] = { + [aux_sym_concatenation_repeat1] = STATE(2155), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1109), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1109), + [anon_sym_LT_AMP] = ACTIONS(1109), + [anon_sym_GT_AMP] = ACTIONS(1109), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1109), + [anon_sym_LT_LT_LT] = ACTIONS(1109), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_comment] = ACTIONS(53), + }, + [2155] = { + [aux_sym_concatenation_repeat1] = STATE(2377), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(705), + [anon_sym_AMP_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(705), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(705), + [anon_sym_LT_AMP] = ACTIONS(705), + [anon_sym_GT_AMP] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(705), + [anon_sym_LT_LT_LT] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [sym_comment] = ACTIONS(53), + }, + [2156] = { + [sym__heredoc_body_middle] = ACTIONS(3905), + [sym__heredoc_body_end] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), + [sym_comment] = ACTIONS(53), + }, + [2157] = { + [sym__heredoc_body_middle] = ACTIONS(3913), + [sym__heredoc_body_end] = ACTIONS(3913), + [anon_sym_DOLLAR] = ACTIONS(3915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), + [sym_comment] = ACTIONS(53), + }, + [2158] = { + [sym__heredoc_body_middle] = ACTIONS(4000), + [sym__heredoc_body_end] = ACTIONS(4000), + [anon_sym_DOLLAR] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), + [sym_comment] = ACTIONS(53), + }, + [2159] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5543), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2160] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5545), + [sym_comment] = ACTIONS(53), + }, + [2161] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5547), + [sym_comment] = ACTIONS(53), + }, + [2162] = { + [anon_sym_RBRACE] = ACTIONS(5547), + [sym_comment] = ACTIONS(53), + }, + [2163] = { + [sym_concatenation] = STATE(2382), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2382), + [anon_sym_RBRACE] = ACTIONS(5549), + [anon_sym_EQ] = ACTIONS(5551), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5551), + [anon_sym_COLON_QMARK] = ACTIONS(5551), + [anon_sym_COLON_DASH] = ACTIONS(5551), + [anon_sym_PERCENT] = ACTIONS(5551), + [anon_sym_DASH] = ACTIONS(5551), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2164] = { + [sym__heredoc_body_middle] = ACTIONS(4016), + [sym__heredoc_body_end] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [sym_comment] = ACTIONS(53), + }, + [2165] = { + [sym_concatenation] = STATE(2384), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2384), + [anon_sym_RBRACE] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5557), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5557), + [anon_sym_COLON_QMARK] = ACTIONS(5557), + [anon_sym_COLON_DASH] = ACTIONS(5557), + [anon_sym_PERCENT] = ACTIONS(5557), + [anon_sym_DASH] = ACTIONS(5557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2166] = { + [sym__heredoc_body_middle] = ACTIONS(4026), + [sym__heredoc_body_end] = ACTIONS(4026), + [anon_sym_DOLLAR] = ACTIONS(4028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4026), + [sym_comment] = ACTIONS(53), + }, + [2167] = { + [sym_concatenation] = STATE(2386), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2386), + [anon_sym_RBRACE] = ACTIONS(5561), + [anon_sym_EQ] = ACTIONS(5563), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5563), + [anon_sym_COLON_QMARK] = ACTIONS(5563), + [anon_sym_COLON_DASH] = ACTIONS(5563), + [anon_sym_PERCENT] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2168] = { + [sym__heredoc_body_middle] = ACTIONS(4036), + [sym__heredoc_body_end] = ACTIONS(4036), + [anon_sym_DOLLAR] = ACTIONS(4038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4036), + [sym_comment] = ACTIONS(53), + }, + [2169] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5567), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2170] = { + [sym__heredoc_body_middle] = ACTIONS(4042), + [sym__heredoc_body_end] = ACTIONS(4042), + [anon_sym_DOLLAR] = ACTIONS(4044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), + }, + [2171] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5569), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2172] = { + [sym__concat] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3905), + [sym__special_characters] = ACTIONS(3905), + [anon_sym_DQUOTE] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), + [anon_sym_BQUOTE] = ACTIONS(3905), + [anon_sym_LT_LPAREN] = ACTIONS(3905), + [anon_sym_GT_LPAREN] = ACTIONS(3905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3905), + }, + [2173] = { + [sym__concat] = ACTIONS(3913), + [anon_sym_RPAREN] = ACTIONS(3913), + [sym__special_characters] = ACTIONS(3913), + [anon_sym_DQUOTE] = ACTIONS(3913), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), + [anon_sym_BQUOTE] = ACTIONS(3913), + [anon_sym_LT_LPAREN] = ACTIONS(3913), + [anon_sym_GT_LPAREN] = ACTIONS(3913), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3913), + }, + [2174] = { + [sym__concat] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(4000), + [sym__special_characters] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), + [anon_sym_BQUOTE] = ACTIONS(4000), + [anon_sym_LT_LPAREN] = ACTIONS(4000), + [anon_sym_GT_LPAREN] = ACTIONS(4000), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4000), + }, + [2175] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5571), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2176] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5573), + [sym_comment] = ACTIONS(53), + }, + [2177] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5575), + [sym_comment] = ACTIONS(53), + }, + [2178] = { + [anon_sym_RBRACE] = ACTIONS(5575), + [sym_comment] = ACTIONS(53), + }, + [2179] = { + [sym_concatenation] = STATE(2393), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2393), + [anon_sym_RBRACE] = ACTIONS(5577), + [anon_sym_EQ] = ACTIONS(5579), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5579), + [anon_sym_COLON_QMARK] = ACTIONS(5579), + [anon_sym_COLON_DASH] = ACTIONS(5579), + [anon_sym_PERCENT] = ACTIONS(5579), + [anon_sym_DASH] = ACTIONS(5579), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2180] = { + [sym__concat] = ACTIONS(4016), + [anon_sym_RPAREN] = ACTIONS(4016), + [sym__special_characters] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4016), + [anon_sym_BQUOTE] = ACTIONS(4016), + [anon_sym_LT_LPAREN] = ACTIONS(4016), + [anon_sym_GT_LPAREN] = ACTIONS(4016), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4016), + }, + [2181] = { + [sym_concatenation] = STATE(2395), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2395), + [anon_sym_RBRACE] = ACTIONS(5583), + [anon_sym_EQ] = ACTIONS(5585), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5587), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5585), + [anon_sym_COLON_QMARK] = ACTIONS(5585), + [anon_sym_COLON_DASH] = ACTIONS(5585), + [anon_sym_PERCENT] = ACTIONS(5585), + [anon_sym_DASH] = ACTIONS(5585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2182] = { + [sym__concat] = ACTIONS(4026), + [anon_sym_RPAREN] = ACTIONS(4026), + [sym__special_characters] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [anon_sym_DOLLAR] = ACTIONS(4028), + [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(53), + [sym_word] = ACTIONS(4026), + }, + [2183] = { + [sym_concatenation] = STATE(2397), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2397), + [anon_sym_RBRACE] = ACTIONS(5589), + [anon_sym_EQ] = ACTIONS(5591), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5591), + [anon_sym_COLON_QMARK] = ACTIONS(5591), + [anon_sym_COLON_DASH] = ACTIONS(5591), + [anon_sym_PERCENT] = ACTIONS(5591), + [anon_sym_DASH] = ACTIONS(5591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2184] = { + [sym__concat] = ACTIONS(4036), + [anon_sym_RPAREN] = ACTIONS(4036), + [sym__special_characters] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(4036), + [anon_sym_DOLLAR] = ACTIONS(4038), + [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(53), + [sym_word] = ACTIONS(4036), + }, + [2185] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2186] = { + [sym__concat] = ACTIONS(4042), + [anon_sym_RPAREN] = ACTIONS(4042), + [sym__special_characters] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [anon_sym_DOLLAR] = ACTIONS(4044), + [sym_raw_string] = ACTIONS(4042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), + [anon_sym_BQUOTE] = ACTIONS(4042), + [anon_sym_LT_LPAREN] = ACTIONS(4042), + [anon_sym_GT_LPAREN] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4042), + }, + [2187] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5597), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2188] = { + [sym_file_descriptor] = ACTIONS(4831), + [sym__concat] = ACTIONS(4831), + [sym_variable_name] = ACTIONS(4831), + [anon_sym_esac] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4833), + [anon_sym_SEMI_SEMI] = ACTIONS(4833), + [anon_sym_PIPE_AMP] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4833), + [anon_sym_PIPE_PIPE] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_GT_GT] = ACTIONS(4833), + [anon_sym_AMP_GT] = ACTIONS(4833), + [anon_sym_AMP_GT_GT] = ACTIONS(4833), + [anon_sym_LT_AMP] = ACTIONS(4833), + [anon_sym_GT_AMP] = ACTIONS(4833), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), + [anon_sym_BQUOTE] = ACTIONS(4833), + [anon_sym_LT_LPAREN] = ACTIONS(4833), + [anon_sym_GT_LPAREN] = ACTIONS(4833), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4833), + }, + [2189] = { + [sym_file_descriptor] = ACTIONS(4835), + [sym__concat] = ACTIONS(4835), + [sym_variable_name] = ACTIONS(4835), + [anon_sym_esac] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4837), + [anon_sym_SEMI_SEMI] = ACTIONS(4837), + [anon_sym_PIPE_AMP] = ACTIONS(4837), + [anon_sym_AMP_AMP] = ACTIONS(4837), + [anon_sym_PIPE_PIPE] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4837), + [anon_sym_AMP_GT] = ACTIONS(4837), + [anon_sym_AMP_GT_GT] = ACTIONS(4837), + [anon_sym_LT_AMP] = ACTIONS(4837), + [anon_sym_GT_AMP] = ACTIONS(4837), + [sym__special_characters] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(4837), + [anon_sym_LT_LPAREN] = ACTIONS(4837), + [anon_sym_GT_LPAREN] = ACTIONS(4837), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4837), + }, + [2190] = { + [sym_file_descriptor] = ACTIONS(4839), + [sym__concat] = ACTIONS(4839), + [sym_variable_name] = ACTIONS(4839), + [anon_sym_esac] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4841), + [anon_sym_SEMI_SEMI] = ACTIONS(4841), + [anon_sym_PIPE_AMP] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_GT_GT] = ACTIONS(4841), + [anon_sym_AMP_GT] = ACTIONS(4841), + [anon_sym_AMP_GT_GT] = ACTIONS(4841), + [anon_sym_LT_AMP] = ACTIONS(4841), + [anon_sym_GT_AMP] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(4841), + [anon_sym_DQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), + [anon_sym_BQUOTE] = ACTIONS(4841), + [anon_sym_LT_LPAREN] = ACTIONS(4841), + [anon_sym_GT_LPAREN] = ACTIONS(4841), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4841), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4841), + }, + [2191] = { + [sym_file_descriptor] = ACTIONS(4843), + [sym__concat] = ACTIONS(4843), + [sym_variable_name] = ACTIONS(4843), + [anon_sym_esac] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4845), + [anon_sym_SEMI_SEMI] = ACTIONS(4845), + [anon_sym_PIPE_AMP] = ACTIONS(4845), + [anon_sym_AMP_AMP] = ACTIONS(4845), + [anon_sym_PIPE_PIPE] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4845), + [anon_sym_AMP_GT] = ACTIONS(4845), + [anon_sym_AMP_GT_GT] = ACTIONS(4845), + [anon_sym_LT_AMP] = ACTIONS(4845), + [anon_sym_GT_AMP] = ACTIONS(4845), + [sym__special_characters] = ACTIONS(4845), + [anon_sym_DQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), + [anon_sym_BQUOTE] = ACTIONS(4845), + [anon_sym_LT_LPAREN] = ACTIONS(4845), + [anon_sym_GT_LPAREN] = ACTIONS(4845), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4845), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4845), + }, + [2192] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5599), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2193] = { + [sym_file_descriptor] = ACTIONS(4849), + [sym__concat] = ACTIONS(4849), + [sym_variable_name] = ACTIONS(4849), + [anon_sym_esac] = ACTIONS(4851), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [anon_sym_PIPE_AMP] = ACTIONS(4851), + [anon_sym_AMP_AMP] = ACTIONS(4851), + [anon_sym_PIPE_PIPE] = ACTIONS(4851), + [anon_sym_LT] = ACTIONS(4851), + [anon_sym_GT] = ACTIONS(4851), + [anon_sym_GT_GT] = ACTIONS(4851), + [anon_sym_AMP_GT] = ACTIONS(4851), + [anon_sym_AMP_GT_GT] = ACTIONS(4851), + [anon_sym_LT_AMP] = ACTIONS(4851), + [anon_sym_GT_AMP] = ACTIONS(4851), + [sym__special_characters] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), + [anon_sym_BQUOTE] = ACTIONS(4851), + [anon_sym_LT_LPAREN] = ACTIONS(4851), + [anon_sym_GT_LPAREN] = ACTIONS(4851), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4849), + [anon_sym_AMP] = ACTIONS(4851), + }, + [2194] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5601), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2195] = { + [sym_file_descriptor] = ACTIONS(4855), + [sym__concat] = ACTIONS(4855), + [sym_variable_name] = ACTIONS(4855), + [anon_sym_esac] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4857), + [anon_sym_SEMI_SEMI] = ACTIONS(4857), + [anon_sym_PIPE_AMP] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_GT_GT] = ACTIONS(4857), + [anon_sym_AMP_GT] = ACTIONS(4857), + [anon_sym_AMP_GT_GT] = ACTIONS(4857), + [anon_sym_LT_AMP] = ACTIONS(4857), + [anon_sym_GT_AMP] = ACTIONS(4857), + [sym__special_characters] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), + [anon_sym_BQUOTE] = ACTIONS(4857), + [anon_sym_LT_LPAREN] = ACTIONS(4857), + [anon_sym_GT_LPAREN] = ACTIONS(4857), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4857), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LF] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4857), + }, + [2196] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2197] = { + [sym_file_descriptor] = ACTIONS(4861), + [sym__concat] = ACTIONS(4861), + [sym_variable_name] = ACTIONS(4861), + [anon_sym_esac] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_SEMI_SEMI] = ACTIONS(4863), + [anon_sym_PIPE_AMP] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4863), + [anon_sym_GT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4863), + [anon_sym_AMP_GT] = ACTIONS(4863), + [anon_sym_AMP_GT_GT] = ACTIONS(4863), + [anon_sym_LT_AMP] = ACTIONS(4863), + [anon_sym_GT_AMP] = ACTIONS(4863), + [sym__special_characters] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(4863), + [anon_sym_LT_LPAREN] = ACTIONS(4863), + [anon_sym_GT_LPAREN] = ACTIONS(4863), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4863), + }, + [2198] = { + [sym_file_descriptor] = ACTIONS(4865), + [sym__concat] = ACTIONS(4865), + [sym_variable_name] = ACTIONS(4865), + [anon_sym_esac] = ACTIONS(4867), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4867), + [anon_sym_SEMI_SEMI] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4867), + [anon_sym_GT] = ACTIONS(4867), + [anon_sym_GT_GT] = ACTIONS(4867), + [anon_sym_AMP_GT] = ACTIONS(4867), + [anon_sym_AMP_GT_GT] = ACTIONS(4867), + [anon_sym_LT_AMP] = ACTIONS(4867), + [anon_sym_GT_AMP] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(4867), + [anon_sym_DQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4867), + [anon_sym_LT_LPAREN] = ACTIONS(4867), + [anon_sym_GT_LPAREN] = ACTIONS(4867), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4867), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_LF] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4867), + }, + [2199] = { [sym_concatenation] = STATE(212), - [sym_string] = STATE(2357), + [sym_string] = STATE(2404), [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_simple_expansion] = STATE(2404), + [sym_string_expansion] = STATE(2404), + [sym_expansion] = STATE(2404), + [sym_command_substitution] = STATE(2404), + [sym_process_substitution] = STATE(2404), [sym__empty_value] = ACTIONS(385), [anon_sym_LPAREN] = ACTIONS(387), - [sym__special_characters] = ACTIONS(5509), + [sym__special_characters] = ACTIONS(5605), [anon_sym_DQUOTE] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(393), - [sym_raw_string] = ACTIONS(5511), + [sym_raw_string] = ACTIONS(5607), [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), + [sym_word] = ACTIONS(5607), }, - [2155] = { - [sym_do_group] = STATE(2358), + [2200] = { + [sym_do_group] = STATE(2405), [anon_sym_do] = ACTIONS(411), [sym_comment] = ACTIONS(53), }, - [2156] = { - [sym_compound_statement] = STATE(2360), - [anon_sym_LPAREN] = ACTIONS(5513), - [anon_sym_LBRACE] = ACTIONS(455), + [2201] = { + [sym_compound_statement] = STATE(2407), + [anon_sym_LPAREN] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(457), [sym_comment] = ACTIONS(53), }, - [2157] = { - [anon_sym_AMP_AMP] = ACTIONS(543), - [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(5515), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), + [2202] = { + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(5611), + [anon_sym_EQ_TILDE] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), + [sym_test_operator] = ACTIONS(547), }, - [2158] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5515), - [anon_sym_EQ_TILDE] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), + [2203] = { + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5611), + [anon_sym_EQ_TILDE] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), + [sym_test_operator] = ACTIONS(579), }, - [2159] = { + [2204] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(5517), - [anon_sym_PLUS_EQ] = ACTIONS(5517), + [anon_sym_EQ] = ACTIONS(5613), + [anon_sym_PLUS_EQ] = ACTIONS(5613), [sym_comment] = ACTIONS(53), }, - [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), - [anon_sym_SEMI_SEMI] = ACTIONS(585), - [anon_sym_PIPE_AMP] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [sym__special_characters] = ACTIONS(585), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [sym_raw_string] = ACTIONS(585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LT_LPAREN] = ACTIONS(585), - [anon_sym_GT_LPAREN] = ACTIONS(585), + [2205] = { + [aux_sym_concatenation_repeat1] = STATE(2411), + [sym__concat] = ACTIONS(5615), + [sym_variable_name] = ACTIONS(589), + [anon_sym_esac] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_SEMI_SEMI] = ACTIONS(591), + [anon_sym_PIPE_AMP] = ACTIONS(591), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [sym__special_characters] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(591), + [sym_raw_string] = ACTIONS(591), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(591), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(585), - [sym_word] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), + [sym_word] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(591), }, - [2161] = { + [2206] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2366), - [anon_sym_DQUOTE] = ACTIONS(5521), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(2414), + [anon_sym_DQUOTE] = ACTIONS(5617), + [anon_sym_DOLLAR] = ACTIONS(5619), [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), }, - [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), + [2207] = { + [sym_string] = STATE(2416), + [anon_sym_DQUOTE] = ACTIONS(5621), + [anon_sym_DOLLAR] = ACTIONS(5623), + [sym_raw_string] = ACTIONS(5625), + [anon_sym_POUND] = ACTIONS(5623), + [anon_sym_DASH] = ACTIONS(5623), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_AT] = ACTIONS(5623), + [anon_sym_QMARK] = ACTIONS(5623), + [anon_sym_0] = ACTIONS(5629), + [anon_sym__] = ACTIONS(5629), }, - [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), - [anon_sym_SEMI_SEMI] = ACTIONS(601), - [anon_sym_PIPE_AMP] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [sym__special_characters] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_DOLLAR] = ACTIONS(601), - [sym_raw_string] = ACTIONS(601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(601), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), - [anon_sym_BQUOTE] = ACTIONS(601), - [anon_sym_LT_LPAREN] = ACTIONS(601), - [anon_sym_GT_LPAREN] = ACTIONS(601), + [2208] = { + [aux_sym_concatenation_repeat1] = STATE(2411), + [sym__concat] = ACTIONS(5615), + [sym_variable_name] = ACTIONS(607), + [anon_sym_esac] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_SEMI_SEMI] = ACTIONS(609), + [anon_sym_PIPE_AMP] = ACTIONS(609), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [sym__special_characters] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(609), + [sym_raw_string] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(609), + [anon_sym_LT_LPAREN] = ACTIONS(609), + [anon_sym_GT_LPAREN] = ACTIONS(609), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(601), - [sym_word] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), + [sym_word] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(609), }, - [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), + [2209] = { + [sym_subscript] = STATE(2422), + [sym_variable_name] = ACTIONS(5631), + [anon_sym_DOLLAR] = ACTIONS(5633), + [anon_sym_POUND] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5633), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5637), + [anon_sym_STAR] = ACTIONS(5633), + [anon_sym_AT] = ACTIONS(5633), + [anon_sym_QMARK] = ACTIONS(5633), + [anon_sym_0] = ACTIONS(5639), + [anon_sym__] = ACTIONS(5639), }, - [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), + [2210] = { + [sym_for_statement] = STATE(2423), + [sym_while_statement] = STATE(2423), + [sym_if_statement] = STATE(2423), + [sym_case_statement] = STATE(2423), + [sym_function_definition] = STATE(2423), + [sym_subshell] = STATE(2423), + [sym_pipeline] = STATE(2423), + [sym_list] = STATE(2423), + [sym_negated_command] = STATE(2423), + [sym_test_command] = STATE(2423), + [sym_declaration_command] = STATE(2423), + [sym_unset_command] = STATE(2423), + [sym_command] = STATE(2423), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2376), + [sym_variable_assignment] = STATE(2424), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -56030,22 +56837,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [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), + [2211] = { + [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(181), - [sym_variable_assignment] = STATE(2378), + [sym_variable_assignment] = STATE(2426), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -56093,22 +56900,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [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), + [2212] = { + [sym_for_statement] = STATE(2427), + [sym_while_statement] = STATE(2427), + [sym_if_statement] = STATE(2427), + [sym_case_statement] = STATE(2427), + [sym_function_definition] = STATE(2427), + [sym_subshell] = STATE(2427), + [sym_pipeline] = STATE(2427), + [sym_list] = STATE(2427), + [sym_negated_command] = STATE(2427), + [sym_test_command] = STATE(2427), + [sym_declaration_command] = STATE(2427), + [sym_unset_command] = STATE(2427), + [sym_command] = STATE(2427), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2380), + [sym_variable_assignment] = STATE(2428), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -56156,72 +56963,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [2168] = { - [sym_variable_name] = ACTIONS(613), - [anon_sym_esac] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_SEMI_SEMI] = ACTIONS(615), - [anon_sym_PIPE_AMP] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [sym__special_characters] = ACTIONS(615), - [anon_sym_DQUOTE] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(615), - [sym_raw_string] = ACTIONS(615), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(615), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_LT_LPAREN] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(615), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(615), - [sym_word] = ACTIONS(615), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), - }, - [2169] = { - [anon_sym_EQ] = ACTIONS(5517), - [anon_sym_PLUS_EQ] = ACTIONS(5517), - [sym_comment] = ACTIONS(53), - }, - [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(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(5099), - [sym_word] = ACTIONS(5089), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(617), - }, - [2171] = { - [aux_sym_concatenation_repeat1] = STATE(2383), - [sym__concat] = ACTIONS(5543), + [2213] = { + [sym_variable_name] = ACTIONS(621), [anon_sym_esac] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), [anon_sym_SEMI_SEMI] = ACTIONS(623), @@ -56241,92 +56984,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), [sym_word] = ACTIONS(623), [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(625), + [anon_sym_LF] = ACTIONS(621), [anon_sym_AMP] = ACTIONS(623), }, - [2172] = { + [2214] = { + [anon_sym_EQ] = ACTIONS(5613), + [anon_sym_PLUS_EQ] = ACTIONS(5613), + [sym_comment] = ACTIONS(53), + }, + [2215] = { + [sym_variable_assignment] = STATE(2429), + [sym_subscript] = STATE(2214), + [sym_concatenation] = STATE(2429), + [sym_string] = STATE(2208), + [sym_simple_expansion] = STATE(2208), + [sym_string_expansion] = STATE(2208), + [sym_expansion] = STATE(2208), + [sym_command_substitution] = STATE(2208), + [sym_process_substitution] = STATE(2208), + [aux_sym_declaration_command_repeat1] = STATE(2429), + [sym_variable_name] = ACTIONS(5173), + [anon_sym_esac] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_SEMI_SEMI] = ACTIONS(625), + [anon_sym_PIPE_AMP] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [sym__special_characters] = ACTIONS(5175), + [anon_sym_DQUOTE] = ACTIONS(5177), + [anon_sym_DOLLAR] = ACTIONS(5179), + [sym_raw_string] = ACTIONS(5181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5185), + [anon_sym_BQUOTE] = ACTIONS(5187), + [anon_sym_LT_LPAREN] = ACTIONS(5189), + [anon_sym_GT_LPAREN] = ACTIONS(5189), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5191), + [sym_word] = ACTIONS(5181), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(625), + }, + [2216] = { + [aux_sym_concatenation_repeat1] = STATE(2431), + [sym__concat] = ACTIONS(5641), + [anon_sym_esac] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(631), + [anon_sym_SEMI_SEMI] = ACTIONS(631), + [anon_sym_PIPE_AMP] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym__special_characters] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(631), + [sym_raw_string] = ACTIONS(631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_BQUOTE] = ACTIONS(631), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(631), + [sym_word] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_LF] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(631), + }, + [2217] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2385), - [anon_sym_DQUOTE] = ACTIONS(5545), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(2434), + [anon_sym_DQUOTE] = ACTIONS(5643), + [anon_sym_DOLLAR] = ACTIONS(5645), [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), }, - [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), + [2218] = { + [sym_string] = STATE(2436), + [anon_sym_DQUOTE] = ACTIONS(5647), + [anon_sym_DOLLAR] = ACTIONS(5649), + [sym_raw_string] = ACTIONS(5651), + [anon_sym_POUND] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(5649), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5653), + [anon_sym_STAR] = ACTIONS(5649), + [anon_sym_AT] = ACTIONS(5649), + [anon_sym_QMARK] = ACTIONS(5649), + [anon_sym_0] = ACTIONS(5655), + [anon_sym__] = ACTIONS(5655), }, - [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), - [anon_sym_PIPE_AMP] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [sym__special_characters] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(639), - [sym_raw_string] = ACTIONS(639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(639), - [anon_sym_BQUOTE] = ACTIONS(639), - [anon_sym_LT_LPAREN] = ACTIONS(639), - [anon_sym_GT_LPAREN] = ACTIONS(639), + [2219] = { + [aux_sym_concatenation_repeat1] = STATE(2431), + [sym__concat] = ACTIONS(5641), + [anon_sym_esac] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_SEMI_SEMI] = ACTIONS(649), + [anon_sym_PIPE_AMP] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [sym__special_characters] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(649), + [sym_raw_string] = ACTIONS(649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(649), + [anon_sym_BQUOTE] = ACTIONS(649), + [anon_sym_LT_LPAREN] = ACTIONS(649), + [anon_sym_GT_LPAREN] = ACTIONS(649), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(639), - [sym_word] = ACTIONS(639), - [anon_sym_SEMI] = ACTIONS(639), - [anon_sym_LF] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(639), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), + [sym_word] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_LF] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(649), }, - [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), + [2220] = { + [sym_subscript] = STATE(2442), + [sym_variable_name] = ACTIONS(5657), + [anon_sym_DOLLAR] = ACTIONS(5659), + [anon_sym_POUND] = ACTIONS(5661), + [anon_sym_DASH] = ACTIONS(5659), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(5659), + [anon_sym_AT] = ACTIONS(5659), + [anon_sym_QMARK] = ACTIONS(5659), + [anon_sym_0] = ACTIONS(5665), + [anon_sym__] = ACTIONS(5665), }, - [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), + [2221] = { + [sym_for_statement] = STATE(2443), + [sym_while_statement] = STATE(2443), + [sym_if_statement] = STATE(2443), + [sym_case_statement] = STATE(2443), + [sym_function_definition] = STATE(2443), + [sym_subshell] = STATE(2443), + [sym_pipeline] = STATE(2443), + [sym_list] = STATE(2443), + [sym_negated_command] = STATE(2443), + [sym_test_command] = STATE(2443), + [sym_declaration_command] = STATE(2443), + [sym_unset_command] = STATE(2443), + [sym_command] = STATE(2443), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2395), + [sym_variable_assignment] = STATE(2444), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -56374,22 +57181,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [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), + [2222] = { + [sym_for_statement] = STATE(2445), + [sym_while_statement] = STATE(2445), + [sym_if_statement] = STATE(2445), + [sym_case_statement] = STATE(2445), + [sym_function_definition] = STATE(2445), + [sym_subshell] = STATE(2445), + [sym_pipeline] = STATE(2445), + [sym_list] = STATE(2445), + [sym_negated_command] = STATE(2445), + [sym_test_command] = STATE(2445), + [sym_declaration_command] = STATE(2445), + [sym_unset_command] = STATE(2445), + [sym_command] = STATE(2445), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2397), + [sym_variable_assignment] = STATE(2446), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -56437,22 +57244,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [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), + [2223] = { + [sym_for_statement] = STATE(2447), + [sym_while_statement] = STATE(2447), + [sym_if_statement] = STATE(2447), + [sym_case_statement] = STATE(2447), + [sym_function_definition] = STATE(2447), + [sym_subshell] = STATE(2447), + [sym_pipeline] = STATE(2447), + [sym_list] = STATE(2447), + [sym_negated_command] = STATE(2447), + [sym_test_command] = STATE(2447), + [sym_declaration_command] = STATE(2447), + [sym_unset_command] = STATE(2447), + [sym_command] = STATE(2447), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2399), + [sym_variable_assignment] = STATE(2448), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -56500,147 +57307,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [2179] = { - [anon_sym_esac] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_SEMI_SEMI] = ACTIONS(653), - [anon_sym_PIPE_AMP] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(653), - [sym__special_characters] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(653), - [sym_raw_string] = ACTIONS(653), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(653), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(653), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_LT_LPAREN] = ACTIONS(653), - [anon_sym_GT_LPAREN] = ACTIONS(653), + [2224] = { + [anon_sym_esac] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_SEMI_SEMI] = ACTIONS(663), + [anon_sym_PIPE_AMP] = ACTIONS(663), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [sym__special_characters] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [sym_raw_string] = ACTIONS(663), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LT_LPAREN] = ACTIONS(663), + [anon_sym_GT_LPAREN] = ACTIONS(663), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(653), - [sym_word] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_LF] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(653), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(663), + [sym_word] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LF] = ACTIONS(665), + [anon_sym_AMP] = ACTIONS(663), }, - [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(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), + [2225] = { + [sym_concatenation] = STATE(2449), + [sym_string] = STATE(2219), + [sym_simple_expansion] = STATE(2219), + [sym_string_expansion] = STATE(2219), + [sym_expansion] = STATE(2219), + [sym_command_substitution] = STATE(2219), + [sym_process_substitution] = STATE(2219), + [aux_sym_unset_command_repeat1] = STATE(2449), + [anon_sym_esac] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_SEMI_SEMI] = ACTIONS(667), + [anon_sym_PIPE_AMP] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(667), + [anon_sym_PIPE_PIPE] = ACTIONS(667), + [sym__special_characters] = ACTIONS(5193), + [anon_sym_DQUOTE] = ACTIONS(5195), + [anon_sym_DOLLAR] = ACTIONS(5197), + [sym_raw_string] = ACTIONS(5199), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5203), + [anon_sym_BQUOTE] = ACTIONS(5205), + [anon_sym_LT_LPAREN] = ACTIONS(5207), + [anon_sym_GT_LPAREN] = ACTIONS(5207), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5209), + [sym_word] = ACTIONS(5199), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(667), }, - [2181] = { - [aux_sym_concatenation_repeat1] = STATE(2401), - [sym__simple_heredoc_body] = ACTIONS(693), - [sym__heredoc_body_beginning] = ACTIONS(693), - [sym_file_descriptor] = ACTIONS(693), + [2226] = { + [aux_sym_concatenation_repeat1] = STATE(2450), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_EQ_TILDE] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_esac] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_EQ_TILDE] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, - [2182] = { - [anon_sym_RPAREN] = ACTIONS(5567), + [2227] = { + [anon_sym_RPAREN] = ACTIONS(5667), [sym_comment] = ACTIONS(53), }, - [2183] = { - [sym_for_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_function_definition] = STATE(529), - [sym_subshell] = STATE(529), - [sym_pipeline] = STATE(529), - [sym_list] = STATE(529), - [sym_negated_command] = STATE(529), - [sym_test_command] = STATE(529), - [sym_declaration_command] = STATE(529), - [sym_unset_command] = STATE(529), - [sym_command] = STATE(529), - [sym_command_name] = STATE(1861), - [sym_variable_assignment] = STATE(530), - [sym_subscript] = STATE(1863), + [2228] = { + [sym_for_statement] = STATE(537), + [sym_while_statement] = STATE(537), + [sym_if_statement] = STATE(537), + [sym_case_statement] = STATE(537), + [sym_function_definition] = STATE(537), + [sym_subshell] = STATE(537), + [sym_pipeline] = STATE(537), + [sym_list] = STATE(537), + [sym_negated_command] = STATE(537), + [sym_test_command] = STATE(537), + [sym_declaration_command] = STATE(537), + [sym_unset_command] = STATE(537), + [sym_command] = STATE(537), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(538), + [sym_subscript] = STATE(1905), [sym_file_redirect] = STATE(30), [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_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_command_repeat1] = STATE(1907), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4317), + [sym_variable_name] = ACTIONS(4403), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), + [anon_sym_while] = ACTIONS(4405), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4325), + [anon_sym_function] = ACTIONS(4411), [anon_sym_LPAREN] = ACTIONS(21), - [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_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -56648,102 +57455,102 @@ 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(4337), + [sym__special_characters] = ACTIONS(4423), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4339), + [sym_raw_string] = ACTIONS(4425), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4341), + [sym_word] = ACTIONS(4427), }, - [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(5569), - [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(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), + [2229] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_esac] = ACTIONS(5669), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(5671), + [anon_sym_DQUOTE] = ACTIONS(5673), + [anon_sym_DOLLAR] = ACTIONS(5671), + [sym_raw_string] = ACTIONS(5673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5673), + [anon_sym_BQUOTE] = ACTIONS(5673), + [anon_sym_LT_LPAREN] = ACTIONS(5673), + [anon_sym_GT_LPAREN] = ACTIONS(5673), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5571), + [sym_word] = ACTIONS(5671), }, - [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), + [2230] = { + [sym_for_statement] = STATE(2452), + [sym_while_statement] = STATE(2452), + [sym_if_statement] = STATE(2452), + [sym_case_statement] = STATE(2452), + [sym_function_definition] = STATE(2452), + [sym_subshell] = STATE(2452), + [sym_pipeline] = STATE(2452), + [sym_list] = STATE(2452), + [sym_negated_command] = STATE(2452), + [sym_test_command] = STATE(2452), + [sym_declaration_command] = STATE(2452), + [sym_unset_command] = STATE(2452), + [sym_command] = STATE(2452), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(2453), + [sym_subscript] = STATE(1905), [sym_file_redirect] = STATE(30), [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_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_command_repeat1] = STATE(1907), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4317), + [sym_variable_name] = ACTIONS(4403), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), + [anon_sym_while] = ACTIONS(4405), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4325), + [anon_sym_function] = ACTIONS(4411), [anon_sym_LPAREN] = ACTIONS(21), - [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_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -56751,282 +57558,282 @@ 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(4337), + [sym__special_characters] = ACTIONS(4423), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4339), + [sym_raw_string] = ACTIONS(4425), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4341), + [sym_word] = ACTIONS(4427), }, - [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), + [2231] = { + [anon_sym_LT] = ACTIONS(5675), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_GT_GT] = ACTIONS(5677), + [anon_sym_AMP_GT] = ACTIONS(5675), + [anon_sym_AMP_GT_GT] = ACTIONS(5677), + [anon_sym_LT_AMP] = ACTIONS(5677), + [anon_sym_GT_AMP] = ACTIONS(5677), [sym_comment] = ACTIONS(53), }, - [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), + [2232] = { + [sym_concatenation] = STATE(548), + [sym_string] = STATE(2456), + [sym_simple_expansion] = STATE(2456), + [sym_string_expansion] = STATE(2456), + [sym_expansion] = STATE(2456), + [sym_command_substitution] = STATE(2456), + [sym_process_substitution] = STATE(2456), + [sym__special_characters] = ACTIONS(5679), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5581), + [sym_raw_string] = ACTIONS(5681), [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(5581), - [sym_regex] = ACTIONS(975), + [sym_word] = ACTIONS(5681), + [sym_regex] = ACTIONS(991), }, - [2188] = { - [sym_concatenation] = STATE(543), - [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), + [2233] = { + [sym_concatenation] = STATE(551), + [sym_string] = STATE(2458), + [sym_simple_expansion] = STATE(2458), + [sym_string_expansion] = STATE(2458), + [sym_expansion] = STATE(2458), + [sym_command_substitution] = STATE(2458), + [sym_process_substitution] = STATE(2458), + [sym__special_characters] = ACTIONS(5683), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5585), + [sym_raw_string] = ACTIONS(5685), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5585), + [sym_word] = ACTIONS(5685), }, - [2189] = { - [sym_concatenation] = STATE(547), - [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), + [2234] = { + [sym_concatenation] = STATE(555), + [sym_string] = STATE(2460), + [sym_simple_expansion] = STATE(2460), + [sym_string_expansion] = STATE(2460), + [sym_expansion] = STATE(2460), + [sym_command_substitution] = STATE(2460), + [sym_process_substitution] = STATE(2460), + [sym__special_characters] = ACTIONS(5687), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5589), + [sym_raw_string] = ACTIONS(5689), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5589), + [sym_word] = ACTIONS(5689), }, - [2190] = { - [aux_sym_concatenation_repeat1] = STATE(2181), - [sym__simple_heredoc_body] = ACTIONS(987), - [sym__heredoc_body_beginning] = ACTIONS(987), - [sym_file_descriptor] = ACTIONS(987), + [2235] = { + [aux_sym_concatenation_repeat1] = STATE(2226), + [sym__simple_heredoc_body] = ACTIONS(1003), + [sym__heredoc_body_beginning] = ACTIONS(1003), + [sym_file_descriptor] = ACTIONS(1003), [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_AMP_GT] = ACTIONS(989), - [anon_sym_AMP_GT_GT] = ACTIONS(989), - [anon_sym_LT_AMP] = ACTIONS(989), - [anon_sym_GT_AMP] = ACTIONS(989), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_LT_LT_DASH] = ACTIONS(989), - [anon_sym_LT_LT_LT] = ACTIONS(989), - [sym__special_characters] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [sym_raw_string] = ACTIONS(989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), - [anon_sym_BQUOTE] = ACTIONS(989), - [anon_sym_LT_LPAREN] = ACTIONS(989), - [anon_sym_GT_LPAREN] = ACTIONS(989), + [anon_sym_esac] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1005), + [anon_sym_PIPE_AMP] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_EQ_TILDE] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_AMP_GT] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(1005), + [anon_sym_LT_AMP] = ACTIONS(1005), + [anon_sym_GT_AMP] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_LT_LT_DASH] = ACTIONS(1005), + [anon_sym_LT_LT_LT] = ACTIONS(1005), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [sym_raw_string] = ACTIONS(1005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1005), + [anon_sym_BQUOTE] = ACTIONS(1005), + [anon_sym_LT_LPAREN] = ACTIONS(1005), + [anon_sym_GT_LPAREN] = ACTIONS(1005), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_LF] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(989), + [sym_word] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), }, - [2191] = { - [aux_sym_concatenation_repeat1] = STATE(2181), - [sym__simple_heredoc_body] = ACTIONS(991), - [sym__heredoc_body_beginning] = ACTIONS(991), - [sym_file_descriptor] = ACTIONS(991), + [2236] = { + [aux_sym_concatenation_repeat1] = STATE(2226), + [sym__simple_heredoc_body] = ACTIONS(1007), + [sym__heredoc_body_beginning] = ACTIONS(1007), + [sym_file_descriptor] = ACTIONS(1007), [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_SEMI_SEMI] = ACTIONS(993), - [anon_sym_PIPE_AMP] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_EQ_TILDE] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_AMP_GT] = ACTIONS(993), - [anon_sym_AMP_GT_GT] = ACTIONS(993), - [anon_sym_LT_AMP] = ACTIONS(993), - [anon_sym_GT_AMP] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_LT_LT_DASH] = ACTIONS(993), - [anon_sym_LT_LT_LT] = ACTIONS(993), - [sym__special_characters] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(993), - [sym_raw_string] = ACTIONS(993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(993), - [anon_sym_BQUOTE] = ACTIONS(993), - [anon_sym_LT_LPAREN] = ACTIONS(993), - [anon_sym_GT_LPAREN] = ACTIONS(993), + [anon_sym_esac] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_EQ_TILDE] = ACTIONS(1009), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1009), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [sym__special_characters] = ACTIONS(1009), + [anon_sym_DQUOTE] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1009), + [anon_sym_BQUOTE] = ACTIONS(1009), + [anon_sym_LT_LPAREN] = ACTIONS(1009), + [anon_sym_GT_LPAREN] = ACTIONS(1009), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LF] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(993), + [sym_word] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1009), + [anon_sym_LF] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), }, - [2192] = { - [sym_file_redirect] = STATE(2412), - [sym_heredoc_redirect] = STATE(2412), - [sym_heredoc_body] = STATE(548), - [sym_herestring_redirect] = STATE(2412), - [aux_sym_while_statement_repeat1] = STATE(2412), + [2237] = { + [sym_file_redirect] = STATE(2461), + [sym_heredoc_redirect] = STATE(2461), + [sym_heredoc_body] = STATE(556), + [sym_herestring_redirect] = STATE(2461), + [aux_sym_while_statement_repeat1] = STATE(2461), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [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(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), + [sym_file_descriptor] = ACTIONS(5219), + [anon_sym_esac] = ACTIONS(1011), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_GT] = ACTIONS(5223), + [anon_sym_AMP_GT] = ACTIONS(5223), + [anon_sym_AMP_GT_GT] = ACTIONS(5223), + [anon_sym_LT_AMP] = ACTIONS(5223), + [anon_sym_GT_AMP] = ACTIONS(5223), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5133), + [anon_sym_LT_LT_LT] = ACTIONS(5225), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, - [2193] = { - [sym_file_redirect] = STATE(2413), - [sym_heredoc_redirect] = STATE(2413), - [sym_heredoc_body] = STATE(548), - [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), + [2238] = { + [sym_file_redirect] = STATE(2462), + [sym_heredoc_redirect] = STATE(2462), + [sym_heredoc_body] = STATE(556), + [sym_herestring_redirect] = STATE(2462), + [sym_concatenation] = STATE(2463), + [sym_string] = STATE(2236), + [sym_simple_expansion] = STATE(2236), + [sym_string_expansion] = STATE(2236), + [sym_expansion] = STATE(2236), + [sym_command_substitution] = STATE(2236), + [sym_process_substitution] = STATE(2236), + [aux_sym_while_statement_repeat1] = STATE(2462), + [aux_sym_command_repeat2] = STATE(2463), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [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(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), + [sym_file_descriptor] = ACTIONS(5219), + [anon_sym_esac] = ACTIONS(1011), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_EQ_TILDE] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_GT] = ACTIONS(5223), + [anon_sym_AMP_GT] = ACTIONS(5223), + [anon_sym_AMP_GT_GT] = ACTIONS(5223), + [anon_sym_LT_AMP] = ACTIONS(5223), + [anon_sym_GT_AMP] = ACTIONS(5223), [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_LT_LT_LT] = ACTIONS(5225), + [sym__special_characters] = ACTIONS(5227), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5137), + [sym_raw_string] = ACTIONS(5229), [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(5137), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), + [sym_word] = ACTIONS(5229), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, - [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), + [2239] = { + [anon_sym_esac] = ACTIONS(5669), + [sym__special_characters] = ACTIONS(5673), + [anon_sym_DQUOTE] = ACTIONS(5673), + [anon_sym_DOLLAR] = ACTIONS(5671), + [sym_raw_string] = ACTIONS(5673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5673), + [anon_sym_BQUOTE] = ACTIONS(5673), + [anon_sym_LT_LPAREN] = ACTIONS(5673), + [anon_sym_GT_LPAREN] = ACTIONS(5673), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5571), + [sym_word] = ACTIONS(5671), }, - [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), + [2240] = { + [anon_sym_esac] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(5691), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), [sym_comment] = ACTIONS(177), [anon_sym_SEMI] = ACTIONS(331), [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2196] = { + [2241] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [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_esac] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(5691), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -57049,8 +57856,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2197] = { - [sym__terminated_statement] = STATE(2197), + [2242] = { + [sym__terminated_statement] = STATE(2242), [sym_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), @@ -57075,145 +57882,145 @@ 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(2197), + [aux_sym_program_repeat1] = STATE(2242), [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_case] = ACTIONS(1016), - [anon_sym_esac] = ACTIONS(3442), - [anon_sym_SEMI_SEMI] = ACTIONS(1005), - [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_file_descriptor] = ACTIONS(1015), + [sym_variable_name] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_esac] = ACTIONS(3516), + [anon_sym_SEMI_SEMI] = ACTIONS(1021), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), + [anon_sym_declare] = ACTIONS(1050), + [anon_sym_typeset] = ACTIONS(1050), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_readonly] = ACTIONS(1050), + [anon_sym_local] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1053), + [anon_sym_unsetenv] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [sym__special_characters] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1083), + [anon_sym_GT_LPAREN] = ACTIONS(1083), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1070), + [sym_word] = ACTIONS(1086), }, - [2198] = { - [sym_file_redirect] = STATE(2413), - [sym_heredoc_redirect] = STATE(2413), - [sym_heredoc_body] = STATE(548), - [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), + [2243] = { + [sym_file_redirect] = STATE(2462), + [sym_heredoc_redirect] = STATE(2462), + [sym_heredoc_body] = STATE(556), + [sym_herestring_redirect] = STATE(2462), + [sym_concatenation] = STATE(2465), + [sym_string] = STATE(2236), + [sym_simple_expansion] = STATE(2236), + [sym_string_expansion] = STATE(2236), + [sym_expansion] = STATE(2236), + [sym_command_substitution] = STATE(2236), + [sym_process_substitution] = STATE(2236), + [aux_sym_while_statement_repeat1] = STATE(2462), + [aux_sym_command_repeat2] = STATE(2465), [sym__simple_heredoc_body] = ACTIONS(337), [sym__heredoc_body_beginning] = ACTIONS(339), - [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(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), + [sym_file_descriptor] = ACTIONS(5219), + [anon_sym_esac] = ACTIONS(1011), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_SEMI_SEMI] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_EQ_TILDE] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_GT] = ACTIONS(5223), + [anon_sym_AMP_GT] = ACTIONS(5223), + [anon_sym_AMP_GT_GT] = ACTIONS(5223), + [anon_sym_LT_AMP] = ACTIONS(5223), + [anon_sym_GT_AMP] = ACTIONS(5223), [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_LT_LT_LT] = ACTIONS(5225), + [sym__special_characters] = ACTIONS(5227), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5137), + [sym_raw_string] = ACTIONS(5229), [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(5137), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(995), + [sym_word] = ACTIONS(5229), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LF] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), }, - [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), + [2244] = { + [sym__terminated_statement] = STATE(2242), + [sym_for_statement] = STATE(2467), + [sym_while_statement] = STATE(2467), + [sym_if_statement] = STATE(2467), + [sym_case_statement] = STATE(2467), + [sym_function_definition] = STATE(2467), + [sym_subshell] = STATE(2467), + [sym_pipeline] = STATE(2467), + [sym_list] = STATE(2467), + [sym_negated_command] = STATE(2467), + [sym_test_command] = STATE(2467), + [sym_declaration_command] = STATE(2467), + [sym_unset_command] = STATE(2467), + [sym_command] = STATE(2467), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(2468), + [sym_subscript] = STATE(1905), [sym_file_redirect] = STATE(30), [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_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_program_repeat1] = STATE(2242), + [aux_sym_command_repeat1] = STATE(1907), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4317), + [sym_variable_name] = ACTIONS(4403), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), + [anon_sym_while] = ACTIONS(4405), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5569), - [anon_sym_SEMI_SEMI] = ACTIONS(5593), - [anon_sym_function] = ACTIONS(4325), + [anon_sym_esac] = ACTIONS(5669), + [anon_sym_SEMI_SEMI] = ACTIONS(5693), + [anon_sym_function] = ACTIONS(4411), [anon_sym_LPAREN] = ACTIONS(21), - [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_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -57221,93 +58028,93 @@ 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(4337), + [sym__special_characters] = ACTIONS(4423), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4339), + [sym_raw_string] = ACTIONS(4425), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4341), + [sym_word] = ACTIONS(4427), }, - [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(5595), - [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(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), + [2245] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_esac] = ACTIONS(5695), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(5697), + [anon_sym_DQUOTE] = ACTIONS(5699), + [anon_sym_DOLLAR] = ACTIONS(5697), + [sym_raw_string] = ACTIONS(5699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5699), + [anon_sym_BQUOTE] = ACTIONS(5699), + [anon_sym_LT_LPAREN] = ACTIONS(5699), + [anon_sym_GT_LPAREN] = ACTIONS(5699), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5597), + [sym_word] = ACTIONS(5697), }, - [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), + [2246] = { + [anon_sym_esac] = ACTIONS(5695), + [sym__special_characters] = ACTIONS(5699), + [anon_sym_DQUOTE] = ACTIONS(5699), + [anon_sym_DOLLAR] = ACTIONS(5697), + [sym_raw_string] = ACTIONS(5699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5699), + [anon_sym_BQUOTE] = ACTIONS(5699), + [anon_sym_LT_LPAREN] = ACTIONS(5699), + [anon_sym_GT_LPAREN] = ACTIONS(5699), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5597), + [sym_word] = ACTIONS(5697), }, - [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), + [2247] = { + [anon_sym_esac] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(5701), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), [sym_comment] = ACTIONS(177), [anon_sym_SEMI] = ACTIONS(331), [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2203] = { + [2248] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [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_esac] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(5701), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -57330,3890 +58137,3544 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [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(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(4317), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4319), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [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(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), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [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(4341), - }, - [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(2426), - [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(2427), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5605), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2206] = { - [aux_sym_case_item_repeat1] = STATE(1867), - [anon_sym_PIPE] = ACTIONS(3467), - [anon_sym_RPAREN] = ACTIONS(5607), - [sym_comment] = ACTIONS(53), - }, - [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(2431), - [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(2432), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5609), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2208] = { - [aux_sym_case_item_repeat1] = STATE(1867), - [anon_sym_PIPE] = ACTIONS(3467), - [anon_sym_RPAREN] = ACTIONS(5611), - [sym_comment] = ACTIONS(53), - }, - [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(5613), - [anon_sym_LF] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5613), - }, - [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(5617), - [anon_sym_LF] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - }, - [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), - [sym_word] = ACTIONS(5327), - [anon_sym_SEMI] = ACTIONS(5327), - [anon_sym_LF] = ACTIONS(5325), - [anon_sym_AMP] = ACTIONS(5327), - }, - [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), - [sym_word] = ACTIONS(5331), - [anon_sym_SEMI] = ACTIONS(5331), - [anon_sym_LF] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5331), - }, - [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), - [sym_word] = ACTIONS(5335), - [anon_sym_SEMI] = ACTIONS(5335), - [anon_sym_LF] = ACTIONS(5333), - [anon_sym_AMP] = ACTIONS(5335), - }, - [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(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(5325), - }, - [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(5329), - }, - [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(5333), - }, - [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(2712), - [anon_sym_LF] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2712), - }, - [2220] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5621), - [sym_comment] = ACTIONS(53), - }, - [2221] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5623), - [sym_comment] = ACTIONS(53), - }, - [2222] = { - [anon_sym_RBRACE] = ACTIONS(5623), - [sym_comment] = ACTIONS(53), - }, - [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(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(5629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2790), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2790), - }, - [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(5633), - }, - [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(2833), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2833), - }, - [2227] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5635), - }, - [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(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(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), - }, - [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), + [sym__terminated_statement] = STATE(2242), + [sym_for_statement] = STATE(2471), + [sym_while_statement] = STATE(2471), + [sym_if_statement] = STATE(2471), + [sym_case_statement] = STATE(2471), + [sym_function_definition] = STATE(2471), + [sym_subshell] = STATE(2471), + [sym_pipeline] = STATE(2471), + [sym_list] = STATE(2471), + [sym_negated_command] = STATE(2471), + [sym_test_command] = STATE(2471), + [sym_declaration_command] = STATE(2471), + [sym_unset_command] = STATE(2471), + [sym_command] = STATE(2471), + [sym_command_name] = STATE(1903), + [sym_variable_assignment] = STATE(2472), + [sym_subscript] = STATE(1905), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_program_repeat1] = STATE(2242), + [aux_sym_command_repeat1] = STATE(1907), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4403), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5695), + [anon_sym_SEMI_SEMI] = ACTIONS(5703), + [anon_sym_function] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4417), + [anon_sym_declare] = ACTIONS(4419), + [anon_sym_typeset] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_local] = ACTIONS(4419), + [anon_sym_unset] = ACTIONS(4421), + [anon_sym_unsetenv] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4427), }, [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), + [sym__terminated_statement] = STATE(2476), + [sym_for_statement] = STATE(2474), + [sym_while_statement] = STATE(2474), + [sym_if_statement] = STATE(2474), + [sym_case_statement] = STATE(2474), + [sym_function_definition] = STATE(2474), + [sym_subshell] = STATE(2474), + [sym_pipeline] = STATE(2474), + [sym_list] = STATE(2474), + [sym_negated_command] = STATE(2474), + [sym_test_command] = STATE(2474), + [sym_declaration_command] = STATE(2474), + [sym_unset_command] = STATE(2474), + [sym_command] = STATE(2474), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2475), + [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(2476), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(5705), + [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), }, [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), + [aux_sym_case_item_repeat1] = STATE(1909), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(5707), [sym_comment] = ACTIONS(53), }, + [2252] = { + [sym__terminated_statement] = STATE(2481), + [sym_for_statement] = STATE(2479), + [sym_while_statement] = STATE(2479), + [sym_if_statement] = STATE(2479), + [sym_case_statement] = STATE(2479), + [sym_function_definition] = STATE(2479), + [sym_subshell] = STATE(2479), + [sym_pipeline] = STATE(2479), + [sym_list] = STATE(2479), + [sym_negated_command] = STATE(2479), + [sym_test_command] = STATE(2479), + [sym_declaration_command] = STATE(2479), + [sym_unset_command] = STATE(2479), + [sym_command] = STATE(2479), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2480), + [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(2481), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(5709), + [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), + }, [2253] = { - [sym__concat] = ACTIONS(3835), - [anon_sym_RBRACE] = ACTIONS(3835), + [aux_sym_case_item_repeat1] = STATE(1909), + [anon_sym_PIPE] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(5711), [sym_comment] = ACTIONS(53), }, [2254] = { - [sym__concat] = ACTIONS(3920), - [anon_sym_RBRACE] = ACTIONS(3920), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(5713), + [anon_sym_PIPE] = ACTIONS(5713), + [anon_sym_RPAREN] = ACTIONS(5713), + [anon_sym_SEMI_SEMI] = ACTIONS(5713), + [anon_sym_PIPE_AMP] = ACTIONS(5713), + [anon_sym_AMP_AMP] = ACTIONS(5713), + [anon_sym_PIPE_PIPE] = ACTIONS(5713), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(5713), + [anon_sym_LF] = ACTIONS(5715), + [anon_sym_AMP] = ACTIONS(5713), }, [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), + [anon_sym_esac] = ACTIONS(5717), + [anon_sym_PIPE] = ACTIONS(5717), + [anon_sym_RPAREN] = ACTIONS(5717), + [anon_sym_SEMI_SEMI] = ACTIONS(5717), + [anon_sym_PIPE_AMP] = ACTIONS(5717), + [anon_sym_AMP_AMP] = ACTIONS(5717), + [anon_sym_PIPE_PIPE] = ACTIONS(5717), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(5717), + [anon_sym_LF] = ACTIONS(5719), + [anon_sym_AMP] = ACTIONS(5717), }, [2256] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5659), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5419), + [anon_sym_in] = ACTIONS(5421), + [anon_sym_SEMI_SEMI] = ACTIONS(5421), + [sym__special_characters] = ACTIONS(5421), + [anon_sym_DQUOTE] = ACTIONS(5421), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), + [anon_sym_BQUOTE] = ACTIONS(5421), + [anon_sym_LT_LPAREN] = ACTIONS(5421), + [anon_sym_GT_LPAREN] = ACTIONS(5421), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LF] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5421), }, [2257] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5661), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5423), + [anon_sym_in] = ACTIONS(5425), + [anon_sym_SEMI_SEMI] = ACTIONS(5425), + [sym__special_characters] = ACTIONS(5425), + [anon_sym_DQUOTE] = ACTIONS(5425), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), + [anon_sym_BQUOTE] = ACTIONS(5425), + [anon_sym_LT_LPAREN] = ACTIONS(5425), + [anon_sym_GT_LPAREN] = ACTIONS(5425), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LF] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5425), }, [2258] = { - [anon_sym_RBRACE] = ACTIONS(5661), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5427), + [anon_sym_in] = ACTIONS(5429), + [anon_sym_SEMI_SEMI] = ACTIONS(5429), + [sym__special_characters] = ACTIONS(5429), + [anon_sym_DQUOTE] = ACTIONS(5429), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), + [anon_sym_BQUOTE] = ACTIONS(5429), + [anon_sym_LT_LPAREN] = ACTIONS(5429), + [anon_sym_GT_LPAREN] = ACTIONS(5429), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5429), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LF] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5429), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2259), + [sym__concat] = ACTIONS(2622), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), }, [2260] = { - [sym__concat] = ACTIONS(3936), - [anon_sym_RBRACE] = ACTIONS(3936), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2260), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(5276), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), }, [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), + [sym__concat] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_RBRACK] = ACTIONS(5419), + [anon_sym_EQ_TILDE] = ACTIONS(5419), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5419), }, [2262] = { - [sym__concat] = ACTIONS(3946), - [anon_sym_RBRACE] = ACTIONS(3946), + [sym__concat] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_RBRACK] = ACTIONS(5423), + [anon_sym_EQ_TILDE] = ACTIONS(5423), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5423), }, [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), + [sym__concat] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_RBRACK] = ACTIONS(5427), + [anon_sym_EQ_TILDE] = ACTIONS(5427), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5427), }, [2264] = { - [sym__concat] = ACTIONS(3956), - [anon_sym_RBRACE] = ACTIONS(3956), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [anon_sym_esac] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_GT] = ACTIONS(2758), + [anon_sym_AMP_GT_GT] = ACTIONS(2758), + [anon_sym_LT_AMP] = ACTIONS(2758), + [anon_sym_GT_AMP] = ACTIONS(2758), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_LT_LT_DASH] = ACTIONS(2758), + [anon_sym_LT_LT_LT] = ACTIONS(2758), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), }, [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_file_descriptor] = ACTIONS(2770), + [sym__concat] = ACTIONS(2770), + [anon_sym_esac] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_SEMI_SEMI] = ACTIONS(2772), + [anon_sym_PIPE_AMP] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_GT_GT] = ACTIONS(2772), + [anon_sym_AMP_GT] = ACTIONS(2772), + [anon_sym_AMP_GT_GT] = ACTIONS(2772), + [anon_sym_LT_AMP] = ACTIONS(2772), + [anon_sym_GT_AMP] = ACTIONS(2772), + [anon_sym_LT_LT] = ACTIONS(2772), + [anon_sym_LT_LT_DASH] = ACTIONS(2772), + [anon_sym_LT_LT_LT] = ACTIONS(2772), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), }, [2266] = { - [sym__concat] = ACTIONS(3962), - [anon_sym_RBRACE] = ACTIONS(3962), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5721), [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), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5723), + [sym_comment] = ACTIONS(53), }, [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), + [anon_sym_RBRACE] = ACTIONS(5723), + [sym_comment] = ACTIONS(53), }, [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_concatenation] = STATE(2486), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2486), + [anon_sym_RBRACE] = ACTIONS(5725), + [anon_sym_EQ] = ACTIONS(5727), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5727), + [anon_sym_COLON_QMARK] = ACTIONS(5727), + [anon_sym_COLON_DASH] = ACTIONS(5727), + [anon_sym_PERCENT] = ACTIONS(5727), + [anon_sym_DASH] = ACTIONS(5727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4747), + [sym_word] = ACTIONS(781), }, [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_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [anon_sym_esac] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [anon_sym_PIPE_AMP] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_GT] = ACTIONS(2854), + [anon_sym_AMP_GT_GT] = ACTIONS(2854), + [anon_sym_LT_AMP] = ACTIONS(2854), + [anon_sym_GT_AMP] = ACTIONS(2854), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_LT_LT_DASH] = ACTIONS(2854), + [anon_sym_LT_LT_LT] = ACTIONS(2854), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), }, [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), + [sym_concatenation] = STATE(2489), + [sym_string] = STATE(2488), + [sym_simple_expansion] = STATE(2488), + [sym_string_expansion] = STATE(2488), + [sym_expansion] = STATE(2488), + [sym_command_substitution] = STATE(2488), + [sym_process_substitution] = STATE(2488), + [anon_sym_RBRACE] = ACTIONS(5723), + [sym__special_characters] = ACTIONS(5731), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5733), }, [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_file_descriptor] = ACTIONS(2895), + [sym__concat] = ACTIONS(2895), + [anon_sym_esac] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = ACTIONS(2897), + [anon_sym_PIPE_AMP] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_PIPE_PIPE] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_GT] = ACTIONS(2897), + [anon_sym_GT_GT] = ACTIONS(2897), + [anon_sym_AMP_GT] = ACTIONS(2897), + [anon_sym_AMP_GT_GT] = ACTIONS(2897), + [anon_sym_LT_AMP] = ACTIONS(2897), + [anon_sym_GT_AMP] = ACTIONS(2897), + [anon_sym_LT_LT] = ACTIONS(2897), + [anon_sym_LT_LT_DASH] = ACTIONS(2897), + [anon_sym_LT_LT_LT] = ACTIONS(2897), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2897), }, [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), + [sym_regex_without_right_brace] = ACTIONS(5735), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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_file_descriptor] = ACTIONS(2903), + [sym__concat] = ACTIONS(2903), + [anon_sym_esac] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2905), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2905), + [anon_sym_LT_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT_LT] = ACTIONS(2905), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), }, [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), + [sym_regex_without_right_brace] = ACTIONS(5739), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5741), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(4773), + [sym_word] = ACTIONS(781), }, [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), + [sym_regex_without_right_brace] = ACTIONS(5743), }, [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5723), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym_concatenation] = STATE(2496), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2496), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_EQ] = ACTIONS(5747), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5747), + [anon_sym_COLON_QMARK] = ACTIONS(5747), + [anon_sym_COLON_DASH] = ACTIONS(5747), + [anon_sym_PERCENT] = ACTIONS(5747), + [anon_sym_DASH] = ACTIONS(5747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [2281] = { - [anon_sym_esac] = ACTIONS(5691), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(2919), + [sym__concat] = ACTIONS(2919), + [anon_sym_esac] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2921), + [anon_sym_SEMI_SEMI] = ACTIONS(2921), + [anon_sym_PIPE_AMP] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_AMP_GT] = ACTIONS(2921), + [anon_sym_AMP_GT_GT] = ACTIONS(2921), + [anon_sym_LT_AMP] = ACTIONS(2921), + [anon_sym_GT_AMP] = ACTIONS(2921), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_LT_LT_DASH] = ACTIONS(2921), + [anon_sym_LT_LT_LT] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), }, [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), + [sym_concatenation] = STATE(2498), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2498), + [anon_sym_RBRACE] = ACTIONS(5751), + [anon_sym_EQ] = ACTIONS(5753), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5753), + [anon_sym_COLON_QMARK] = ACTIONS(5753), + [anon_sym_COLON_DASH] = ACTIONS(5753), + [anon_sym_PERCENT] = ACTIONS(5753), + [anon_sym_DASH] = ACTIONS(5753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [2283] = { - [anon_sym_esac] = ACTIONS(5693), + [sym__concat] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5419), + [anon_sym_EQ_TILDE] = ACTIONS(5419), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5419), }, [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__concat] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5423), + [anon_sym_EQ_TILDE] = ACTIONS(5423), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5423), }, [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__concat] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5427), + [anon_sym_EQ_TILDE] = ACTIONS(5427), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5427), }, [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), + [sym__concat] = ACTIONS(5419), + [sym_variable_name] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5421), + [anon_sym_SEMI_SEMI] = ACTIONS(5421), + [anon_sym_PIPE_AMP] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [sym__special_characters] = ACTIONS(5421), + [anon_sym_DQUOTE] = ACTIONS(5421), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), + [anon_sym_BQUOTE] = ACTIONS(5421), + [anon_sym_LT_LPAREN] = ACTIONS(5421), + [anon_sym_GT_LPAREN] = ACTIONS(5421), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), + [sym_word] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LF] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5421), }, [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), + [sym__concat] = ACTIONS(5423), + [sym_variable_name] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5425), + [anon_sym_SEMI_SEMI] = ACTIONS(5425), + [anon_sym_PIPE_AMP] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [sym__special_characters] = ACTIONS(5425), + [anon_sym_DQUOTE] = ACTIONS(5425), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), + [anon_sym_BQUOTE] = ACTIONS(5425), + [anon_sym_LT_LPAREN] = ACTIONS(5425), + [anon_sym_GT_LPAREN] = ACTIONS(5425), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), + [sym_word] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LF] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5425), }, [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), + [sym__concat] = ACTIONS(5427), + [sym_variable_name] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5429), + [anon_sym_SEMI_SEMI] = ACTIONS(5429), + [anon_sym_PIPE_AMP] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [sym__special_characters] = ACTIONS(5429), + [anon_sym_DQUOTE] = ACTIONS(5429), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), + [anon_sym_BQUOTE] = ACTIONS(5429), + [anon_sym_LT_LPAREN] = ACTIONS(5429), + [anon_sym_GT_LPAREN] = ACTIONS(5429), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), + [sym_word] = ACTIONS(5429), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LF] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5429), }, [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), + [sym__concat] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5421), + [anon_sym_SEMI_SEMI] = ACTIONS(5421), + [anon_sym_PIPE_AMP] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [sym__special_characters] = ACTIONS(5421), + [anon_sym_DQUOTE] = ACTIONS(5421), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), + [anon_sym_BQUOTE] = ACTIONS(5421), + [anon_sym_LT_LPAREN] = ACTIONS(5421), + [anon_sym_GT_LPAREN] = ACTIONS(5421), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), + [sym_word] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LF] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5421), }, [2290] = { + [sym__concat] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5425), + [anon_sym_SEMI_SEMI] = ACTIONS(5425), + [anon_sym_PIPE_AMP] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [sym__special_characters] = ACTIONS(5425), + [anon_sym_DQUOTE] = ACTIONS(5425), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), + [anon_sym_BQUOTE] = ACTIONS(5425), + [anon_sym_LT_LPAREN] = ACTIONS(5425), + [anon_sym_GT_LPAREN] = ACTIONS(5425), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5704), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), + [sym_word] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LF] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5425), }, [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__concat] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5429), + [anon_sym_SEMI_SEMI] = ACTIONS(5429), + [anon_sym_PIPE_AMP] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [sym__special_characters] = ACTIONS(5429), + [anon_sym_DQUOTE] = ACTIONS(5429), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), + [anon_sym_BQUOTE] = ACTIONS(5429), + [anon_sym_LT_LPAREN] = ACTIONS(5429), + [anon_sym_GT_LPAREN] = ACTIONS(5429), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), + [sym_word] = ACTIONS(5429), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LF] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5429), }, [2292] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(5708), + [sym_file_descriptor] = ACTIONS(5419), + [sym__concat] = ACTIONS(5419), + [sym_variable_name] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_PIPE_AMP] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_AMP_GT] = ACTIONS(5421), + [anon_sym_AMP_GT_GT] = ACTIONS(5419), + [anon_sym_LT_AMP] = ACTIONS(5419), + [anon_sym_GT_AMP] = ACTIONS(5419), + [sym__special_characters] = ACTIONS(5419), + [anon_sym_DQUOTE] = ACTIONS(5419), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), + [anon_sym_BQUOTE] = ACTIONS(5419), + [anon_sym_LT_LPAREN] = ACTIONS(5419), + [anon_sym_GT_LPAREN] = ACTIONS(5419), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5419), }, [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), + [sym_file_descriptor] = ACTIONS(5423), + [sym__concat] = ACTIONS(5423), + [sym_variable_name] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_PIPE_AMP] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5423), + [anon_sym_AMP_GT] = ACTIONS(5425), + [anon_sym_AMP_GT_GT] = ACTIONS(5423), + [anon_sym_LT_AMP] = ACTIONS(5423), + [anon_sym_GT_AMP] = ACTIONS(5423), + [sym__special_characters] = ACTIONS(5423), + [anon_sym_DQUOTE] = ACTIONS(5423), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), + [anon_sym_BQUOTE] = ACTIONS(5423), + [anon_sym_LT_LPAREN] = ACTIONS(5423), + [anon_sym_GT_LPAREN] = ACTIONS(5423), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5423), }, [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), + [sym_file_descriptor] = ACTIONS(5427), + [sym__concat] = ACTIONS(5427), + [sym_variable_name] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_PIPE_AMP] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5427), + [anon_sym_AMP_GT] = ACTIONS(5429), + [anon_sym_AMP_GT_GT] = ACTIONS(5427), + [anon_sym_LT_AMP] = ACTIONS(5427), + [anon_sym_GT_AMP] = ACTIONS(5427), + [sym__special_characters] = ACTIONS(5427), + [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), + [anon_sym_BQUOTE] = ACTIONS(5427), + [anon_sym_LT_LPAREN] = ACTIONS(5427), + [anon_sym_GT_LPAREN] = ACTIONS(5427), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5427), }, [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__concat] = ACTIONS(5419), + [anon_sym_DQUOTE] = ACTIONS(5421), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym__string_content] = ACTIONS(5419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), + [anon_sym_BQUOTE] = ACTIONS(5421), [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), + [sym__concat] = ACTIONS(5423), + [anon_sym_DQUOTE] = ACTIONS(5425), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym__string_content] = ACTIONS(5423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), + [anon_sym_BQUOTE] = ACTIONS(5425), + [sym_comment] = ACTIONS(177), }, [2297] = { + [sym__concat] = ACTIONS(5427), + [anon_sym_DQUOTE] = ACTIONS(5429), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym__string_content] = ACTIONS(5427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), + [anon_sym_BQUOTE] = ACTIONS(5429), [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), + [sym__concat] = ACTIONS(3905), + [anon_sym_RBRACE] = ACTIONS(3905), + [sym_comment] = ACTIONS(53), }, [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__concat] = ACTIONS(3913), + [anon_sym_RBRACE] = ACTIONS(3913), [sym_comment] = ACTIONS(53), }, [2300] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(5736), + [sym__concat] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [sym_comment] = ACTIONS(53), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5759), [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), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(5761), [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), + [anon_sym_RBRACE] = ACTIONS(5761), [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), + [sym_concatenation] = STATE(2503), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2503), + [anon_sym_RBRACE] = ACTIONS(5763), + [anon_sym_EQ] = ACTIONS(5765), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5765), + [anon_sym_COLON_QMARK] = ACTIONS(5765), + [anon_sym_COLON_DASH] = ACTIONS(5765), + [anon_sym_PERCENT] = ACTIONS(5765), + [anon_sym_DASH] = ACTIONS(5765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4016), + [anon_sym_RBRACE] = ACTIONS(4016), [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), + [sym_concatenation] = STATE(2505), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2505), + [anon_sym_RBRACE] = ACTIONS(5769), + [anon_sym_EQ] = ACTIONS(5771), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_COLON_QMARK] = ACTIONS(5771), + [anon_sym_COLON_DASH] = ACTIONS(5771), + [anon_sym_PERCENT] = ACTIONS(5771), + [anon_sym_DASH] = ACTIONS(5771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4026), + [anon_sym_RBRACE] = ACTIONS(4026), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(2507), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2507), + [anon_sym_RBRACE] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(5777), + [anon_sym_COLON_QMARK] = ACTIONS(5777), + [anon_sym_COLON_DASH] = ACTIONS(5777), + [anon_sym_PERCENT] = ACTIONS(5777), + [anon_sym_DASH] = ACTIONS(5777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5781), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4042), + [anon_sym_RBRACE] = ACTIONS(4042), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4831), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(4833), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4831), + [anon_sym_POUND] = ACTIONS(4831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), + [anon_sym_COLON] = ACTIONS(4833), + [anon_sym_COLON_QMARK] = ACTIONS(4833), + [anon_sym_COLON_DASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), + [anon_sym_BQUOTE] = ACTIONS(4831), + [anon_sym_LT_LPAREN] = ACTIONS(4831), + [anon_sym_GT_LPAREN] = ACTIONS(4831), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4833), }, [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), + [sym__concat] = ACTIONS(4835), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4837), + [sym__special_characters] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4835), + [anon_sym_POUND] = ACTIONS(4835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), + [anon_sym_COLON] = ACTIONS(4837), + [anon_sym_COLON_QMARK] = ACTIONS(4837), + [anon_sym_COLON_DASH] = ACTIONS(4837), + [anon_sym_PERCENT] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), + [anon_sym_BQUOTE] = ACTIONS(4835), + [anon_sym_LT_LPAREN] = ACTIONS(4835), + [anon_sym_GT_LPAREN] = ACTIONS(4835), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4837), }, [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), + [sym__concat] = ACTIONS(4839), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(4841), + [anon_sym_DQUOTE] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4839), + [anon_sym_POUND] = ACTIONS(4839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), + [anon_sym_COLON] = ACTIONS(4841), + [anon_sym_COLON_QMARK] = ACTIONS(4841), + [anon_sym_COLON_DASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), + [anon_sym_BQUOTE] = ACTIONS(4839), + [anon_sym_LT_LPAREN] = ACTIONS(4839), + [anon_sym_GT_LPAREN] = ACTIONS(4839), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4841), }, [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), + [sym__concat] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(4845), + [sym__special_characters] = ACTIONS(4845), + [anon_sym_DQUOTE] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4843), + [anon_sym_POUND] = ACTIONS(4843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), + [anon_sym_COLON] = ACTIONS(4845), + [anon_sym_COLON_QMARK] = ACTIONS(4845), + [anon_sym_COLON_DASH] = ACTIONS(4845), + [anon_sym_PERCENT] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), + [anon_sym_BQUOTE] = ACTIONS(4843), + [anon_sym_LT_LPAREN] = ACTIONS(4843), + [anon_sym_GT_LPAREN] = ACTIONS(4843), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4845), }, [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5785), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4849), + [anon_sym_RBRACE] = ACTIONS(4849), + [anon_sym_EQ] = ACTIONS(4851), + [sym__special_characters] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4849), + [anon_sym_POUND] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), + [anon_sym_COLON] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4851), + [anon_sym_COLON_DASH] = ACTIONS(4851), + [anon_sym_PERCENT] = ACTIONS(4851), + [anon_sym_DASH] = ACTIONS(4851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), + [anon_sym_BQUOTE] = ACTIONS(4849), + [anon_sym_LT_LPAREN] = ACTIONS(4849), + [anon_sym_GT_LPAREN] = ACTIONS(4849), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(4851), }, [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5787), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4855), + [anon_sym_RBRACE] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4857), + [sym__special_characters] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4855), + [anon_sym_POUND] = ACTIONS(4855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_COLON_QMARK] = ACTIONS(4857), + [anon_sym_COLON_DASH] = ACTIONS(4857), + [anon_sym_PERCENT] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), + [anon_sym_BQUOTE] = ACTIONS(4855), + [anon_sym_LT_LPAREN] = ACTIONS(4855), + [anon_sym_GT_LPAREN] = ACTIONS(4855), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(4857), }, [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(4863), + [sym__special_characters] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_POUND] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_COLON] = ACTIONS(4863), + [anon_sym_COLON_QMARK] = ACTIONS(4863), + [anon_sym_COLON_DASH] = ACTIONS(4863), + [anon_sym_PERCENT] = ACTIONS(4863), + [anon_sym_DASH] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(4863), }, [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), + [sym__concat] = ACTIONS(4865), + [anon_sym_RBRACE] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(4867), + [anon_sym_DQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), + [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(4865), + [anon_sym_BQUOTE] = ACTIONS(4865), + [anon_sym_LT_LPAREN] = ACTIONS(4865), + [anon_sym_GT_LPAREN] = ACTIONS(4865), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(4867), }, [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), + [anon_sym_PIPE] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5157), + [anon_sym_PIPE_AMP] = ACTIONS(5157), + [anon_sym_AMP_AMP] = ACTIONS(5157), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_BQUOTE] = ACTIONS(5157), [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), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_RPAREN] = ACTIONS(5250), + [anon_sym_PIPE_AMP] = ACTIONS(5250), + [anon_sym_AMP_AMP] = ACTIONS(5250), + [anon_sym_PIPE_PIPE] = ACTIONS(5250), + [anon_sym_BQUOTE] = ACTIONS(5250), [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), + [anon_sym_esac] = ACTIONS(5791), [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), + [anon_sym_PIPE] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5260), + [anon_sym_PIPE_AMP] = ACTIONS(5260), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5260), + [anon_sym_BQUOTE] = ACTIONS(5260), [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), + [anon_sym_esac] = ACTIONS(5793), [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__concat] = ACTIONS(4157), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), [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_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1672), + [anon_sym_LT_LT_LT] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), [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), + [aux_sym_concatenation_repeat1] = STATE(2332), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(5795), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1672), + [anon_sym_LT_LT_LT] = ACTIONS(1672), [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_file_descriptor] = ACTIONS(1679), + [sym__concat] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1679), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_AMP_GT_GT] = ACTIONS(1679), + [anon_sym_LT_AMP] = ACTIONS(1679), + [anon_sym_GT_AMP] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1679), + [anon_sym_LT_LT_LT] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), [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), + [anon_sym_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), }, [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), + [sym_concatenation] = STATE(2519), + [sym_string] = STATE(2518), + [sym_simple_expansion] = STATE(2518), + [sym_string_expansion] = STATE(2518), + [sym_expansion] = STATE(2518), + [sym_command_substitution] = STATE(2518), + [sym_process_substitution] = STATE(2518), + [anon_sym_RBRACE] = ACTIONS(5800), + [sym__special_characters] = ACTIONS(5802), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5804), }, [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_file_descriptor] = ACTIONS(1764), + [sym__concat] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_PIPE_AMP] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1764), + [anon_sym_AMP_GT] = ACTIONS(1766), + [anon_sym_AMP_GT_GT] = ACTIONS(1764), + [anon_sym_LT_AMP] = ACTIONS(1764), + [anon_sym_GT_AMP] = ACTIONS(1764), + [anon_sym_LT_LT] = ACTIONS(1766), + [anon_sym_LT_LT_DASH] = ACTIONS(1764), + [anon_sym_LT_LT_LT] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1764), [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_regex_without_right_brace] = ACTIONS(5806), }, [2338] = { - [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), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5808), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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_word] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(5810), + [sym_comment] = ACTIONS(53), }, [2340] = { - [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__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__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__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__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__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_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(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_word] = ACTIONS(4759), - }, - [2348] = { - [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(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_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), - [sym_word] = ACTIONS(767), - }, - [2351] = { - [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(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_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), - [sym_word] = ACTIONS(5327), - [anon_sym_SEMI] = ACTIONS(5327), - [anon_sym_LF] = ACTIONS(5325), - [anon_sym_AMP] = ACTIONS(5327), - }, - [2354] = { - [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), - [sym_word] = ACTIONS(5331), - [anon_sym_SEMI] = ACTIONS(5331), - [anon_sym_LF] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5331), - }, - [2355] = { - [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] = { - [aux_sym_concatenation_repeat1] = STATE(2496), - [sym_file_descriptor] = ACTIONS(1129), - [sym__concat] = ACTIONS(1131), - [sym_variable_name] = ACTIONS(1129), - [anon_sym_esac] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [sym__special_characters] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1133), - }, - [2357] = { - [aux_sym_concatenation_repeat1] = STATE(2496), - [sym_file_descriptor] = ACTIONS(1107), - [sym__concat] = ACTIONS(1131), - [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), - }, - [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(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(5133), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_LF] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1163), - }, - [2359] = { - [anon_sym_RPAREN] = ACTIONS(5762), - [sym_comment] = ACTIONS(53), - }, - [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(1233), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1233), - }, - [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(1341), - [anon_sym_LF] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1341), - }, - [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(5780), - }, - [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(5790), - }, - [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), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [2365] = { - [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), - [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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), - [sym_word] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - }, - [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(5792), - [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), - }, - [2367] = { - [sym__concat] = ACTIONS(727), - [sym_variable_name] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), - [sym_word] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - }, - [2368] = { - [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), - [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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2369] = { - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [2370] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(5794), - [sym_comment] = ACTIONS(53), - }, - [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(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(5800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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), - }, - [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(2522), + [sym_concatenation] = STATE(2525), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2525), [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), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(5816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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(2525), + [2341] = { + [sym_concatenation] = STATE(2528), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2528), [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), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(5824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), + }, + [2342] = { + [sym_concatenation] = STATE(2530), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2530), + [anon_sym_RBRACE] = ACTIONS(5800), + [anon_sym_EQ] = ACTIONS(5828), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5832), + [anon_sym_COLON] = ACTIONS(5828), + [anon_sym_COLON_QMARK] = ACTIONS(5828), + [anon_sym_COLON_DASH] = ACTIONS(5828), + [anon_sym_PERCENT] = ACTIONS(5828), + [anon_sym_DASH] = ACTIONS(5828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2343] = { + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [anon_sym_LT_LT] = ACTIONS(1834), + [anon_sym_LT_LT_DASH] = ACTIONS(1832), + [anon_sym_LT_LT_LT] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + }, + [2344] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5834), + }, + [2345] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5836), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2346] = { + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [anon_sym_LT_LT] = ACTIONS(1842), + [anon_sym_LT_LT_DASH] = ACTIONS(1840), + [anon_sym_LT_LT_LT] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + }, + [2347] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(5838), + }, + [2348] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5800), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2349] = { + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1980), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1980), + [anon_sym_LT_AMP] = ACTIONS(1980), + [anon_sym_GT_AMP] = ACTIONS(1980), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1980), + [anon_sym_LT_LT_LT] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [sym_comment] = ACTIONS(53), + }, + [2350] = { + [sym_file_descriptor] = ACTIONS(2046), + [sym__concat] = ACTIONS(2046), + [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_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), + [anon_sym_BQUOTE] = ACTIONS(2046), + [sym_comment] = ACTIONS(53), + }, + [2351] = { + [sym__concat] = ACTIONS(4831), + [sym_variable_name] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_PIPE_AMP] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [sym__special_characters] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), + [anon_sym_BQUOTE] = ACTIONS(4831), + [anon_sym_LT_LPAREN] = ACTIONS(4831), + [anon_sym_GT_LPAREN] = ACTIONS(4831), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), + [sym_word] = ACTIONS(4833), + }, + [2352] = { + [sym__concat] = ACTIONS(4835), + [sym_variable_name] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_PIPE_AMP] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [sym__special_characters] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), + [anon_sym_BQUOTE] = ACTIONS(4835), + [anon_sym_LT_LPAREN] = ACTIONS(4835), + [anon_sym_GT_LPAREN] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), + [sym_word] = ACTIONS(4837), + }, + [2353] = { + [sym__concat] = ACTIONS(4839), + [sym_variable_name] = ACTIONS(4839), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_PIPE_AMP] = ACTIONS(4839), + [anon_sym_AMP_AMP] = ACTIONS(4839), + [anon_sym_PIPE_PIPE] = ACTIONS(4839), + [sym__special_characters] = ACTIONS(4839), + [anon_sym_DQUOTE] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), + [anon_sym_BQUOTE] = ACTIONS(4839), + [anon_sym_LT_LPAREN] = ACTIONS(4839), + [anon_sym_GT_LPAREN] = ACTIONS(4839), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), + [sym_word] = ACTIONS(4841), + }, + [2354] = { + [sym__concat] = ACTIONS(4843), + [sym_variable_name] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_PIPE_AMP] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [sym__special_characters] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), + [anon_sym_BQUOTE] = ACTIONS(4843), + [anon_sym_LT_LPAREN] = ACTIONS(4843), + [anon_sym_GT_LPAREN] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), + [sym_word] = ACTIONS(4845), + }, + [2355] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5840), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2356] = { + [sym__concat] = ACTIONS(4849), + [sym_variable_name] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4849), + [anon_sym_PIPE_AMP] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [sym__special_characters] = ACTIONS(4849), + [anon_sym_DQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), + [anon_sym_BQUOTE] = ACTIONS(4849), + [anon_sym_LT_LPAREN] = ACTIONS(4849), + [anon_sym_GT_LPAREN] = ACTIONS(4849), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), + [sym_word] = ACTIONS(4851), + }, + [2357] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5842), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2358] = { + [sym__concat] = ACTIONS(4855), + [sym_variable_name] = ACTIONS(4855), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_PIPE_AMP] = ACTIONS(4855), + [anon_sym_AMP_AMP] = ACTIONS(4855), + [anon_sym_PIPE_PIPE] = ACTIONS(4855), + [sym__special_characters] = ACTIONS(4855), + [anon_sym_DQUOTE] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), + [anon_sym_BQUOTE] = ACTIONS(4855), + [anon_sym_LT_LPAREN] = ACTIONS(4855), + [anon_sym_GT_LPAREN] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), + [sym_word] = ACTIONS(4857), + }, + [2359] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5844), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2360] = { + [sym__concat] = ACTIONS(4861), + [sym_variable_name] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), + [sym_word] = ACTIONS(4863), + }, + [2361] = { + [sym__concat] = ACTIONS(4865), + [sym_variable_name] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4865), + [anon_sym_PIPE_AMP] = ACTIONS(4865), + [anon_sym_AMP_AMP] = ACTIONS(4865), + [anon_sym_PIPE_PIPE] = ACTIONS(4865), + [sym__special_characters] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), + [anon_sym_BQUOTE] = ACTIONS(4865), + [anon_sym_LT_LPAREN] = ACTIONS(4865), + [anon_sym_GT_LPAREN] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), + [sym_word] = ACTIONS(4867), + }, + [2362] = { + [sym__concat] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_PIPE_AMP] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [sym__special_characters] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), + [anon_sym_BQUOTE] = ACTIONS(4831), + [anon_sym_LT_LPAREN] = ACTIONS(4831), + [anon_sym_GT_LPAREN] = ACTIONS(4831), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), + [sym_word] = ACTIONS(4833), + }, + [2363] = { + [sym__concat] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_PIPE_AMP] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [sym__special_characters] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), + [anon_sym_BQUOTE] = ACTIONS(4835), + [anon_sym_LT_LPAREN] = ACTIONS(4835), + [anon_sym_GT_LPAREN] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), + [sym_word] = ACTIONS(4837), + }, + [2364] = { + [sym__concat] = ACTIONS(4839), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_PIPE_AMP] = ACTIONS(4839), + [anon_sym_AMP_AMP] = ACTIONS(4839), + [anon_sym_PIPE_PIPE] = ACTIONS(4839), + [sym__special_characters] = ACTIONS(4839), + [anon_sym_DQUOTE] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), + [anon_sym_BQUOTE] = ACTIONS(4839), + [anon_sym_LT_LPAREN] = ACTIONS(4839), + [anon_sym_GT_LPAREN] = ACTIONS(4839), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), + [sym_word] = ACTIONS(4841), + }, + [2365] = { + [sym__concat] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_PIPE_AMP] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [sym__special_characters] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), + [anon_sym_BQUOTE] = ACTIONS(4843), + [anon_sym_LT_LPAREN] = ACTIONS(4843), + [anon_sym_GT_LPAREN] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), + [sym_word] = ACTIONS(4845), + }, + [2366] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5846), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2367] = { + [sym__concat] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4849), + [anon_sym_PIPE_AMP] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [sym__special_characters] = ACTIONS(4849), + [anon_sym_DQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), + [anon_sym_BQUOTE] = ACTIONS(4849), + [anon_sym_LT_LPAREN] = ACTIONS(4849), + [anon_sym_GT_LPAREN] = ACTIONS(4849), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), + [sym_word] = ACTIONS(4851), + }, + [2368] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2369] = { + [sym__concat] = ACTIONS(4855), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_PIPE_AMP] = ACTIONS(4855), + [anon_sym_AMP_AMP] = ACTIONS(4855), + [anon_sym_PIPE_PIPE] = ACTIONS(4855), + [sym__special_characters] = ACTIONS(4855), + [anon_sym_DQUOTE] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), + [anon_sym_BQUOTE] = ACTIONS(4855), + [anon_sym_LT_LPAREN] = ACTIONS(4855), + [anon_sym_GT_LPAREN] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), + [sym_word] = ACTIONS(4857), + }, + [2370] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5850), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2371] = { + [sym__concat] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), + [sym_word] = ACTIONS(4863), + }, + [2372] = { + [sym__concat] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4865), + [anon_sym_PIPE_AMP] = ACTIONS(4865), + [anon_sym_AMP_AMP] = ACTIONS(4865), + [anon_sym_PIPE_PIPE] = ACTIONS(4865), + [sym__special_characters] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), + [anon_sym_BQUOTE] = ACTIONS(4865), + [anon_sym_LT_LPAREN] = ACTIONS(4865), + [anon_sym_GT_LPAREN] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), + [sym_word] = ACTIONS(4867), + }, + [2373] = { + [sym__simple_heredoc_body] = ACTIONS(5419), + [sym__heredoc_body_beginning] = ACTIONS(5419), + [sym_file_descriptor] = ACTIONS(5419), + [sym__concat] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_PIPE_AMP] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_EQ_TILDE] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_AMP_GT] = ACTIONS(5421), + [anon_sym_AMP_GT_GT] = ACTIONS(5419), + [anon_sym_LT_AMP] = ACTIONS(5419), + [anon_sym_GT_AMP] = ACTIONS(5419), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_LT_LT_DASH] = ACTIONS(5419), + [anon_sym_LT_LT_LT] = ACTIONS(5419), + [sym__special_characters] = ACTIONS(5419), + [anon_sym_DQUOTE] = ACTIONS(5419), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), + [anon_sym_BQUOTE] = ACTIONS(5419), + [anon_sym_LT_LPAREN] = ACTIONS(5419), + [anon_sym_GT_LPAREN] = ACTIONS(5419), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5421), + }, + [2374] = { + [sym__simple_heredoc_body] = ACTIONS(5423), + [sym__heredoc_body_beginning] = ACTIONS(5423), + [sym_file_descriptor] = ACTIONS(5423), + [sym__concat] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_PIPE_AMP] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_EQ_TILDE] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5423), + [anon_sym_AMP_GT] = ACTIONS(5425), + [anon_sym_AMP_GT_GT] = ACTIONS(5423), + [anon_sym_LT_AMP] = ACTIONS(5423), + [anon_sym_GT_AMP] = ACTIONS(5423), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_LT_LT_DASH] = ACTIONS(5423), + [anon_sym_LT_LT_LT] = ACTIONS(5423), + [sym__special_characters] = ACTIONS(5423), + [anon_sym_DQUOTE] = ACTIONS(5423), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), + [anon_sym_BQUOTE] = ACTIONS(5423), + [anon_sym_LT_LPAREN] = ACTIONS(5423), + [anon_sym_GT_LPAREN] = ACTIONS(5423), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5425), }, [2375] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5828), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym__simple_heredoc_body] = ACTIONS(5427), + [sym__heredoc_body_beginning] = ACTIONS(5427), + [sym_file_descriptor] = ACTIONS(5427), + [sym__concat] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_PIPE_AMP] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_EQ_TILDE] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5427), + [anon_sym_AMP_GT] = ACTIONS(5429), + [anon_sym_AMP_GT_GT] = ACTIONS(5427), + [anon_sym_LT_AMP] = ACTIONS(5427), + [anon_sym_GT_AMP] = ACTIONS(5427), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_LT_LT_DASH] = ACTIONS(5427), + [anon_sym_LT_LT_LT] = ACTIONS(5427), + [sym__special_characters] = ACTIONS(5427), + [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), + [anon_sym_BQUOTE] = ACTIONS(5427), + [anon_sym_LT_LPAREN] = ACTIONS(5427), + [anon_sym_GT_LPAREN] = ACTIONS(5427), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5429), }, [2376] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5828), - [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), + [aux_sym_concatenation_repeat1] = STATE(2376), + [sym__concat] = ACTIONS(4157), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [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(5828), + [aux_sym_concatenation_repeat1] = STATE(2377), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(5795), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1672), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1672), + [anon_sym_LT_AMP] = ACTIONS(1672), + [anon_sym_GT_AMP] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1672), + [anon_sym_LT_LT_LT] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), [sym_comment] = ACTIONS(53), }, [2378] = { - [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(5828), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym__heredoc_body_middle] = ACTIONS(4831), + [sym__heredoc_body_end] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [2379] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5830), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [sym__heredoc_body_middle] = ACTIONS(4835), + [sym__heredoc_body_end] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), [sym_comment] = ACTIONS(53), }, [2380] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5830), - [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__heredoc_body_middle] = ACTIONS(4839), + [sym__heredoc_body_end] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), }, [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(5859), - [sym_word] = ACTIONS(5844), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_LF] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1488), + [sym__heredoc_body_middle] = ACTIONS(4843), + [sym__heredoc_body_end] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), }, [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(5862), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5852), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(695), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), + [sym__heredoc_body_middle] = ACTIONS(4849), + [sym__heredoc_body_end] = ACTIONS(4849), + [anon_sym_DOLLAR] = ACTIONS(4851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), + [sym_comment] = ACTIONS(53), }, [2384] = { - [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), - [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5854), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), - [sym_word] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), + [sym_word] = ACTIONS(781), }, [2385] = { + [sym__heredoc_body_middle] = ACTIONS(4855), + [sym__heredoc_body_end] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + }, + [2386] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5856), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2387] = { + [sym__heredoc_body_middle] = ACTIONS(4861), + [sym__heredoc_body_end] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + }, + [2388] = { + [sym__heredoc_body_middle] = ACTIONS(4865), + [sym__heredoc_body_end] = ACTIONS(4865), + [anon_sym_DOLLAR] = ACTIONS(4867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + }, + [2389] = { + [sym__concat] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [sym__special_characters] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4831), + [anon_sym_BQUOTE] = ACTIONS(4831), + [anon_sym_LT_LPAREN] = ACTIONS(4831), + [anon_sym_GT_LPAREN] = ACTIONS(4831), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4831), + }, + [2390] = { + [sym__concat] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4835), + [sym__special_characters] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4835), + [anon_sym_BQUOTE] = ACTIONS(4835), + [anon_sym_LT_LPAREN] = ACTIONS(4835), + [anon_sym_GT_LPAREN] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4835), + }, + [2391] = { + [sym__concat] = ACTIONS(4839), + [anon_sym_RPAREN] = ACTIONS(4839), + [sym__special_characters] = ACTIONS(4839), + [anon_sym_DQUOTE] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), + [anon_sym_BQUOTE] = ACTIONS(4839), + [anon_sym_LT_LPAREN] = ACTIONS(4839), + [anon_sym_GT_LPAREN] = ACTIONS(4839), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4839), + }, + [2392] = { + [sym__concat] = ACTIONS(4843), + [anon_sym_RPAREN] = ACTIONS(4843), + [sym__special_characters] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4843), + [anon_sym_BQUOTE] = ACTIONS(4843), + [anon_sym_LT_LPAREN] = ACTIONS(4843), + [anon_sym_GT_LPAREN] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4843), + }, + [2393] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5858), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2394] = { + [sym__concat] = ACTIONS(4849), + [anon_sym_RPAREN] = ACTIONS(4849), + [sym__special_characters] = ACTIONS(4849), + [anon_sym_DQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4849), + [anon_sym_BQUOTE] = ACTIONS(4849), + [anon_sym_LT_LPAREN] = ACTIONS(4849), + [anon_sym_GT_LPAREN] = ACTIONS(4849), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4849), + }, + [2395] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5860), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2396] = { + [sym__concat] = ACTIONS(4855), + [anon_sym_RPAREN] = ACTIONS(4855), + [sym__special_characters] = ACTIONS(4855), + [anon_sym_DQUOTE] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4855), + [anon_sym_BQUOTE] = ACTIONS(4855), + [anon_sym_LT_LPAREN] = ACTIONS(4855), + [anon_sym_GT_LPAREN] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4855), + }, + [2397] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(5862), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2398] = { + [sym__concat] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LT_LPAREN] = ACTIONS(4861), + [anon_sym_GT_LPAREN] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4861), + }, + [2399] = { + [sym__concat] = ACTIONS(4865), + [anon_sym_RPAREN] = ACTIONS(4865), + [sym__special_characters] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4865), + [anon_sym_BQUOTE] = ACTIONS(4865), + [anon_sym_LT_LPAREN] = ACTIONS(4865), + [anon_sym_GT_LPAREN] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4865), + }, + [2400] = { + [sym_file_descriptor] = ACTIONS(5419), + [sym__concat] = ACTIONS(5419), + [sym_variable_name] = ACTIONS(5419), + [anon_sym_esac] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5421), + [anon_sym_SEMI_SEMI] = ACTIONS(5421), + [anon_sym_PIPE_AMP] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym_AMP_GT] = ACTIONS(5421), + [anon_sym_AMP_GT_GT] = ACTIONS(5421), + [anon_sym_LT_AMP] = ACTIONS(5421), + [anon_sym_GT_AMP] = ACTIONS(5421), + [sym__special_characters] = ACTIONS(5421), + [anon_sym_DQUOTE] = ACTIONS(5421), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), + [anon_sym_BQUOTE] = ACTIONS(5421), + [anon_sym_LT_LPAREN] = ACTIONS(5421), + [anon_sym_GT_LPAREN] = ACTIONS(5421), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LF] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5421), + }, + [2401] = { + [sym_file_descriptor] = ACTIONS(5423), + [sym__concat] = ACTIONS(5423), + [sym_variable_name] = ACTIONS(5423), + [anon_sym_esac] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5425), + [anon_sym_SEMI_SEMI] = ACTIONS(5425), + [anon_sym_PIPE_AMP] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym_AMP_GT] = ACTIONS(5425), + [anon_sym_AMP_GT_GT] = ACTIONS(5425), + [anon_sym_LT_AMP] = ACTIONS(5425), + [anon_sym_GT_AMP] = ACTIONS(5425), + [sym__special_characters] = ACTIONS(5425), + [anon_sym_DQUOTE] = ACTIONS(5425), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), + [anon_sym_BQUOTE] = ACTIONS(5425), + [anon_sym_LT_LPAREN] = ACTIONS(5425), + [anon_sym_GT_LPAREN] = ACTIONS(5425), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LF] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5425), + }, + [2402] = { + [sym_file_descriptor] = ACTIONS(5427), + [sym__concat] = ACTIONS(5427), + [sym_variable_name] = ACTIONS(5427), + [anon_sym_esac] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5429), + [anon_sym_SEMI_SEMI] = ACTIONS(5429), + [anon_sym_PIPE_AMP] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym_AMP_GT] = ACTIONS(5429), + [anon_sym_AMP_GT_GT] = ACTIONS(5429), + [anon_sym_LT_AMP] = ACTIONS(5429), + [anon_sym_GT_AMP] = ACTIONS(5429), + [sym__special_characters] = ACTIONS(5429), + [anon_sym_DQUOTE] = ACTIONS(5429), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), + [anon_sym_BQUOTE] = ACTIONS(5429), + [anon_sym_LT_LPAREN] = ACTIONS(5429), + [anon_sym_GT_LPAREN] = ACTIONS(5429), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5429), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LF] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5429), + }, + [2403] = { + [aux_sym_concatenation_repeat1] = STATE(2546), + [sym_file_descriptor] = ACTIONS(1145), + [sym__concat] = ACTIONS(1147), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_esac] = ACTIONS(1149), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_SEMI_SEMI] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1149), + [anon_sym_PIPE_PIPE] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1149), + [anon_sym_GT_GT] = ACTIONS(1149), + [anon_sym_AMP_GT] = ACTIONS(1149), + [anon_sym_AMP_GT_GT] = ACTIONS(1149), + [anon_sym_LT_AMP] = ACTIONS(1149), + [anon_sym_GT_AMP] = ACTIONS(1149), + [sym__special_characters] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), + [anon_sym_BQUOTE] = ACTIONS(1149), + [anon_sym_LT_LPAREN] = ACTIONS(1149), + [anon_sym_GT_LPAREN] = ACTIONS(1149), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1149), + }, + [2404] = { + [aux_sym_concatenation_repeat1] = STATE(2546), + [sym_file_descriptor] = ACTIONS(1123), + [sym__concat] = ACTIONS(1147), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_esac] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_SEMI_SEMI] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1125), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(1125), + [anon_sym_LT_AMP] = ACTIONS(1125), + [anon_sym_GT_AMP] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1125), + [anon_sym_GT_LPAREN] = ACTIONS(1125), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_LF] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + }, + [2405] = { + [sym_file_redirect] = STATE(2547), + [sym_heredoc_redirect] = STATE(2547), + [sym_heredoc_body] = STATE(603), + [sym_herestring_redirect] = STATE(2547), + [aux_sym_while_statement_repeat1] = STATE(2547), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(5219), + [anon_sym_esac] = ACTIONS(1181), + [anon_sym_PIPE] = ACTIONS(1181), + [anon_sym_SEMI_SEMI] = ACTIONS(1181), + [anon_sym_PIPE_AMP] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1181), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_GT] = ACTIONS(5223), + [anon_sym_AMP_GT] = ACTIONS(5223), + [anon_sym_AMP_GT_GT] = ACTIONS(5223), + [anon_sym_LT_AMP] = ACTIONS(5223), + [anon_sym_GT_AMP] = ACTIONS(5223), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(5225), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_LF] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1181), + }, + [2406] = { + [anon_sym_RPAREN] = ACTIONS(5864), + [sym_comment] = ACTIONS(53), + }, + [2407] = { + [sym_file_redirect] = STATE(643), + [sym_file_descriptor] = ACTIONS(5866), + [anon_sym_esac] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_SEMI_SEMI] = ACTIONS(1253), + [anon_sym_PIPE_AMP] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_GT] = ACTIONS(5868), + [anon_sym_GT_GT] = ACTIONS(5868), + [anon_sym_AMP_GT] = ACTIONS(5868), + [anon_sym_AMP_GT_GT] = ACTIONS(5868), + [anon_sym_LT_AMP] = ACTIONS(5868), + [anon_sym_GT_AMP] = ACTIONS(5868), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1253), + }, + [2408] = { + [sym_file_redirect] = STATE(2554), + [sym_heredoc_redirect] = STATE(2554), + [sym_herestring_redirect] = STATE(2554), + [aux_sym_while_statement_repeat1] = STATE(2554), + [sym_file_descriptor] = ACTIONS(5870), + [anon_sym_esac] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_SEMI_SEMI] = ACTIONS(1363), + [anon_sym_PIPE_AMP] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE_PIPE] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(5872), + [anon_sym_GT] = ACTIONS(5872), + [anon_sym_GT_GT] = ACTIONS(5872), + [anon_sym_AMP_GT] = ACTIONS(5872), + [anon_sym_AMP_GT_GT] = ACTIONS(5872), + [anon_sym_LT_AMP] = ACTIONS(5872), + [anon_sym_GT_AMP] = ACTIONS(5872), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_LT_LT_DASH] = ACTIONS(1367), + [anon_sym_LT_LT_LT] = ACTIONS(5874), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_LF] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1363), + }, + [2409] = { + [sym_concatenation] = STATE(2555), + [sym_string] = STATE(2558), + [sym_array] = STATE(2555), + [sym_simple_expansion] = STATE(2558), + [sym_string_expansion] = STATE(2558), + [sym_expansion] = STATE(2558), + [sym_command_substitution] = STATE(2558), + [sym_process_substitution] = STATE(2558), + [sym__empty_value] = ACTIONS(5876), + [anon_sym_LPAREN] = ACTIONS(5878), + [sym__special_characters] = ACTIONS(5880), + [anon_sym_DQUOTE] = ACTIONS(5621), + [anon_sym_DOLLAR] = ACTIONS(5179), + [sym_raw_string] = ACTIONS(5882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5886), + [anon_sym_BQUOTE] = ACTIONS(5888), + [anon_sym_LT_LPAREN] = ACTIONS(5890), + [anon_sym_GT_LPAREN] = ACTIONS(5890), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5882), + }, + [2410] = { + [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(5892), + [anon_sym_DQUOTE] = ACTIONS(5621), + [anon_sym_DOLLAR] = ACTIONS(5179), + [sym_raw_string] = ACTIONS(5892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5886), + [anon_sym_BQUOTE] = ACTIONS(5888), + [anon_sym_LT_LPAREN] = ACTIONS(5890), + [anon_sym_GT_LPAREN] = ACTIONS(5890), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5892), + }, + [2411] = { + [aux_sym_concatenation_repeat1] = STATE(2560), + [sym__concat] = ACTIONS(5615), + [sym_variable_name] = ACTIONS(705), + [anon_sym_esac] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [2412] = { + [sym__concat] = ACTIONS(709), + [sym_variable_name] = ACTIONS(709), + [anon_sym_esac] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(711), + [anon_sym_PIPE_AMP] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(711), + [anon_sym_PIPE_PIPE] = ACTIONS(711), + [sym__special_characters] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), + [anon_sym_BQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(711), + [anon_sym_GT_LPAREN] = ACTIONS(711), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + }, + [2413] = { + [anon_sym_DQUOTE] = ACTIONS(5894), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [2414] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(5872), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(5894), + [anon_sym_DOLLAR] = ACTIONS(5896), [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), }, - [2386] = { - [sym__concat] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), + [2415] = { + [sym__concat] = ACTIONS(741), + [sym_variable_name] = ACTIONS(741), + [anon_sym_esac] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [sym__special_characters] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), + [anon_sym_BQUOTE] = ACTIONS(743), + [anon_sym_LT_LPAREN] = ACTIONS(743), + [anon_sym_GT_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), - [sym_word] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), + [sym_word] = ACTIONS(743), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), }, - [2387] = { - [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), - [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), + [2416] = { + [sym__concat] = ACTIONS(745), + [sym_variable_name] = ACTIONS(745), + [anon_sym_esac] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_PIPE_AMP] = ACTIONS(747), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [anon_sym_LT_LPAREN] = ACTIONS(747), + [anon_sym_GT_LPAREN] = ACTIONS(747), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [sym_word] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(747), }, - [2388] = { - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), + [2417] = { + [sym__concat] = ACTIONS(749), + [sym_variable_name] = ACTIONS(749), + [anon_sym_esac] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_PIPE_AMP] = ACTIONS(751), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), + [sym__special_characters] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), + [anon_sym_BQUOTE] = ACTIONS(751), + [anon_sym_LT_LPAREN] = ACTIONS(751), + [anon_sym_GT_LPAREN] = ACTIONS(751), [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), + [sym_word] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(751), }, - [2389] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(5874), + [2418] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(5898), [sym_comment] = ACTIONS(53), }, - [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(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(5880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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), - }, - [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(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(5896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2544), + [2419] = { + [sym_concatenation] = STATE(2566), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2566), [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), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(5904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [aux_sym_SLASH] = ACTIONS(5906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [2394] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5908), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [2420] = { + [sym_subscript] = STATE(2570), + [sym_variable_name] = ACTIONS(5908), + [anon_sym_DOLLAR] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5912), + [anon_sym_STAR] = ACTIONS(5910), + [anon_sym_AT] = ACTIONS(5910), + [anon_sym_QMARK] = ACTIONS(5910), + [anon_sym_0] = ACTIONS(5914), + [anon_sym__] = ACTIONS(5914), + }, + [2421] = { + [sym_concatenation] = STATE(2573), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2573), + [anon_sym_RBRACE] = ACTIONS(5916), + [anon_sym_EQ] = ACTIONS(5918), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5922), + [anon_sym_COLON] = ACTIONS(5918), + [anon_sym_COLON_QMARK] = ACTIONS(5918), + [anon_sym_COLON_DASH] = ACTIONS(5918), + [anon_sym_PERCENT] = ACTIONS(5918), + [anon_sym_DASH] = ACTIONS(5918), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2422] = { + [sym_concatenation] = STATE(2576), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2576), + [anon_sym_RBRACE] = ACTIONS(5924), + [anon_sym_EQ] = ACTIONS(5926), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5930), + [anon_sym_COLON] = ACTIONS(5926), + [anon_sym_COLON_QMARK] = ACTIONS(5926), + [anon_sym_COLON_DASH] = ACTIONS(5926), + [anon_sym_PERCENT] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5926), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2423] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(5932), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [sym_comment] = ACTIONS(53), }, - [2395] = { + [2424] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5908), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(5932), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -61233,21 +61694,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [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(5908), + [2425] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(5932), [sym_comment] = ACTIONS(53), }, - [2397] = { + [2426] = { [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_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -61261,28 +61722,28 @@ 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(5908), + [anon_sym_BQUOTE] = ACTIONS(5932), [anon_sym_LT_LPAREN] = ACTIONS(369), [anon_sym_GT_LPAREN] = ACTIONS(369), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [2398] = { - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5910), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [2427] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(5934), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [sym_comment] = ACTIONS(53), }, - [2399] = { + [2428] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(5910), - [anon_sym_PIPE_AMP] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(5934), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(369), @@ -61302,102 +61763,515 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(369), }, - [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), + [2429] = { + [sym_variable_assignment] = STATE(2429), + [sym_subscript] = STATE(2214), + [sym_concatenation] = STATE(2429), + [sym_string] = STATE(2208), + [sym_simple_expansion] = STATE(2208), + [sym_string_expansion] = STATE(2208), + [sym_expansion] = STATE(2208), + [sym_command_substitution] = STATE(2208), + [sym_process_substitution] = STATE(2208), + [aux_sym_declaration_command_repeat1] = STATE(2429), + [sym_variable_name] = ACTIONS(5936), + [anon_sym_esac] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_SEMI_SEMI] = ACTIONS(1514), + [anon_sym_PIPE_AMP] = ACTIONS(1514), + [anon_sym_AMP_AMP] = ACTIONS(1514), + [anon_sym_PIPE_PIPE] = ACTIONS(1514), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5942), + [anon_sym_DOLLAR] = ACTIONS(5945), + [sym_raw_string] = ACTIONS(5948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5954), + [anon_sym_BQUOTE] = ACTIONS(5957), + [anon_sym_LT_LPAREN] = ACTIONS(5960), + [anon_sym_GT_LPAREN] = ACTIONS(5960), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5963), + [sym_word] = ACTIONS(5948), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_LF] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1514), }, - [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), + [2430] = { + [sym_string] = STATE(2579), + [sym_simple_expansion] = STATE(2579), + [sym_string_expansion] = STATE(2579), + [sym_expansion] = STATE(2579), + [sym_command_substitution] = STATE(2579), + [sym_process_substitution] = STATE(2579), + [sym__special_characters] = ACTIONS(5966), + [anon_sym_DQUOTE] = ACTIONS(5647), + [anon_sym_DOLLAR] = ACTIONS(5197), + [sym_raw_string] = ACTIONS(5966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5970), + [anon_sym_BQUOTE] = ACTIONS(5972), + [anon_sym_LT_LPAREN] = ACTIONS(5974), + [anon_sym_GT_LPAREN] = ACTIONS(5974), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5966), + }, + [2431] = { + [aux_sym_concatenation_repeat1] = STATE(2580), + [sym__concat] = ACTIONS(5641), + [anon_sym_esac] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, - [2402] = { - [sym_compound_statement] = STATE(2547), - [anon_sym_LBRACE] = ACTIONS(455), + [2432] = { + [sym__concat] = ACTIONS(709), + [anon_sym_esac] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(711), + [anon_sym_PIPE_AMP] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(711), + [anon_sym_PIPE_PIPE] = ACTIONS(711), + [sym__special_characters] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), + [anon_sym_BQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(711), + [anon_sym_GT_LPAREN] = ACTIONS(711), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + }, + [2433] = { + [anon_sym_DQUOTE] = ACTIONS(5976), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [2434] = { + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(5976), + [anon_sym_DOLLAR] = ACTIONS(5978), + [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), + }, + [2435] = { + [sym__concat] = ACTIONS(741), + [anon_sym_esac] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [sym__special_characters] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(743), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(743), + [anon_sym_BQUOTE] = ACTIONS(743), + [anon_sym_LT_LPAREN] = ACTIONS(743), + [anon_sym_GT_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), + [sym_word] = ACTIONS(743), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), + }, + [2436] = { + [sym__concat] = ACTIONS(745), + [anon_sym_esac] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_PIPE_AMP] = ACTIONS(747), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(747), + [sym_raw_string] = ACTIONS(747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [anon_sym_LT_LPAREN] = ACTIONS(747), + [anon_sym_GT_LPAREN] = ACTIONS(747), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), + [sym_word] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(747), + }, + [2437] = { + [sym__concat] = ACTIONS(749), + [anon_sym_esac] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_PIPE_AMP] = ACTIONS(751), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), + [sym__special_characters] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), + [anon_sym_BQUOTE] = ACTIONS(751), + [anon_sym_LT_LPAREN] = ACTIONS(751), + [anon_sym_GT_LPAREN] = ACTIONS(751), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), + [sym_word] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(751), + }, + [2438] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(5980), [sym_comment] = ACTIONS(53), }, - [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), + [2439] = { + [sym_concatenation] = STATE(2586), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2586), + [anon_sym_RBRACE] = ACTIONS(5982), + [anon_sym_EQ] = ACTIONS(5984), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(5986), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(5988), + [anon_sym_COLON] = ACTIONS(5984), + [anon_sym_COLON_QMARK] = ACTIONS(5984), + [anon_sym_COLON_DASH] = ACTIONS(5984), + [anon_sym_PERCENT] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_LF] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2014), + [sym_word] = ACTIONS(781), }, - [2404] = { + [2440] = { + [sym_subscript] = STATE(2590), + [sym_variable_name] = ACTIONS(5990), + [anon_sym_DOLLAR] = ACTIONS(5992), + [anon_sym_DASH] = ACTIONS(5992), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5994), + [anon_sym_STAR] = ACTIONS(5992), + [anon_sym_AT] = ACTIONS(5992), + [anon_sym_QMARK] = ACTIONS(5992), + [anon_sym_0] = ACTIONS(5996), + [anon_sym__] = ACTIONS(5996), + }, + [2441] = { + [sym_concatenation] = STATE(2593), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2593), + [anon_sym_RBRACE] = ACTIONS(5998), + [anon_sym_EQ] = ACTIONS(6000), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6004), + [anon_sym_COLON] = ACTIONS(6000), + [anon_sym_COLON_QMARK] = ACTIONS(6000), + [anon_sym_COLON_DASH] = ACTIONS(6000), + [anon_sym_PERCENT] = ACTIONS(6000), + [anon_sym_DASH] = ACTIONS(6000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2442] = { + [sym_concatenation] = STATE(2596), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2596), + [anon_sym_RBRACE] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(6008), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6012), + [anon_sym_COLON] = ACTIONS(6008), + [anon_sym_COLON_QMARK] = ACTIONS(6008), + [anon_sym_COLON_DASH] = ACTIONS(6008), + [anon_sym_PERCENT] = ACTIONS(6008), + [anon_sym_DASH] = ACTIONS(6008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2443] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(6014), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [2444] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), - [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_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(6014), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [2445] = { + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6014), + [sym_comment] = ACTIONS(53), + }, + [2446] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(6014), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), + }, + [2447] = { + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(6016), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), + }, + [2448] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(6016), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), + }, + [2449] = { + [sym_concatenation] = STATE(2449), + [sym_string] = STATE(2219), + [sym_simple_expansion] = STATE(2219), + [sym_string_expansion] = STATE(2219), + [sym_expansion] = STATE(2219), + [sym_command_substitution] = STATE(2219), + [sym_process_substitution] = STATE(2219), + [aux_sym_unset_command_repeat1] = STATE(2449), + [anon_sym_esac] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_SEMI_SEMI] = ACTIONS(1597), + [anon_sym_PIPE_AMP] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [sym__special_characters] = ACTIONS(6018), + [anon_sym_DQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(6024), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), + [anon_sym_BQUOTE] = ACTIONS(6036), + [anon_sym_LT_LPAREN] = ACTIONS(6039), + [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6042), + [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_LF] = ACTIONS(1626), + [anon_sym_AMP] = ACTIONS(1597), + }, + [2450] = { + [aux_sym_concatenation_repeat1] = STATE(2450), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1676), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_EQ_TILDE] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [2451] = { + [sym_compound_statement] = STATE(2599), + [anon_sym_LBRACE] = ACTIONS(457), + [sym_comment] = ACTIONS(53), + }, + [2452] = { + [anon_sym_esac] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(2054), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(2054), + [anon_sym_PIPE_PIPE] = ACTIONS(2054), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + }, + [2453] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_esac] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(2054), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(2054), + [anon_sym_PIPE_PIPE] = ACTIONS(2054), [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -61416,54 +62290,2737 @@ 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(2014), - [anon_sym_LF] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, - [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), + [2454] = { + [sym_concatenation] = STATE(1002), + [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(6045), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5941), + [sym_raw_string] = ACTIONS(6047), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5941), + [sym_word] = ACTIONS(6047), }, - [2406] = { - [aux_sym_concatenation_repeat1] = STATE(2181), - [sym__simple_heredoc_body] = ACTIONS(2046), - [sym__heredoc_body_beginning] = ACTIONS(2046), - [sym_file_descriptor] = ACTIONS(2046), + [2455] = { + [aux_sym_concatenation_repeat1] = STATE(2226), + [sym__simple_heredoc_body] = ACTIONS(2086), + [sym__heredoc_body_beginning] = ACTIONS(2086), + [sym_file_descriptor] = ACTIONS(2086), [sym__concat] = ACTIONS(223), + [anon_sym_esac] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_SEMI_SEMI] = ACTIONS(2088), + [anon_sym_PIPE_AMP] = ACTIONS(2088), + [anon_sym_AMP_AMP] = ACTIONS(2088), + [anon_sym_PIPE_PIPE] = ACTIONS(2088), + [anon_sym_EQ_TILDE] = ACTIONS(2088), + [anon_sym_EQ_EQ] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(2088), + [anon_sym_AMP_GT] = ACTIONS(2088), + [anon_sym_AMP_GT_GT] = ACTIONS(2088), + [anon_sym_LT_AMP] = ACTIONS(2088), + [anon_sym_GT_AMP] = ACTIONS(2088), + [anon_sym_LT_LT] = ACTIONS(2088), + [anon_sym_LT_LT_DASH] = ACTIONS(2088), + [anon_sym_LT_LT_LT] = ACTIONS(2088), + [sym__special_characters] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [anon_sym_DOLLAR] = ACTIONS(2088), + [sym_raw_string] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2088), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2088), + [anon_sym_BQUOTE] = ACTIONS(2088), + [anon_sym_LT_LPAREN] = ACTIONS(2088), + [anon_sym_GT_LPAREN] = ACTIONS(2088), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_LF] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2088), + }, + [2456] = { + [aux_sym_concatenation_repeat1] = STATE(2226), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [sym__concat] = ACTIONS(223), + [anon_sym_esac] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_SEMI_SEMI] = ACTIONS(2092), + [anon_sym_PIPE_AMP] = ACTIONS(2092), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_EQ_TILDE] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2092), + [anon_sym_LT_AMP] = ACTIONS(2092), + [anon_sym_GT_AMP] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2092), + [anon_sym_LT_LT_LT] = ACTIONS(2092), + [sym__special_characters] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2092), + [sym_raw_string] = ACTIONS(2092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2092), + [anon_sym_BQUOTE] = ACTIONS(2092), + [anon_sym_LT_LPAREN] = ACTIONS(2092), + [anon_sym_GT_LPAREN] = ACTIONS(2092), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_LF] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2092), + }, + [2457] = { + [aux_sym_concatenation_repeat1] = STATE(2602), + [sym__simple_heredoc_body] = ACTIONS(671), + [sym__heredoc_body_beginning] = ACTIONS(671), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(223), + [anon_sym_esac] = ACTIONS(675), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(675), + [anon_sym_GT_AMP] = ACTIONS(675), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(675), + [anon_sym_LT_LT_LT] = ACTIONS(675), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(675), + }, + [2458] = { + [aux_sym_concatenation_repeat1] = STATE(2602), + [sym__simple_heredoc_body] = ACTIONS(689), + [sym__heredoc_body_beginning] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(223), + [anon_sym_esac] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(691), + [anon_sym_LT_AMP] = ACTIONS(691), + [anon_sym_GT_AMP] = ACTIONS(691), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(691), + [anon_sym_LT_LT_LT] = ACTIONS(691), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + }, + [2459] = { + [aux_sym_concatenation_repeat1] = STATE(2602), + [sym__simple_heredoc_body] = ACTIONS(2098), + [sym__heredoc_body_beginning] = ACTIONS(2098), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(223), + [anon_sym_esac] = ACTIONS(2100), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_SEMI_SEMI] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(2100), + [anon_sym_PIPE_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2100), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2100), + [anon_sym_LT_AMP] = ACTIONS(2100), + [anon_sym_GT_AMP] = ACTIONS(2100), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2100), + [anon_sym_LT_LT_LT] = ACTIONS(2100), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_LF] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2100), + }, + [2460] = { + [aux_sym_concatenation_repeat1] = STATE(2602), + [sym__simple_heredoc_body] = ACTIONS(2102), + [sym__heredoc_body_beginning] = ACTIONS(2102), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(223), + [anon_sym_esac] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2104), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2104), + [anon_sym_LT_AMP] = ACTIONS(2104), + [anon_sym_GT_AMP] = ACTIONS(2104), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2104), + [anon_sym_LT_LT_LT] = ACTIONS(2104), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LF] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2104), + }, + [2461] = { + [sym_file_redirect] = STATE(2461), + [sym_heredoc_redirect] = STATE(2461), + [sym_herestring_redirect] = STATE(2461), + [aux_sym_while_statement_repeat1] = STATE(2461), + [sym__simple_heredoc_body] = ACTIONS(2110), + [sym__heredoc_body_beginning] = ACTIONS(2110), + [sym_file_descriptor] = ACTIONS(6049), + [anon_sym_esac] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_SEMI_SEMI] = ACTIONS(2115), + [anon_sym_PIPE_AMP] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(6052), + [anon_sym_GT] = ACTIONS(6052), + [anon_sym_GT_GT] = ACTIONS(6052), + [anon_sym_AMP_GT] = ACTIONS(6052), + [anon_sym_AMP_GT_GT] = ACTIONS(6052), + [anon_sym_LT_AMP] = ACTIONS(6052), + [anon_sym_GT_AMP] = ACTIONS(6052), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_LT_LT_DASH] = ACTIONS(2120), + [anon_sym_LT_LT_LT] = ACTIONS(6055), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2115), + }, + [2462] = { + [sym_file_redirect] = STATE(2461), + [sym_heredoc_redirect] = STATE(2461), + [sym_heredoc_body] = STATE(1004), + [sym_herestring_redirect] = STATE(2461), + [aux_sym_while_statement_repeat1] = STATE(2461), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(5219), + [anon_sym_esac] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_SEMI_SEMI] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_PIPE_PIPE] = ACTIONS(2106), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_GT] = ACTIONS(5223), + [anon_sym_AMP_GT] = ACTIONS(5223), + [anon_sym_AMP_GT_GT] = ACTIONS(5223), + [anon_sym_LT_AMP] = ACTIONS(5223), + [anon_sym_GT_AMP] = ACTIONS(5223), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(5225), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2106), + }, + [2463] = { + [sym_concatenation] = STATE(2463), + [sym_string] = STATE(2236), + [sym_simple_expansion] = STATE(2236), + [sym_string_expansion] = STATE(2236), + [sym_expansion] = STATE(2236), + [sym_command_substitution] = STATE(2236), + [sym_process_substitution] = STATE(2236), + [aux_sym_command_repeat2] = STATE(2463), + [sym__simple_heredoc_body] = ACTIONS(2090), + [sym__heredoc_body_beginning] = ACTIONS(2090), + [sym_file_descriptor] = ACTIONS(2090), + [anon_sym_esac] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_SEMI_SEMI] = ACTIONS(2092), + [anon_sym_PIPE_AMP] = ACTIONS(2092), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_EQ_TILDE] = ACTIONS(6058), + [anon_sym_EQ_EQ] = ACTIONS(6058), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2092), + [anon_sym_AMP_GT] = ACTIONS(2092), + [anon_sym_AMP_GT_GT] = ACTIONS(2092), + [anon_sym_LT_AMP] = ACTIONS(2092), + [anon_sym_GT_AMP] = ACTIONS(2092), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_LT_LT_DASH] = ACTIONS(2092), + [anon_sym_LT_LT_LT] = ACTIONS(2092), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2135), + [sym_raw_string] = ACTIONS(6064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2141), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2144), + [anon_sym_BQUOTE] = ACTIONS(2147), + [anon_sym_LT_LPAREN] = ACTIONS(2150), + [anon_sym_GT_LPAREN] = ACTIONS(2150), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(6064), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_LF] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2092), + }, + [2464] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_esac] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(6069), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6069), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6069), + }, + [2465] = { + [sym_file_redirect] = STATE(2603), + [sym_heredoc_redirect] = STATE(2603), + [sym_heredoc_body] = STATE(1004), + [sym_herestring_redirect] = STATE(2603), + [sym_concatenation] = STATE(2463), + [sym_string] = STATE(2236), + [sym_simple_expansion] = STATE(2236), + [sym_string_expansion] = STATE(2236), + [sym_expansion] = STATE(2236), + [sym_command_substitution] = STATE(2236), + [sym_process_substitution] = STATE(2236), + [aux_sym_while_statement_repeat1] = STATE(2603), + [aux_sym_command_repeat2] = STATE(2463), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(5219), + [anon_sym_esac] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_SEMI_SEMI] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_PIPE_PIPE] = ACTIONS(2106), + [anon_sym_EQ_TILDE] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_GT] = ACTIONS(5223), + [anon_sym_AMP_GT] = ACTIONS(5223), + [anon_sym_AMP_GT_GT] = ACTIONS(5223), + [anon_sym_LT_AMP] = ACTIONS(5223), + [anon_sym_GT_AMP] = ACTIONS(5223), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(5225), + [sym__special_characters] = ACTIONS(5227), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5229), + [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(5229), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2106), + }, + [2466] = { + [anon_sym_esac] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6071), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6069), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6069), + }, + [2467] = { + [anon_sym_esac] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2468] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_esac] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [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), + }, + [2469] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_esac] = ACTIONS(6075), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6079), + [anon_sym_BQUOTE] = ACTIONS(6079), + [anon_sym_LT_LPAREN] = ACTIONS(6079), + [anon_sym_GT_LPAREN] = ACTIONS(6079), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6077), + }, + [2470] = { + [anon_sym_esac] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6079), + [anon_sym_DQUOTE] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6079), + [anon_sym_BQUOTE] = ACTIONS(6079), + [anon_sym_LT_LPAREN] = ACTIONS(6079), + [anon_sym_GT_LPAREN] = ACTIONS(6079), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6077), + }, + [2471] = { + [anon_sym_esac] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(6081), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2472] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_esac] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_SEMI_SEMI] = ACTIONS(6081), + [anon_sym_PIPE_AMP] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5217), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [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), + }, + [2473] = { + [sym__special_characters] = ACTIONS(5167), + [anon_sym_DQUOTE] = ACTIONS(5167), + [anon_sym_DOLLAR] = ACTIONS(5169), + [sym_raw_string] = ACTIONS(5167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5167), + [anon_sym_BQUOTE] = ACTIONS(5167), + [anon_sym_LT_LPAREN] = ACTIONS(5167), + [anon_sym_GT_LPAREN] = ACTIONS(5167), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5167), + }, + [2474] = { + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(6083), + [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(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2475] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(6083), + [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(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2476] = { + [sym__terminated_statement] = STATE(2610), + [sym_for_statement] = STATE(2608), + [sym_while_statement] = STATE(2608), + [sym_if_statement] = STATE(2608), + [sym_case_statement] = STATE(2608), + [sym_function_definition] = STATE(2608), + [sym_subshell] = STATE(2608), + [sym_pipeline] = STATE(2608), + [sym_list] = STATE(2608), + [sym_negated_command] = STATE(2608), + [sym_test_command] = STATE(2608), + [sym_declaration_command] = STATE(2608), + [sym_unset_command] = STATE(2608), + [sym_command] = STATE(2608), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2609), + [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(2610), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6085), + [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), + }, + [2477] = { + [sym__terminated_statement] = STATE(2611), + [sym_for_statement] = STATE(2608), + [sym_while_statement] = STATE(2608), + [sym_if_statement] = STATE(2608), + [sym_case_statement] = STATE(2608), + [sym_function_definition] = STATE(2608), + [sym_subshell] = STATE(2608), + [sym_pipeline] = STATE(2608), + [sym_list] = STATE(2608), + [sym_negated_command] = STATE(2608), + [sym_test_command] = STATE(2608), + [sym_declaration_command] = STATE(2608), + [sym_unset_command] = STATE(2608), + [sym_command] = STATE(2608), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2609), + [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(2611), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6085), + [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), + }, + [2478] = { + [sym__special_characters] = ACTIONS(5240), + [anon_sym_DQUOTE] = ACTIONS(5240), + [anon_sym_DOLLAR] = ACTIONS(5242), + [sym_raw_string] = ACTIONS(5240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5240), + [anon_sym_BQUOTE] = ACTIONS(5240), + [anon_sym_LT_LPAREN] = ACTIONS(5240), + [anon_sym_GT_LPAREN] = ACTIONS(5240), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5240), + }, + [2479] = { + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(6087), + [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(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2480] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(6087), + [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(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2481] = { + [sym__terminated_statement] = STATE(2610), + [sym_for_statement] = STATE(2614), + [sym_while_statement] = STATE(2614), + [sym_if_statement] = STATE(2614), + [sym_case_statement] = STATE(2614), + [sym_function_definition] = STATE(2614), + [sym_subshell] = STATE(2614), + [sym_pipeline] = STATE(2614), + [sym_list] = STATE(2614), + [sym_negated_command] = STATE(2614), + [sym_test_command] = STATE(2614), + [sym_declaration_command] = STATE(2614), + [sym_unset_command] = STATE(2614), + [sym_command] = STATE(2614), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2615), + [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(2610), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6089), + [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), + }, + [2482] = { + [sym__terminated_statement] = STATE(2616), + [sym_for_statement] = STATE(2614), + [sym_while_statement] = STATE(2614), + [sym_if_statement] = STATE(2614), + [sym_case_statement] = STATE(2614), + [sym_function_definition] = STATE(2614), + [sym_subshell] = STATE(2614), + [sym_pipeline] = STATE(2614), + [sym_list] = STATE(2614), + [sym_negated_command] = STATE(2614), + [sym_test_command] = STATE(2614), + [sym_declaration_command] = STATE(2614), + [sym_unset_command] = STATE(2614), + [sym_command] = STATE(2614), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2615), + [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(2616), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(6089), + [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), + }, + [2483] = { + [sym_file_descriptor] = ACTIONS(3905), + [sym__concat] = ACTIONS(3905), + [anon_sym_esac] = ACTIONS(3907), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3907), + [anon_sym_SEMI_SEMI] = ACTIONS(3907), + [anon_sym_PIPE_AMP] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_GT_GT] = ACTIONS(3907), + [anon_sym_AMP_GT] = ACTIONS(3907), + [anon_sym_AMP_GT_GT] = ACTIONS(3907), + [anon_sym_LT_AMP] = ACTIONS(3907), + [anon_sym_GT_AMP] = ACTIONS(3907), + [anon_sym_LT_LT] = ACTIONS(3907), + [anon_sym_LT_LT_DASH] = ACTIONS(3907), + [anon_sym_LT_LT_LT] = ACTIONS(3907), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + }, + [2484] = { + [sym_file_descriptor] = ACTIONS(3913), + [sym__concat] = ACTIONS(3913), + [anon_sym_esac] = ACTIONS(3915), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_SEMI_SEMI] = ACTIONS(3915), + [anon_sym_PIPE_AMP] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [anon_sym_LT] = ACTIONS(3915), + [anon_sym_GT] = ACTIONS(3915), + [anon_sym_GT_GT] = ACTIONS(3915), + [anon_sym_AMP_GT] = ACTIONS(3915), + [anon_sym_AMP_GT_GT] = ACTIONS(3915), + [anon_sym_LT_AMP] = ACTIONS(3915), + [anon_sym_GT_AMP] = ACTIONS(3915), + [anon_sym_LT_LT] = ACTIONS(3915), + [anon_sym_LT_LT_DASH] = ACTIONS(3915), + [anon_sym_LT_LT_LT] = ACTIONS(3915), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3915), + }, + [2485] = { + [sym_file_descriptor] = ACTIONS(4000), + [sym__concat] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_SEMI_SEMI] = ACTIONS(4002), + [anon_sym_PIPE_AMP] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4002), + [anon_sym_AMP_GT] = ACTIONS(4002), + [anon_sym_AMP_GT_GT] = ACTIONS(4002), + [anon_sym_LT_AMP] = ACTIONS(4002), + [anon_sym_GT_AMP] = ACTIONS(4002), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_LT_LT_DASH] = ACTIONS(4002), + [anon_sym_LT_LT_LT] = ACTIONS(4002), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4002), + }, + [2486] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6091), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2487] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6093), + [sym_comment] = ACTIONS(53), + }, + [2488] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6095), + [sym_comment] = ACTIONS(53), + }, + [2489] = { + [anon_sym_RBRACE] = ACTIONS(6095), + [sym_comment] = ACTIONS(53), + }, + [2490] = { + [sym_concatenation] = STATE(2621), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2621), + [anon_sym_RBRACE] = ACTIONS(6097), + [anon_sym_EQ] = ACTIONS(6099), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6099), + [anon_sym_COLON_QMARK] = ACTIONS(6099), + [anon_sym_COLON_DASH] = ACTIONS(6099), + [anon_sym_PERCENT] = ACTIONS(6099), + [anon_sym_DASH] = ACTIONS(6099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2491] = { + [sym_file_descriptor] = ACTIONS(4016), + [sym__concat] = ACTIONS(4016), + [anon_sym_esac] = ACTIONS(4018), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4018), + [anon_sym_SEMI_SEMI] = ACTIONS(4018), + [anon_sym_PIPE_AMP] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_PIPE_PIPE] = ACTIONS(4018), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_GT_GT] = ACTIONS(4018), + [anon_sym_AMP_GT] = ACTIONS(4018), + [anon_sym_AMP_GT_GT] = ACTIONS(4018), + [anon_sym_LT_AMP] = ACTIONS(4018), + [anon_sym_GT_AMP] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4018), + [anon_sym_LT_LT_DASH] = ACTIONS(4018), + [anon_sym_LT_LT_LT] = ACTIONS(4018), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4018), + }, + [2492] = { + [sym_concatenation] = STATE(2623), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2623), + [anon_sym_RBRACE] = ACTIONS(6103), + [anon_sym_EQ] = ACTIONS(6105), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_COLON_QMARK] = ACTIONS(6105), + [anon_sym_COLON_DASH] = ACTIONS(6105), + [anon_sym_PERCENT] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2493] = { + [sym_file_descriptor] = ACTIONS(4026), + [sym__concat] = ACTIONS(4026), + [anon_sym_esac] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_SEMI_SEMI] = ACTIONS(4028), + [anon_sym_PIPE_AMP] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4028), + [anon_sym_AMP_GT] = ACTIONS(4028), + [anon_sym_AMP_GT_GT] = ACTIONS(4028), + [anon_sym_LT_AMP] = ACTIONS(4028), + [anon_sym_GT_AMP] = ACTIONS(4028), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_LT_LT_DASH] = ACTIONS(4028), + [anon_sym_LT_LT_LT] = ACTIONS(4028), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4028), + }, + [2494] = { + [sym_concatenation] = STATE(2625), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2625), + [anon_sym_RBRACE] = ACTIONS(6109), + [anon_sym_EQ] = ACTIONS(6111), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6113), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6111), + [anon_sym_COLON_QMARK] = ACTIONS(6111), + [anon_sym_COLON_DASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2495] = { + [sym_file_descriptor] = ACTIONS(4036), + [sym__concat] = ACTIONS(4036), + [anon_sym_esac] = ACTIONS(4038), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4038), + [anon_sym_SEMI_SEMI] = ACTIONS(4038), + [anon_sym_PIPE_AMP] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_PIPE_PIPE] = ACTIONS(4038), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_GT_GT] = ACTIONS(4038), + [anon_sym_AMP_GT] = ACTIONS(4038), + [anon_sym_AMP_GT_GT] = ACTIONS(4038), + [anon_sym_LT_AMP] = ACTIONS(4038), + [anon_sym_GT_AMP] = ACTIONS(4038), + [anon_sym_LT_LT] = ACTIONS(4038), + [anon_sym_LT_LT_DASH] = ACTIONS(4038), + [anon_sym_LT_LT_LT] = ACTIONS(4038), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4038), + }, + [2496] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6115), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2497] = { + [sym_file_descriptor] = ACTIONS(4042), + [sym__concat] = ACTIONS(4042), + [anon_sym_esac] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4044), + [anon_sym_AMP_GT] = ACTIONS(4044), + [anon_sym_AMP_GT_GT] = ACTIONS(4044), + [anon_sym_LT_AMP] = ACTIONS(4044), + [anon_sym_GT_AMP] = ACTIONS(4044), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_LT_LT_DASH] = ACTIONS(4044), + [anon_sym_LT_LT_LT] = ACTIONS(4044), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4044), + }, + [2498] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6117), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2499] = { + [sym__concat] = ACTIONS(4831), + [anon_sym_RBRACE] = ACTIONS(4831), + [sym_comment] = ACTIONS(53), + }, + [2500] = { + [sym__concat] = ACTIONS(4835), + [anon_sym_RBRACE] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + }, + [2501] = { + [sym__concat] = ACTIONS(4839), + [anon_sym_RBRACE] = ACTIONS(4839), + [sym_comment] = ACTIONS(53), + }, + [2502] = { + [sym__concat] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + }, + [2503] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6119), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2504] = { + [sym__concat] = ACTIONS(4849), + [anon_sym_RBRACE] = ACTIONS(4849), + [sym_comment] = ACTIONS(53), + }, + [2505] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2506] = { + [sym__concat] = ACTIONS(4855), + [anon_sym_RBRACE] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + }, + [2507] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6123), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2508] = { + [sym__concat] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + }, + [2509] = { + [sym__concat] = ACTIONS(4865), + [anon_sym_RBRACE] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + }, + [2510] = { + [sym__concat] = ACTIONS(5419), + [anon_sym_RBRACE] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5421), + [sym__special_characters] = ACTIONS(5421), + [anon_sym_DQUOTE] = ACTIONS(5419), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5419), + [anon_sym_POUND] = ACTIONS(5419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), + [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(5419), + [anon_sym_BQUOTE] = ACTIONS(5419), + [anon_sym_LT_LPAREN] = ACTIONS(5419), + [anon_sym_GT_LPAREN] = ACTIONS(5419), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5421), + }, + [2511] = { + [sym__concat] = ACTIONS(5423), + [anon_sym_RBRACE] = ACTIONS(5423), + [anon_sym_EQ] = ACTIONS(5425), + [sym__special_characters] = ACTIONS(5425), + [anon_sym_DQUOTE] = ACTIONS(5423), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5423), + [anon_sym_POUND] = ACTIONS(5423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), + [anon_sym_COLON] = ACTIONS(5425), + [anon_sym_COLON_QMARK] = ACTIONS(5425), + [anon_sym_COLON_DASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), + [anon_sym_BQUOTE] = ACTIONS(5423), + [anon_sym_LT_LPAREN] = ACTIONS(5423), + [anon_sym_GT_LPAREN] = ACTIONS(5423), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5425), + }, + [2512] = { + [sym__concat] = ACTIONS(5427), + [anon_sym_RBRACE] = ACTIONS(5427), + [anon_sym_EQ] = ACTIONS(5429), + [sym__special_characters] = ACTIONS(5429), + [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5427), + [anon_sym_POUND] = ACTIONS(5427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_COLON_QMARK] = ACTIONS(5429), + [anon_sym_COLON_DASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), + [anon_sym_BQUOTE] = ACTIONS(5427), + [anon_sym_LT_LPAREN] = ACTIONS(5427), + [anon_sym_GT_LPAREN] = ACTIONS(5427), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(5429), + }, + [2513] = { + [anon_sym_PIPE] = ACTIONS(5713), + [anon_sym_RPAREN] = ACTIONS(5715), + [anon_sym_PIPE_AMP] = ACTIONS(5715), + [anon_sym_AMP_AMP] = ACTIONS(5715), + [anon_sym_PIPE_PIPE] = ACTIONS(5715), + [anon_sym_BQUOTE] = ACTIONS(5715), + [sym_comment] = ACTIONS(53), + }, + [2514] = { + [anon_sym_PIPE] = ACTIONS(5717), + [anon_sym_RPAREN] = ACTIONS(5719), + [anon_sym_PIPE_AMP] = ACTIONS(5719), + [anon_sym_AMP_AMP] = ACTIONS(5719), + [anon_sym_PIPE_PIPE] = ACTIONS(5719), + [anon_sym_BQUOTE] = ACTIONS(5719), + [sym_comment] = ACTIONS(53), + }, + [2515] = { + [sym_file_descriptor] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_GT] = ACTIONS(2758), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_LT_LT_DASH] = ACTIONS(2756), + [anon_sym_LT_LT_LT] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [sym_comment] = ACTIONS(53), + }, + [2516] = { + [sym_file_descriptor] = ACTIONS(2770), + [sym__concat] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2770), + [anon_sym_PIPE_AMP] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_GT_GT] = ACTIONS(2770), + [anon_sym_AMP_GT] = ACTIONS(2772), + [anon_sym_AMP_GT_GT] = ACTIONS(2770), + [anon_sym_LT_AMP] = ACTIONS(2770), + [anon_sym_GT_AMP] = ACTIONS(2770), + [anon_sym_LT_LT] = ACTIONS(2772), + [anon_sym_LT_LT_DASH] = ACTIONS(2770), + [anon_sym_LT_LT_LT] = ACTIONS(2770), + [anon_sym_BQUOTE] = ACTIONS(2770), + [sym_comment] = ACTIONS(53), + }, + [2517] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6125), + [sym_comment] = ACTIONS(53), + }, + [2518] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6127), + [sym_comment] = ACTIONS(53), + }, + [2519] = { + [anon_sym_RBRACE] = ACTIONS(6127), + [sym_comment] = ACTIONS(53), + }, + [2520] = { + [sym_concatenation] = STATE(2634), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2634), + [anon_sym_RBRACE] = ACTIONS(6129), + [anon_sym_EQ] = ACTIONS(6131), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_COLON_QMARK] = ACTIONS(6131), + [anon_sym_COLON_DASH] = ACTIONS(6131), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2521] = { + [sym_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_PIPE_AMP] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2852), + [anon_sym_AMP_GT] = ACTIONS(2854), + [anon_sym_AMP_GT_GT] = ACTIONS(2852), + [anon_sym_LT_AMP] = ACTIONS(2852), + [anon_sym_GT_AMP] = ACTIONS(2852), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_LT_LT_DASH] = ACTIONS(2852), + [anon_sym_LT_LT_LT] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), + }, + [2522] = { + [sym_concatenation] = STATE(2637), + [sym_string] = STATE(2636), + [sym_simple_expansion] = STATE(2636), + [sym_string_expansion] = STATE(2636), + [sym_expansion] = STATE(2636), + [sym_command_substitution] = STATE(2636), + [sym_process_substitution] = STATE(2636), + [anon_sym_RBRACE] = ACTIONS(6127), + [sym__special_characters] = ACTIONS(6135), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6137), + }, + [2523] = { + [sym_file_descriptor] = ACTIONS(2895), + [sym__concat] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_PIPE_AMP] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_GT] = ACTIONS(2897), + [anon_sym_GT_GT] = ACTIONS(2895), + [anon_sym_AMP_GT] = ACTIONS(2897), + [anon_sym_AMP_GT_GT] = ACTIONS(2895), + [anon_sym_LT_AMP] = ACTIONS(2895), + [anon_sym_GT_AMP] = ACTIONS(2895), + [anon_sym_LT_LT] = ACTIONS(2897), + [anon_sym_LT_LT_DASH] = ACTIONS(2895), + [anon_sym_LT_LT_LT] = ACTIONS(2895), + [anon_sym_BQUOTE] = ACTIONS(2895), + [sym_comment] = ACTIONS(53), + }, + [2524] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6139), + }, + [2525] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6141), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2526] = { + [sym_file_descriptor] = ACTIONS(2903), + [sym__concat] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2903), + [anon_sym_PIPE_AMP] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_AMP_GT] = ACTIONS(2905), + [anon_sym_AMP_GT_GT] = ACTIONS(2903), + [anon_sym_LT_AMP] = ACTIONS(2903), + [anon_sym_GT_AMP] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2905), + [anon_sym_LT_LT_DASH] = ACTIONS(2903), + [anon_sym_LT_LT_LT] = ACTIONS(2903), + [anon_sym_BQUOTE] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + }, + [2527] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6143), + }, + [2528] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2529] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6147), + }, + [2530] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6127), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2531] = { + [sym_concatenation] = STATE(2644), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2644), + [anon_sym_RBRACE] = ACTIONS(6149), + [anon_sym_EQ] = ACTIONS(6151), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_COLON_QMARK] = ACTIONS(6151), + [anon_sym_COLON_DASH] = ACTIONS(6151), + [anon_sym_PERCENT] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2532] = { + [sym_file_descriptor] = ACTIONS(2919), + [sym__concat] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_PIPE_AMP] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2919), + [anon_sym_AMP_GT] = ACTIONS(2921), + [anon_sym_AMP_GT_GT] = ACTIONS(2919), + [anon_sym_LT_AMP] = ACTIONS(2919), + [anon_sym_GT_AMP] = ACTIONS(2919), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_LT_LT_DASH] = ACTIONS(2919), + [anon_sym_LT_LT_LT] = ACTIONS(2919), + [anon_sym_BQUOTE] = ACTIONS(2919), + [sym_comment] = ACTIONS(53), + }, + [2533] = { + [sym_concatenation] = STATE(2646), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2646), + [anon_sym_RBRACE] = ACTIONS(6155), + [anon_sym_EQ] = ACTIONS(6157), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2534] = { + [sym__concat] = ACTIONS(5419), + [sym_variable_name] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_PIPE_AMP] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [sym__special_characters] = ACTIONS(5419), + [anon_sym_DQUOTE] = ACTIONS(5419), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), + [anon_sym_BQUOTE] = ACTIONS(5419), + [anon_sym_LT_LPAREN] = ACTIONS(5419), + [anon_sym_GT_LPAREN] = ACTIONS(5419), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), + [sym_word] = ACTIONS(5421), + }, + [2535] = { + [sym__concat] = ACTIONS(5423), + [sym_variable_name] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_PIPE_AMP] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [sym__special_characters] = ACTIONS(5423), + [anon_sym_DQUOTE] = ACTIONS(5423), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), + [anon_sym_BQUOTE] = ACTIONS(5423), + [anon_sym_LT_LPAREN] = ACTIONS(5423), + [anon_sym_GT_LPAREN] = ACTIONS(5423), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), + [sym_word] = ACTIONS(5425), + }, + [2536] = { + [sym__concat] = ACTIONS(5427), + [sym_variable_name] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_PIPE_AMP] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [sym__special_characters] = ACTIONS(5427), + [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), + [anon_sym_BQUOTE] = ACTIONS(5427), + [anon_sym_LT_LPAREN] = ACTIONS(5427), + [anon_sym_GT_LPAREN] = ACTIONS(5427), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), + [sym_word] = ACTIONS(5429), + }, + [2537] = { + [sym__concat] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_PIPE_AMP] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [sym__special_characters] = ACTIONS(5419), + [anon_sym_DQUOTE] = ACTIONS(5419), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), + [anon_sym_BQUOTE] = ACTIONS(5419), + [anon_sym_LT_LPAREN] = ACTIONS(5419), + [anon_sym_GT_LPAREN] = ACTIONS(5419), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), + [sym_word] = ACTIONS(5421), + }, + [2538] = { + [sym__concat] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_PIPE_AMP] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [sym__special_characters] = ACTIONS(5423), + [anon_sym_DQUOTE] = ACTIONS(5423), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), + [anon_sym_BQUOTE] = ACTIONS(5423), + [anon_sym_LT_LPAREN] = ACTIONS(5423), + [anon_sym_GT_LPAREN] = ACTIONS(5423), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), + [sym_word] = ACTIONS(5425), + }, + [2539] = { + [sym__concat] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_PIPE_AMP] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [sym__special_characters] = ACTIONS(5427), + [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), + [anon_sym_BQUOTE] = ACTIONS(5427), + [anon_sym_LT_LPAREN] = ACTIONS(5427), + [anon_sym_GT_LPAREN] = ACTIONS(5427), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), + [sym_word] = ACTIONS(5429), + }, + [2540] = { + [sym__heredoc_body_middle] = ACTIONS(5419), + [sym__heredoc_body_end] = ACTIONS(5419), + [anon_sym_DOLLAR] = ACTIONS(5421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), + [sym_comment] = ACTIONS(53), + }, + [2541] = { + [sym__heredoc_body_middle] = ACTIONS(5423), + [sym__heredoc_body_end] = ACTIONS(5423), + [anon_sym_DOLLAR] = ACTIONS(5425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), + [sym_comment] = ACTIONS(53), + }, + [2542] = { + [sym__heredoc_body_middle] = ACTIONS(5427), + [sym__heredoc_body_end] = ACTIONS(5427), + [anon_sym_DOLLAR] = ACTIONS(5429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), + [sym_comment] = ACTIONS(53), + }, + [2543] = { + [sym__concat] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [sym__special_characters] = ACTIONS(5419), + [anon_sym_DQUOTE] = ACTIONS(5419), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5419), + [anon_sym_BQUOTE] = ACTIONS(5419), + [anon_sym_LT_LPAREN] = ACTIONS(5419), + [anon_sym_GT_LPAREN] = ACTIONS(5419), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5419), + }, + [2544] = { + [sym__concat] = ACTIONS(5423), + [anon_sym_RPAREN] = ACTIONS(5423), + [sym__special_characters] = ACTIONS(5423), + [anon_sym_DQUOTE] = ACTIONS(5423), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5423), + [anon_sym_BQUOTE] = ACTIONS(5423), + [anon_sym_LT_LPAREN] = ACTIONS(5423), + [anon_sym_GT_LPAREN] = ACTIONS(5423), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5423), + }, + [2545] = { + [sym__concat] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(5427), + [sym__special_characters] = ACTIONS(5427), + [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5427), + [anon_sym_BQUOTE] = ACTIONS(5427), + [anon_sym_LT_LPAREN] = ACTIONS(5427), + [anon_sym_GT_LPAREN] = ACTIONS(5427), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5427), + }, + [2546] = { + [aux_sym_concatenation_repeat1] = STATE(2647), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(1147), + [sym_variable_name] = ACTIONS(705), + [anon_sym_esac] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [2547] = { + [sym_file_redirect] = STATE(2461), + [sym_heredoc_redirect] = STATE(2461), + [sym_heredoc_body] = STATE(1059), + [sym_herestring_redirect] = STATE(2461), + [aux_sym_while_statement_repeat1] = STATE(2461), + [sym__simple_heredoc_body] = ACTIONS(337), + [sym__heredoc_body_beginning] = ACTIONS(339), + [sym_file_descriptor] = ACTIONS(5219), + [anon_sym_esac] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_SEMI_SEMI] = ACTIONS(2279), + [anon_sym_PIPE_AMP] = ACTIONS(2279), + [anon_sym_AMP_AMP] = ACTIONS(2279), + [anon_sym_PIPE_PIPE] = ACTIONS(2279), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_GT] = ACTIONS(5223), + [anon_sym_AMP_GT] = ACTIONS(5223), + [anon_sym_AMP_GT_GT] = ACTIONS(5223), + [anon_sym_LT_AMP] = ACTIONS(5223), + [anon_sym_GT_AMP] = ACTIONS(5223), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_LT_LT_DASH] = ACTIONS(349), + [anon_sym_LT_LT_LT] = ACTIONS(5225), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2281), + [anon_sym_AMP] = ACTIONS(2279), + }, + [2548] = { + [sym_compound_statement] = STATE(2648), + [anon_sym_LBRACE] = ACTIONS(457), + [sym_comment] = ACTIONS(53), + }, + [2549] = { + [anon_sym_LT] = ACTIONS(6161), + [anon_sym_GT] = ACTIONS(6161), + [anon_sym_GT_GT] = ACTIONS(6163), + [anon_sym_AMP_GT] = ACTIONS(6161), + [anon_sym_AMP_GT_GT] = ACTIONS(6163), + [anon_sym_LT_AMP] = ACTIONS(6163), + [anon_sym_GT_AMP] = ACTIONS(6163), + [sym_comment] = ACTIONS(53), + }, + [2550] = { + [sym_concatenation] = STATE(1104), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [sym__special_characters] = ACTIONS(6165), + [anon_sym_DQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR] = ACTIONS(6169), + [sym_raw_string] = ACTIONS(6171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6175), + [anon_sym_BQUOTE] = ACTIONS(6177), + [anon_sym_LT_LPAREN] = ACTIONS(6179), + [anon_sym_GT_LPAREN] = ACTIONS(6179), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6171), + }, + [2551] = { + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_GT_GT] = ACTIONS(6183), + [anon_sym_AMP_GT] = ACTIONS(6181), + [anon_sym_AMP_GT_GT] = ACTIONS(6183), + [anon_sym_LT_AMP] = ACTIONS(6183), + [anon_sym_GT_AMP] = ACTIONS(6183), + [sym_comment] = ACTIONS(53), + }, + [2552] = { + [sym_concatenation] = STATE(1155), + [sym_string] = STATE(2660), + [sym_simple_expansion] = STATE(2660), + [sym_string_expansion] = STATE(2660), + [sym_expansion] = STATE(2660), + [sym_command_substitution] = STATE(2660), + [sym_process_substitution] = STATE(2660), + [sym__special_characters] = ACTIONS(6185), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(6187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6187), + }, + [2553] = { + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(2662), + [sym_simple_expansion] = STATE(2662), + [sym_string_expansion] = STATE(2662), + [sym_expansion] = STATE(2662), + [sym_command_substitution] = STATE(2662), + [sym_process_substitution] = STATE(2662), + [sym__special_characters] = ACTIONS(6189), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(6191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6191), + }, + [2554] = { + [sym_file_redirect] = STATE(2663), + [sym_heredoc_redirect] = STATE(2663), + [sym_herestring_redirect] = STATE(2663), + [aux_sym_while_statement_repeat1] = STATE(2663), + [sym_file_descriptor] = ACTIONS(5870), + [anon_sym_esac] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_SEMI_SEMI] = ACTIONS(2526), + [anon_sym_PIPE_AMP] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(5872), + [anon_sym_GT] = ACTIONS(5872), + [anon_sym_GT_GT] = ACTIONS(5872), + [anon_sym_AMP_GT] = ACTIONS(5872), + [anon_sym_AMP_GT_GT] = ACTIONS(5872), + [anon_sym_LT_AMP] = ACTIONS(5872), + [anon_sym_GT_AMP] = ACTIONS(5872), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_LT_LT_DASH] = ACTIONS(1367), + [anon_sym_LT_LT_LT] = ACTIONS(5874), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2526), + }, + [2555] = { + [sym_variable_name] = ACTIONS(1123), + [anon_sym_esac] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_SEMI_SEMI] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1125), + [anon_sym_GT_LPAREN] = ACTIONS(1125), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_LF] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + }, + [2556] = { + [sym_concatenation] = STATE(2665), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(2665), + [anon_sym_RPAREN] = ACTIONS(6193), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1135), + }, + [2557] = { + [aux_sym_concatenation_repeat1] = STATE(2411), + [sym__concat] = ACTIONS(5615), + [sym_variable_name] = ACTIONS(1145), + [anon_sym_esac] = ACTIONS(1149), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_SEMI_SEMI] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1149), + [anon_sym_PIPE_PIPE] = ACTIONS(1149), + [sym__special_characters] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_DOLLAR] = ACTIONS(1149), + [sym_raw_string] = ACTIONS(1149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1149), + [anon_sym_BQUOTE] = ACTIONS(1149), + [anon_sym_LT_LPAREN] = ACTIONS(1149), + [anon_sym_GT_LPAREN] = ACTIONS(1149), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), + [sym_word] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1149), + }, + [2558] = { + [aux_sym_concatenation_repeat1] = STATE(2411), + [sym__concat] = ACTIONS(5615), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_esac] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_SEMI_SEMI] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_raw_string] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(1125), + [anon_sym_LT_LPAREN] = ACTIONS(1125), + [anon_sym_GT_LPAREN] = ACTIONS(1125), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_LF] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + }, + [2559] = { + [sym__concat] = ACTIONS(1672), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [2560] = { + [aux_sym_concatenation_repeat1] = STATE(2560), + [sym__concat] = ACTIONS(6195), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [2561] = { + [sym__concat] = ACTIONS(1679), + [sym_variable_name] = ACTIONS(1679), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + }, + [2562] = { + [anon_sym_DQUOTE] = ACTIONS(6198), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [2563] = { + [sym_concatenation] = STATE(2670), + [sym_string] = STATE(2669), + [sym_simple_expansion] = STATE(2669), + [sym_string_expansion] = STATE(2669), + [sym_expansion] = STATE(2669), + [sym_command_substitution] = STATE(2669), + [sym_process_substitution] = STATE(2669), + [anon_sym_RBRACE] = ACTIONS(6200), + [sym__special_characters] = ACTIONS(6202), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6204), + }, + [2564] = { + [sym__concat] = ACTIONS(1764), + [sym_variable_name] = ACTIONS(1764), + [anon_sym_esac] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [sym__special_characters] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), + [sym_word] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_LF] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + }, + [2565] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6206), + }, + [2566] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6208), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2567] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(6210), + [sym_comment] = ACTIONS(53), + }, + [2568] = { + [sym_concatenation] = STATE(2676), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2676), + [anon_sym_RBRACE] = ACTIONS(6212), + [anon_sym_EQ] = ACTIONS(6214), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6218), + [anon_sym_COLON] = ACTIONS(6214), + [anon_sym_COLON_QMARK] = ACTIONS(6214), + [anon_sym_COLON_DASH] = ACTIONS(6214), + [anon_sym_PERCENT] = ACTIONS(6214), + [anon_sym_DASH] = ACTIONS(6214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2569] = { + [sym_concatenation] = STATE(2679), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2679), + [anon_sym_RBRACE] = ACTIONS(6220), + [anon_sym_EQ] = ACTIONS(6222), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6224), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6226), + [anon_sym_COLON] = ACTIONS(6222), + [anon_sym_COLON_QMARK] = ACTIONS(6222), + [anon_sym_COLON_DASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(6222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2570] = { + [sym_concatenation] = STATE(2681), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2681), + [anon_sym_RBRACE] = ACTIONS(6200), + [anon_sym_EQ] = ACTIONS(6228), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6232), + [anon_sym_COLON] = ACTIONS(6228), + [anon_sym_COLON_QMARK] = ACTIONS(6228), + [anon_sym_COLON_DASH] = ACTIONS(6228), + [anon_sym_PERCENT] = ACTIONS(6228), + [anon_sym_DASH] = ACTIONS(6228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2571] = { + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [2572] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6234), + }, + [2573] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6236), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2574] = { + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1842), + [anon_sym_PIPE_AMP] = ACTIONS(1842), + [anon_sym_AMP_AMP] = ACTIONS(1842), + [anon_sym_PIPE_PIPE] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1842), + [anon_sym_GT_LPAREN] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [2575] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6238), + }, + [2576] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6200), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2577] = { + [sym__concat] = ACTIONS(1980), + [sym_variable_name] = ACTIONS(1980), + [anon_sym_esac] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1982), + [anon_sym_PIPE_AMP] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_PIPE_PIPE] = ACTIONS(1982), + [sym__special_characters] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(1982), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), + [sym_word] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), + }, + [2578] = { + [sym__concat] = ACTIONS(2046), + [sym_variable_name] = ACTIONS(2046), [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), @@ -61474,522 +65031,701 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(2048), [anon_sym_GT_LPAREN] = ACTIONS(2048), [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), [sym_word] = ACTIONS(2048), [anon_sym_SEMI] = ACTIONS(2048), [anon_sym_LF] = ACTIONS(2046), [anon_sym_AMP] = ACTIONS(2048), }, - [2407] = { - [aux_sym_concatenation_repeat1] = STATE(2181), - [sym__simple_heredoc_body] = ACTIONS(2050), - [sym__heredoc_body_beginning] = ACTIONS(2050), - [sym_file_descriptor] = ACTIONS(2050), + [2579] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [2580] = { + [aux_sym_concatenation_repeat1] = STATE(2580), + [sym__concat] = ACTIONS(6240), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1674), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [2581] = { + [sym__concat] = ACTIONS(1679), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + }, + [2582] = { + [anon_sym_DQUOTE] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [2583] = { + [sym_concatenation] = STATE(2689), + [sym_string] = STATE(2688), + [sym_simple_expansion] = STATE(2688), + [sym_string_expansion] = STATE(2688), + [sym_expansion] = STATE(2688), + [sym_command_substitution] = STATE(2688), + [sym_process_substitution] = STATE(2688), + [anon_sym_RBRACE] = ACTIONS(6245), + [sym__special_characters] = ACTIONS(6247), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6249), + }, + [2584] = { + [sym__concat] = ACTIONS(1764), + [anon_sym_esac] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [sym__special_characters] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), + [sym_word] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_LF] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + }, + [2585] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6251), + }, + [2586] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6253), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2587] = { + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(6255), + [sym_comment] = ACTIONS(53), + }, + [2588] = { + [sym_concatenation] = STATE(2695), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2695), + [anon_sym_RBRACE] = ACTIONS(6257), + [anon_sym_EQ] = ACTIONS(6259), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_COLON_QMARK] = ACTIONS(6259), + [anon_sym_COLON_DASH] = ACTIONS(6259), + [anon_sym_PERCENT] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2589] = { + [sym_concatenation] = STATE(2698), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2698), + [anon_sym_RBRACE] = ACTIONS(6265), + [anon_sym_EQ] = ACTIONS(6267), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6271), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_COLON_QMARK] = ACTIONS(6267), + [anon_sym_COLON_DASH] = ACTIONS(6267), + [anon_sym_PERCENT] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2590] = { + [sym_concatenation] = STATE(2700), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2700), + [anon_sym_RBRACE] = ACTIONS(6245), + [anon_sym_EQ] = ACTIONS(6273), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6277), + [anon_sym_COLON] = ACTIONS(6273), + [anon_sym_COLON_QMARK] = ACTIONS(6273), + [anon_sym_COLON_DASH] = ACTIONS(6273), + [anon_sym_PERCENT] = ACTIONS(6273), + [anon_sym_DASH] = ACTIONS(6273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2591] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [2592] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6279), + }, + [2593] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6281), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2594] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1842), + [anon_sym_PIPE_AMP] = ACTIONS(1842), + [anon_sym_AMP_AMP] = ACTIONS(1842), + [anon_sym_PIPE_PIPE] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [anon_sym_LT_LPAREN] = ACTIONS(1842), + [anon_sym_GT_LPAREN] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [2595] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6283), + }, + [2596] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6245), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2597] = { + [sym__concat] = ACTIONS(1980), + [anon_sym_esac] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1982), + [anon_sym_PIPE_AMP] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_PIPE_PIPE] = ACTIONS(1982), + [sym__special_characters] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [sym_raw_string] = ACTIONS(1982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(1982), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), + [sym_word] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), + }, + [2598] = { + [sym__concat] = ACTIONS(2046), + [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), + [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2048), + [sym_word] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), + }, + [2599] = { + [sym_file_redirect] = STATE(1435), + [sym_file_descriptor] = ACTIONS(5866), + [anon_sym_esac] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_SEMI_SEMI] = ACTIONS(2380), + [anon_sym_PIPE_AMP] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_GT] = ACTIONS(5868), + [anon_sym_GT_GT] = ACTIONS(5868), + [anon_sym_AMP_GT] = ACTIONS(5868), + [anon_sym_AMP_GT_GT] = ACTIONS(5868), + [anon_sym_LT_AMP] = ACTIONS(5868), + [anon_sym_GT_AMP] = ACTIONS(5868), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_LF] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2380), + }, + [2600] = { + [aux_sym_concatenation_repeat1] = STATE(2602), + [sym__simple_heredoc_body] = ACTIONS(1105), + [sym__heredoc_body_beginning] = ACTIONS(1105), + [sym_file_descriptor] = ACTIONS(1105), [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), + [anon_sym_esac] = ACTIONS(1107), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), }, - [2408] = { - [aux_sym_concatenation_repeat1] = STATE(2550), - [sym__simple_heredoc_body] = ACTIONS(661), - [sym__heredoc_body_beginning] = ACTIONS(661), - [sym_file_descriptor] = ACTIONS(661), + [2601] = { + [aux_sym_concatenation_repeat1] = STATE(2602), + [sym__simple_heredoc_body] = ACTIONS(1109), + [sym__heredoc_body_beginning] = ACTIONS(1109), + [sym_file_descriptor] = ACTIONS(1109), [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_SEMI_SEMI] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(665), - [anon_sym_LT_AMP] = ACTIONS(665), - [anon_sym_GT_AMP] = ACTIONS(665), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(665), - [anon_sym_LT_LT_LT] = ACTIONS(665), + [anon_sym_esac] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1111), + [anon_sym_LT_AMP] = ACTIONS(1111), + [anon_sym_GT_AMP] = ACTIONS(1111), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1111), + [anon_sym_LT_LT_LT] = ACTIONS(1111), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_LF] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(665), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), }, - [2409] = { - [aux_sym_concatenation_repeat1] = STATE(2550), - [sym__simple_heredoc_body] = ACTIONS(677), - [sym__heredoc_body_beginning] = ACTIONS(677), - [sym_file_descriptor] = ACTIONS(677), + [2602] = { + [aux_sym_concatenation_repeat1] = STATE(2704), + [sym__simple_heredoc_body] = ACTIONS(705), + [sym__heredoc_body_beginning] = ACTIONS(705), + [sym_file_descriptor] = ACTIONS(705), [sym__concat] = ACTIONS(223), - [anon_sym_esac] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_LT_LT_LT] = ACTIONS(679), + [anon_sym_esac] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, - [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), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LF] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2060), - }, - [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_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), - }, - [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(2075), - [anon_sym_LF] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2075), - }, - [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), + [2603] = { + [sym_file_redirect] = STATE(2461), + [sym_heredoc_redirect] = STATE(2461), + [sym_heredoc_body] = STATE(1451), + [sym_herestring_redirect] = STATE(2461), + [aux_sym_while_statement_repeat1] = STATE(2461), [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_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), + [sym_file_descriptor] = ACTIONS(5219), + [anon_sym_esac] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_SEMI_SEMI] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_GT_GT] = ACTIONS(5223), + [anon_sym_AMP_GT] = ACTIONS(5223), + [anon_sym_AMP_GT_GT] = ACTIONS(5223), + [anon_sym_LT_AMP] = ACTIONS(5223), + [anon_sym_GT_AMP] = ACTIONS(5223), [anon_sym_LT_LT] = ACTIONS(349), [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_LT] = ACTIONS(5133), + [anon_sym_LT_LT_LT] = ACTIONS(5225), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3353), }, - [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), - [sym_word] = ACTIONS(5958), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2052), - }, - [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(5961), - [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(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), + [2604] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_esac] = ACTIONS(6285), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(6287), + [anon_sym_DQUOTE] = ACTIONS(6289), + [anon_sym_DOLLAR] = ACTIONS(6287), + [sym_raw_string] = ACTIONS(6289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6289), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6289), + [anon_sym_BQUOTE] = ACTIONS(6289), + [anon_sym_LT_LPAREN] = ACTIONS(6289), + [anon_sym_GT_LPAREN] = ACTIONS(6289), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5963), + [sym_word] = ACTIONS(6287), }, - [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), - [sym_word] = ACTIONS(5137), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2066), - }, - [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), + [2605] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_esac] = ACTIONS(6291), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(6293), + [anon_sym_DQUOTE] = ACTIONS(6295), + [anon_sym_DOLLAR] = ACTIONS(6293), + [sym_raw_string] = ACTIONS(6295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6295), + [anon_sym_BQUOTE] = ACTIONS(6295), + [anon_sym_LT_LPAREN] = ACTIONS(6295), + [anon_sym_GT_LPAREN] = ACTIONS(6295), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5963), + [sym_word] = ACTIONS(6293), }, - [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(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), - [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), - }, - [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), + [2606] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(5671), + [anon_sym_DQUOTE] = ACTIONS(5673), + [anon_sym_DOLLAR] = ACTIONS(5671), + [sym_raw_string] = ACTIONS(5673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5673), + [anon_sym_BQUOTE] = ACTIONS(5673), + [anon_sym_LT_LPAREN] = ACTIONS(5673), + [anon_sym_GT_LPAREN] = ACTIONS(5673), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5971), + [sym_word] = ACTIONS(5671), }, - [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), + [2607] = { + [sym__special_characters] = ACTIONS(5673), + [anon_sym_DQUOTE] = ACTIONS(5673), + [anon_sym_DOLLAR] = ACTIONS(5671), + [sym_raw_string] = ACTIONS(5673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5673), + [anon_sym_BQUOTE] = ACTIONS(5673), + [anon_sym_LT_LPAREN] = ACTIONS(5673), + [anon_sym_GT_LPAREN] = ACTIONS(5673), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5971), + [sym_word] = ACTIONS(5673), }, - [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] = { + [2608] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(5977), + [anon_sym_SEMI_SEMI] = ACTIONS(6297), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -61998,11 +65734,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2426] = { + [2609] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(5977), + [anon_sym_SEMI_SEMI] = ACTIONS(6297), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -62028,2821 +65764,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [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(2557), - [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(2558), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5979), - [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), - }, - [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(2557), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2559), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5979), - [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), - }, - [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(5148), - }, - [2430] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [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(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2431] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(5981), - [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(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [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(2563), - [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(2558), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5983), - [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), - }, - [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(2563), - [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(2564), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5983), - [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), - }, - [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(3831), - [anon_sym_LF] = ACTIONS(3829), - [anon_sym_AMP] = ACTIONS(3831), - }, - [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(3837), - [anon_sym_LF] = ACTIONS(3835), - [anon_sym_AMP] = ACTIONS(3837), - }, - [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(3922), - [anon_sym_LF] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3922), - }, - [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(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(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), - }, - [2438] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5987), - [sym_comment] = ACTIONS(53), - }, - [2439] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(5989), - [sym_comment] = ACTIONS(53), - }, - [2440] = { - [anon_sym_RBRACE] = ACTIONS(5989), - [sym_comment] = ACTIONS(53), - }, - [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(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(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3938), - [anon_sym_LF] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3938), - }, - [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(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(6001), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3948), - [anon_sym_LF] = ACTIONS(3946), - [anon_sym_AMP] = ACTIONS(3948), - }, - [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(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(6007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3958), - [anon_sym_LF] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3958), - }, - [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(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(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), - }, - [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(3964), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3964), - }, - [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(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(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), - }, - [2450] = { - [sym__concat] = ACTIONS(4741), - [anon_sym_RBRACE] = ACTIONS(4741), - [sym_comment] = ACTIONS(53), - }, - [2451] = { - [sym__concat] = ACTIONS(4745), - [anon_sym_RBRACE] = ACTIONS(4745), - [sym_comment] = ACTIONS(53), - }, - [2452] = { - [sym__concat] = ACTIONS(4749), - [anon_sym_RBRACE] = ACTIONS(4749), - [sym_comment] = ACTIONS(53), - }, - [2453] = { - [sym__concat] = ACTIONS(4753), - [anon_sym_RBRACE] = ACTIONS(4753), - [sym_comment] = ACTIONS(53), - }, - [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(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(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), - }, - [2455] = { - [sym__concat] = ACTIONS(4759), - [anon_sym_RBRACE] = ACTIONS(4759), - [sym_comment] = ACTIONS(53), - }, - [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(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(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), - }, - [2457] = { - [sym__concat] = ACTIONS(4765), - [anon_sym_RBRACE] = ACTIONS(4765), - [sym_comment] = ACTIONS(53), - }, - [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(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(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), - }, - [2459] = { - [sym__concat] = ACTIONS(4771), - [anon_sym_RBRACE] = ACTIONS(4771), - [sym_comment] = ACTIONS(53), - }, - [2460] = { - [sym__concat] = ACTIONS(4775), - [anon_sym_RBRACE] = ACTIONS(4775), - [sym_comment] = ACTIONS(53), - }, - [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(5327), - }, - [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(5331), - }, - [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(5335), - }, - [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), - }, - [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), - }, - [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), - }, - [2467] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6019), - [sym_comment] = ACTIONS(53), - }, - [2468] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6021), - [sym_comment] = ACTIONS(53), - }, - [2469] = { - [anon_sym_RBRACE] = ACTIONS(6021), - [sym_comment] = ACTIONS(53), - }, - [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(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(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - }, - [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(6031), - }, - [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), - }, - [2474] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6033), - }, - [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(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(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), - }, - [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), - }, - [2477] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6037), - }, - [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(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(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), - }, - [2479] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6041), - }, - [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(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(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), - }, - [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(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(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - }, - [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(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(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(5327), - [sym_word] = ACTIONS(5327), - }, - [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(5331), - [sym_word] = ACTIONS(5331), - }, - [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(5335), - [sym_word] = ACTIONS(5335), - }, - [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(5327), - [sym_word] = ACTIONS(5327), - }, - [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(5331), - [sym_word] = ACTIONS(5331), - }, - [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(5335), - [sym_word] = ACTIONS(5335), - }, - [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), - }, - [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), - }, - [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), - }, - [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(5325), - }, - [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(5329), - }, - [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(5333), - }, - [2496] = { - [aux_sym_concatenation_repeat1] = STATE(2595), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(1131), - [sym_variable_name] = ACTIONS(693), - [anon_sym_esac] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(695), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [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(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(5133), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_LF] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2235), - }, - [2498] = { - [sym_compound_statement] = STATE(2596), - [anon_sym_LBRACE] = ACTIONS(455), - [sym_comment] = ACTIONS(53), - }, - [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), - }, - [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(6065), - }, - [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), - }, - [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(6081), - }, - [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(6085), - }, - [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(2478), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - }, - [2505] = { - [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), - [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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), - [sym_word] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), - }, - [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(2613), - [anon_sym_RPAREN] = ACTIONS(6087), - [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), - }, - [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), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [sym__special_characters] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [sym_raw_string] = ACTIONS(1133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), - [sym_comment] = ACTIONS(177), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1133), - [sym_word] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1133), - }, - [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), - [anon_sym_SEMI_SEMI] = ACTIONS(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1109), - [anon_sym_AMP_AMP] = ACTIONS(1109), - [anon_sym_PIPE_PIPE] = 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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1109), - [sym_word] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1109), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1693), - [sym_word] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LF] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - }, - [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(6096), - }, - [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(1734), - [sym_word] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_LF] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1734), - }, - [2514] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6098), - }, - [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(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(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), - }, - [2516] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6102), - [sym_comment] = ACTIONS(53), - }, - [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(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(6108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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(6116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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(6122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(1800), - [sym_word] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_LF] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1800), - }, - [2521] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6126), - }, - [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(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(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), - }, - [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(1808), - [sym_word] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_LF] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1808), - }, - [2524] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6130), - }, - [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(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(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), - }, - [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(1942), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - }, - [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(2008), - [sym_word] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LF] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2008), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1644), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [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(1693), - [sym_word] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LF] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - }, - [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(6139), - }, - [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(1734), - [sym_word] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_LF] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1734), - }, - [2533] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6141), - }, - [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(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(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), - }, - [2535] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6145), - [sym_comment] = ACTIONS(53), - }, - [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(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(6151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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(6159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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(6165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(1800), - [sym_word] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_LF] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1800), - }, - [2540] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6169), - }, - [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(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(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), - }, - [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(1808), - [sym_word] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_LF] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1808), - }, - [2543] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6173), - }, - [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(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(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), - }, - [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(1942), - [sym_word] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - }, - [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(2008), - [sym_word] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LF] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2008), - }, - [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), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym_LF] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2334), - }, - [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(223), - [anon_sym_esac] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1091), - [anon_sym_LT_AMP] = ACTIONS(1091), - [anon_sym_GT_AMP] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1091), - [anon_sym_LT_LT_LT] = ACTIONS(1091), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [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(223), - [anon_sym_esac] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1095), - [anon_sym_LT_AMP] = ACTIONS(1095), - [anon_sym_GT_AMP] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1095), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - }, - [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(223), - [anon_sym_esac] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [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(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(5133), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3283), - }, - [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(6175), - [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(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(6177), - }, - [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(6181), - [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(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(6183), - }, - [2554] = { - [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_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(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(5571), - }, - [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(5573), - }, - [2556] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6187), - [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(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2557] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6187), - [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(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2558] = { - [sym__terminated_statement] = STATE(2558), + [2610] = { + [sym__terminated_statement] = STATE(2610), [sym_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), @@ -64867,63 +65790,63 @@ 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(2558), + [aux_sym_program_repeat1] = STATE(2610), [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_case] = ACTIONS(1016), - [anon_sym_SEMI_SEMI] = ACTIONS(1005), - [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_file_descriptor] = ACTIONS(1015), + [sym_variable_name] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1021), + [anon_sym_function] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1047), + [anon_sym_declare] = ACTIONS(1050), + [anon_sym_typeset] = ACTIONS(1050), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_readonly] = ACTIONS(1050), + [anon_sym_local] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1053), + [anon_sym_unsetenv] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [sym__special_characters] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1083), + [anon_sym_GT_LPAREN] = ACTIONS(1083), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1070), + [sym_word] = ACTIONS(1086), }, - [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), + [2611] = { + [sym__terminated_statement] = STATE(2610), + [sym_for_statement] = STATE(2707), + [sym_while_statement] = STATE(2707), + [sym_if_statement] = STATE(2707), + [sym_case_statement] = STATE(2707), + [sym_function_definition] = STATE(2707), + [sym_subshell] = STATE(2707), + [sym_pipeline] = STATE(2707), + [sym_list] = STATE(2707), + [sym_negated_command] = STATE(2707), + [sym_test_command] = STATE(2707), + [sym_declaration_command] = STATE(2707), + [sym_unset_command] = STATE(2707), + [sym_command] = STATE(2707), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2654), + [sym_variable_assignment] = STATE(2708), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -64933,7 +65856,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(2558), + [aux_sym_program_repeat1] = STATE(2610), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -64941,7 +65864,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(6189), + [anon_sym_SEMI_SEMI] = ACTIONS(6299), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -64973,61 +65896,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2560] = { - [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_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(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), + [2612] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(5697), + [anon_sym_DQUOTE] = ACTIONS(5699), + [anon_sym_DOLLAR] = ACTIONS(5697), + [sym_raw_string] = ACTIONS(5699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5699), + [anon_sym_BQUOTE] = ACTIONS(5699), + [anon_sym_LT_LPAREN] = ACTIONS(5699), + [anon_sym_GT_LPAREN] = ACTIONS(5699), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5597), + [sym_word] = ACTIONS(5697), }, - [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), + [2613] = { + [sym__special_characters] = ACTIONS(5699), + [anon_sym_DQUOTE] = ACTIONS(5699), + [anon_sym_DOLLAR] = ACTIONS(5697), + [sym_raw_string] = ACTIONS(5699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5699), + [anon_sym_BQUOTE] = ACTIONS(5699), + [anon_sym_LT_LPAREN] = ACTIONS(5699), + [anon_sym_GT_LPAREN] = ACTIONS(5699), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5599), + [sym_word] = ACTIONS(5699), }, - [2562] = { + [2614] = { [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6191), + [anon_sym_SEMI_SEMI] = ACTIONS(6301), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -65036,11 +65959,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [2563] = { + [2615] = { [sym_file_descriptor] = ACTIONS(369), [sym_variable_name] = ACTIONS(369), [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6191), + [anon_sym_SEMI_SEMI] = ACTIONS(6301), [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_AMP] = ACTIONS(333), [anon_sym_PIPE_PIPE] = ACTIONS(333), @@ -65066,23 +65989,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(335), [anon_sym_AMP] = ACTIONS(331), }, - [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), + [2616] = { + [sym__terminated_statement] = STATE(2610), + [sym_for_statement] = STATE(2711), + [sym_while_statement] = STATE(2711), + [sym_if_statement] = STATE(2711), + [sym_case_statement] = STATE(2711), + [sym_function_definition] = STATE(2711), + [sym_subshell] = STATE(2711), + [sym_pipeline] = STATE(2711), + [sym_list] = STATE(2711), + [sym_negated_command] = STATE(2711), + [sym_test_command] = STATE(2711), + [sym_declaration_command] = STATE(2711), + [sym_unset_command] = STATE(2711), + [sym_command] = STATE(2711), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2658), + [sym_variable_assignment] = STATE(2712), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -65092,7 +66015,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(2558), + [aux_sym_program_repeat1] = STATE(2610), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -65100,7 +66023,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(6193), + [anon_sym_SEMI_SEMI] = ACTIONS(6303), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -65132,805 +66055,805 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [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), + [2617] = { + [sym_file_descriptor] = ACTIONS(4831), + [sym__concat] = ACTIONS(4831), + [anon_sym_esac] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4833), + [anon_sym_SEMI_SEMI] = ACTIONS(4833), + [anon_sym_PIPE_AMP] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4833), + [anon_sym_PIPE_PIPE] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_GT_GT] = ACTIONS(4833), + [anon_sym_AMP_GT] = ACTIONS(4833), + [anon_sym_AMP_GT_GT] = ACTIONS(4833), + [anon_sym_LT_AMP] = ACTIONS(4833), + [anon_sym_GT_AMP] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4833), + [anon_sym_LT_LT_DASH] = ACTIONS(4833), + [anon_sym_LT_LT_LT] = ACTIONS(4833), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_LF] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4833), }, - [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), + [2618] = { + [sym_file_descriptor] = ACTIONS(4835), + [sym__concat] = ACTIONS(4835), + [anon_sym_esac] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4837), + [anon_sym_SEMI_SEMI] = ACTIONS(4837), + [anon_sym_PIPE_AMP] = ACTIONS(4837), + [anon_sym_AMP_AMP] = ACTIONS(4837), + [anon_sym_PIPE_PIPE] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4837), + [anon_sym_AMP_GT] = ACTIONS(4837), + [anon_sym_AMP_GT_GT] = ACTIONS(4837), + [anon_sym_LT_AMP] = ACTIONS(4837), + [anon_sym_GT_AMP] = ACTIONS(4837), + [anon_sym_LT_LT] = ACTIONS(4837), + [anon_sym_LT_LT_DASH] = ACTIONS(4837), + [anon_sym_LT_LT_LT] = ACTIONS(4837), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_LF] = ACTIONS(4745), - [anon_sym_AMP] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4837), }, - [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), + [2619] = { + [sym_file_descriptor] = ACTIONS(4839), + [sym__concat] = ACTIONS(4839), + [anon_sym_esac] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4841), + [anon_sym_SEMI_SEMI] = ACTIONS(4841), + [anon_sym_PIPE_AMP] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_GT_GT] = ACTIONS(4841), + [anon_sym_AMP_GT] = ACTIONS(4841), + [anon_sym_AMP_GT_GT] = ACTIONS(4841), + [anon_sym_LT_AMP] = ACTIONS(4841), + [anon_sym_GT_AMP] = ACTIONS(4841), + [anon_sym_LT_LT] = ACTIONS(4841), + [anon_sym_LT_LT_DASH] = ACTIONS(4841), + [anon_sym_LT_LT_LT] = ACTIONS(4841), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4751), - [anon_sym_LF] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4841), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4841), }, - [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), + [2620] = { + [sym_file_descriptor] = ACTIONS(4843), + [sym__concat] = ACTIONS(4843), + [anon_sym_esac] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4845), + [anon_sym_SEMI_SEMI] = ACTIONS(4845), + [anon_sym_PIPE_AMP] = ACTIONS(4845), + [anon_sym_AMP_AMP] = ACTIONS(4845), + [anon_sym_PIPE_PIPE] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4845), + [anon_sym_AMP_GT] = ACTIONS(4845), + [anon_sym_AMP_GT_GT] = ACTIONS(4845), + [anon_sym_LT_AMP] = ACTIONS(4845), + [anon_sym_GT_AMP] = ACTIONS(4845), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_LT_LT_DASH] = ACTIONS(4845), + [anon_sym_LT_LT_LT] = ACTIONS(4845), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_LF] = ACTIONS(4753), - [anon_sym_AMP] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4845), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4845), }, - [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(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(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), + [2621] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6305), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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), + [2622] = { + [sym_file_descriptor] = ACTIONS(4849), + [sym__concat] = ACTIONS(4849), + [anon_sym_esac] = ACTIONS(4851), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [anon_sym_PIPE_AMP] = ACTIONS(4851), + [anon_sym_AMP_AMP] = ACTIONS(4851), + [anon_sym_PIPE_PIPE] = ACTIONS(4851), + [anon_sym_LT] = ACTIONS(4851), + [anon_sym_GT] = ACTIONS(4851), + [anon_sym_GT_GT] = ACTIONS(4851), + [anon_sym_AMP_GT] = ACTIONS(4851), + [anon_sym_AMP_GT_GT] = ACTIONS(4851), + [anon_sym_LT_AMP] = ACTIONS(4851), + [anon_sym_GT_AMP] = ACTIONS(4851), + [anon_sym_LT_LT] = ACTIONS(4851), + [anon_sym_LT_LT_DASH] = ACTIONS(4851), + [anon_sym_LT_LT_LT] = ACTIONS(4851), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4761), - [anon_sym_LF] = ACTIONS(4759), - [anon_sym_AMP] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4849), + [anon_sym_AMP] = ACTIONS(4851), }, - [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(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(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), + [2623] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6307), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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), + [2624] = { + [sym_file_descriptor] = ACTIONS(4855), + [sym__concat] = ACTIONS(4855), + [anon_sym_esac] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4857), + [anon_sym_SEMI_SEMI] = ACTIONS(4857), + [anon_sym_PIPE_AMP] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_GT_GT] = ACTIONS(4857), + [anon_sym_AMP_GT] = ACTIONS(4857), + [anon_sym_AMP_GT_GT] = ACTIONS(4857), + [anon_sym_LT_AMP] = ACTIONS(4857), + [anon_sym_GT_AMP] = ACTIONS(4857), + [anon_sym_LT_LT] = ACTIONS(4857), + [anon_sym_LT_LT_DASH] = ACTIONS(4857), + [anon_sym_LT_LT_LT] = ACTIONS(4857), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4767), - [anon_sym_LF] = ACTIONS(4765), - [anon_sym_AMP] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LF] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4857), }, - [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(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(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), + [2625] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6309), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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), + [2626] = { + [sym_file_descriptor] = ACTIONS(4861), + [sym__concat] = ACTIONS(4861), + [anon_sym_esac] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_SEMI_SEMI] = ACTIONS(4863), + [anon_sym_PIPE_AMP] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4863), + [anon_sym_GT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4863), + [anon_sym_AMP_GT] = ACTIONS(4863), + [anon_sym_AMP_GT_GT] = ACTIONS(4863), + [anon_sym_LT_AMP] = ACTIONS(4863), + [anon_sym_GT_AMP] = ACTIONS(4863), + [anon_sym_LT_LT] = ACTIONS(4863), + [anon_sym_LT_LT_DASH] = ACTIONS(4863), + [anon_sym_LT_LT_LT] = ACTIONS(4863), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4773), - [anon_sym_LF] = ACTIONS(4771), - [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4863), }, - [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), + [2627] = { + [sym_file_descriptor] = ACTIONS(4865), + [sym__concat] = ACTIONS(4865), + [anon_sym_esac] = ACTIONS(4867), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4867), + [anon_sym_SEMI_SEMI] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [anon_sym_LT] = ACTIONS(4867), + [anon_sym_GT] = ACTIONS(4867), + [anon_sym_GT_GT] = ACTIONS(4867), + [anon_sym_AMP_GT] = ACTIONS(4867), + [anon_sym_AMP_GT_GT] = ACTIONS(4867), + [anon_sym_LT_AMP] = ACTIONS(4867), + [anon_sym_GT_AMP] = ACTIONS(4867), + [anon_sym_LT_LT] = ACTIONS(4867), + [anon_sym_LT_LT_DASH] = ACTIONS(4867), + [anon_sym_LT_LT_LT] = ACTIONS(4867), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4777), - [anon_sym_LF] = ACTIONS(4775), - [anon_sym_AMP] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_LF] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4867), }, - [2576] = { - [sym__concat] = ACTIONS(5325), - [anon_sym_RBRACE] = ACTIONS(5325), + [2628] = { + [sym__concat] = ACTIONS(5419), + [anon_sym_RBRACE] = ACTIONS(5419), [sym_comment] = ACTIONS(53), }, - [2577] = { - [sym__concat] = ACTIONS(5329), - [anon_sym_RBRACE] = ACTIONS(5329), + [2629] = { + [sym__concat] = ACTIONS(5423), + [anon_sym_RBRACE] = ACTIONS(5423), [sym_comment] = ACTIONS(53), }, - [2578] = { - [sym__concat] = ACTIONS(5333), - [anon_sym_RBRACE] = ACTIONS(5333), + [2630] = { + [sym__concat] = ACTIONS(5427), + [anon_sym_RBRACE] = ACTIONS(5427), [sym_comment] = ACTIONS(53), }, - [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), + [2631] = { + [sym_file_descriptor] = ACTIONS(3905), + [sym__concat] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_PIPE_AMP] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_AMP_GT] = ACTIONS(3907), + [anon_sym_AMP_GT_GT] = ACTIONS(3905), + [anon_sym_LT_AMP] = ACTIONS(3905), + [anon_sym_GT_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3907), + [anon_sym_LT_LT_DASH] = ACTIONS(3905), + [anon_sym_LT_LT_LT] = ACTIONS(3905), + [anon_sym_BQUOTE] = ACTIONS(3905), [sym_comment] = ACTIONS(53), }, - [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), + [2632] = { + [sym_file_descriptor] = ACTIONS(3913), + [sym__concat] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3913), + [anon_sym_PIPE_AMP] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(3913), + [anon_sym_PIPE_PIPE] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3915), + [anon_sym_GT] = ACTIONS(3915), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_AMP_GT] = ACTIONS(3915), + [anon_sym_AMP_GT_GT] = ACTIONS(3913), + [anon_sym_LT_AMP] = ACTIONS(3913), + [anon_sym_GT_AMP] = ACTIONS(3913), + [anon_sym_LT_LT] = ACTIONS(3915), + [anon_sym_LT_LT_DASH] = ACTIONS(3913), + [anon_sym_LT_LT_LT] = ACTIONS(3913), + [anon_sym_BQUOTE] = ACTIONS(3913), [sym_comment] = ACTIONS(53), }, - [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), + [2633] = { + [sym_file_descriptor] = ACTIONS(4000), + [sym__concat] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_PIPE_AMP] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4000), + [anon_sym_AMP_GT] = ACTIONS(4002), + [anon_sym_AMP_GT_GT] = ACTIONS(4000), + [anon_sym_LT_AMP] = ACTIONS(4000), + [anon_sym_GT_AMP] = ACTIONS(4000), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_LT_LT_DASH] = ACTIONS(4000), + [anon_sym_LT_LT_LT] = ACTIONS(4000), + [anon_sym_BQUOTE] = ACTIONS(4000), [sym_comment] = ACTIONS(53), }, - [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(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(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), + [2634] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6311), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [2583] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6203), + [2635] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6313), [sym_comment] = ACTIONS(53), }, - [2584] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6205), + [2636] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6315), [sym_comment] = ACTIONS(53), }, - [2585] = { - [anon_sym_RBRACE] = ACTIONS(6205), + [2637] = { + [anon_sym_RBRACE] = ACTIONS(6315), [sym_comment] = ACTIONS(53), }, - [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(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(6211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [2638] = { + [sym_concatenation] = STATE(2720), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2720), + [anon_sym_RBRACE] = ACTIONS(6317), + [anon_sym_EQ] = ACTIONS(6319), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6319), + [anon_sym_COLON_QMARK] = ACTIONS(6319), + [anon_sym_COLON_DASH] = ACTIONS(6319), + [anon_sym_PERCENT] = ACTIONS(6319), + [anon_sym_DASH] = ACTIONS(6319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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), + [2639] = { + [sym_file_descriptor] = ACTIONS(4016), + [sym__concat] = ACTIONS(4016), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_RPAREN] = ACTIONS(4016), + [anon_sym_PIPE_AMP] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_GT_GT] = ACTIONS(4016), + [anon_sym_AMP_GT] = ACTIONS(4018), + [anon_sym_AMP_GT_GT] = ACTIONS(4016), + [anon_sym_LT_AMP] = ACTIONS(4016), + [anon_sym_GT_AMP] = ACTIONS(4016), + [anon_sym_LT_LT] = ACTIONS(4018), + [anon_sym_LT_LT_DASH] = ACTIONS(4016), + [anon_sym_LT_LT_LT] = ACTIONS(4016), + [anon_sym_BQUOTE] = ACTIONS(4016), [sym_comment] = ACTIONS(53), }, - [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(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(6217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [2640] = { + [sym_concatenation] = STATE(2722), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2722), + [anon_sym_RBRACE] = ACTIONS(6323), + [anon_sym_EQ] = ACTIONS(6325), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_COLON_QMARK] = ACTIONS(6325), + [anon_sym_COLON_DASH] = ACTIONS(6325), + [anon_sym_PERCENT] = ACTIONS(6325), + [anon_sym_DASH] = ACTIONS(6325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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), + [2641] = { + [sym_file_descriptor] = ACTIONS(4026), + [sym__concat] = ACTIONS(4026), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4026), + [anon_sym_PIPE_AMP] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_PIPE_PIPE] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4028), + [anon_sym_GT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_AMP_GT] = ACTIONS(4028), + [anon_sym_AMP_GT_GT] = ACTIONS(4026), + [anon_sym_LT_AMP] = ACTIONS(4026), + [anon_sym_GT_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_LT_LT_DASH] = ACTIONS(4026), + [anon_sym_LT_LT_LT] = ACTIONS(4026), + [anon_sym_BQUOTE] = ACTIONS(4026), [sym_comment] = ACTIONS(53), }, - [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(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(6223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [2642] = { + [sym_concatenation] = STATE(2724), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2724), + [anon_sym_RBRACE] = ACTIONS(6329), + [anon_sym_EQ] = ACTIONS(6331), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6331), + [anon_sym_COLON_QMARK] = ACTIONS(6331), + [anon_sym_COLON_DASH] = ACTIONS(6331), + [anon_sym_PERCENT] = ACTIONS(6331), + [anon_sym_DASH] = ACTIONS(6331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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), + [2643] = { + [sym_file_descriptor] = ACTIONS(4036), + [sym__concat] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_PIPE_AMP] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_GT_GT] = ACTIONS(4036), + [anon_sym_AMP_GT] = ACTIONS(4038), + [anon_sym_AMP_GT_GT] = ACTIONS(4036), + [anon_sym_LT_AMP] = ACTIONS(4036), + [anon_sym_GT_AMP] = ACTIONS(4036), + [anon_sym_LT_LT] = ACTIONS(4038), + [anon_sym_LT_LT_DASH] = ACTIONS(4036), + [anon_sym_LT_LT_LT] = ACTIONS(4036), + [anon_sym_BQUOTE] = ACTIONS(4036), [sym_comment] = ACTIONS(53), }, - [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(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(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), + [2644] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6335), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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), + [2645] = { + [sym_file_descriptor] = ACTIONS(4042), + [sym__concat] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4042), + [anon_sym_PIPE_AMP] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_PIPE_PIPE] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_AMP_GT] = ACTIONS(4044), + [anon_sym_AMP_GT_GT] = ACTIONS(4042), + [anon_sym_LT_AMP] = ACTIONS(4042), + [anon_sym_GT_AMP] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_LT_LT_DASH] = ACTIONS(4042), + [anon_sym_LT_LT_LT] = ACTIONS(4042), + [anon_sym_BQUOTE] = ACTIONS(4042), [sym_comment] = ACTIONS(53), }, - [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(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(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), + [2646] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6337), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, - [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), + [2647] = { + [aux_sym_concatenation_repeat1] = STATE(2647), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(3439), + [sym_variable_name] = ACTIONS(1672), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [sym__special_characters] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [sym_raw_string] = ACTIONS(1674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LT_LPAREN] = ACTIONS(1674), + [anon_sym_GT_LPAREN] = ACTIONS(1674), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), + [sym_word] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), }, - [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), + [2648] = { + [sym_file_redirect] = STATE(1531), + [sym_file_descriptor] = ACTIONS(5866), + [anon_sym_esac] = ACTIONS(3595), + [anon_sym_PIPE] = ACTIONS(3595), + [anon_sym_SEMI_SEMI] = ACTIONS(3595), + [anon_sym_PIPE_AMP] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_PIPE_PIPE] = ACTIONS(3595), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_GT] = ACTIONS(5868), + [anon_sym_GT_GT] = ACTIONS(5868), + [anon_sym_AMP_GT] = ACTIONS(5868), + [anon_sym_AMP_GT_GT] = ACTIONS(5868), + [anon_sym_LT_AMP] = ACTIONS(5868), + [anon_sym_GT_AMP] = ACTIONS(5868), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_LF] = ACTIONS(3523), - [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym_LF] = ACTIONS(3597), + [anon_sym_AMP] = ACTIONS(3595), }, - [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), + [2649] = { + [sym_concatenation] = STATE(1534), + [sym_string] = STATE(2728), + [sym_simple_expansion] = STATE(2728), + [sym_string_expansion] = STATE(2728), + [sym_expansion] = STATE(2728), + [sym_command_substitution] = STATE(2728), + [sym_process_substitution] = STATE(2728), + [sym__special_characters] = ACTIONS(6339), + [anon_sym_DQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR] = ACTIONS(6169), + [sym_raw_string] = ACTIONS(6341), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6175), + [anon_sym_BQUOTE] = ACTIONS(6177), + [anon_sym_LT_LPAREN] = ACTIONS(6179), + [anon_sym_GT_LPAREN] = ACTIONS(6179), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6231), + [sym_word] = ACTIONS(6341), }, - [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), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), + [2650] = { + [aux_sym_concatenation_repeat1] = STATE(2730), + [sym__concat] = ACTIONS(6343), + [anon_sym_esac] = ACTIONS(675), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_LF] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(665), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(675), }, - [2599] = { + [2651] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(2678), - [anon_sym_DQUOTE] = ACTIONS(6235), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(2733), + [anon_sym_DQUOTE] = ACTIONS(6345), + [anon_sym_DOLLAR] = ACTIONS(6347), [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), }, - [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), + [2652] = { + [sym_string] = STATE(2735), + [anon_sym_DQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR] = ACTIONS(6349), + [sym_raw_string] = ACTIONS(6351), + [anon_sym_POUND] = ACTIONS(6349), + [anon_sym_DASH] = ACTIONS(6349), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6353), + [anon_sym_STAR] = ACTIONS(6349), + [anon_sym_AT] = ACTIONS(6349), + [anon_sym_QMARK] = ACTIONS(6349), + [anon_sym_0] = ACTIONS(6355), + [anon_sym__] = ACTIONS(6355), }, - [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), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), + [2653] = { + [aux_sym_concatenation_repeat1] = STATE(2730), + [sym__concat] = ACTIONS(6343), + [anon_sym_esac] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), }, - [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), + [2654] = { + [sym_subscript] = STATE(2741), + [sym_variable_name] = ACTIONS(6357), + [anon_sym_DOLLAR] = ACTIONS(6359), + [anon_sym_POUND] = ACTIONS(6361), + [anon_sym_DASH] = ACTIONS(6359), [sym_comment] = ACTIONS(177), - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6363), + [anon_sym_STAR] = ACTIONS(6359), + [anon_sym_AT] = ACTIONS(6359), + [anon_sym_QMARK] = ACTIONS(6359), + [anon_sym_0] = ACTIONS(6365), + [anon_sym__] = ACTIONS(6365), }, - [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), + [2655] = { + [sym_for_statement] = STATE(2742), + [sym_while_statement] = STATE(2742), + [sym_if_statement] = STATE(2742), + [sym_case_statement] = STATE(2742), + [sym_function_definition] = STATE(2742), + [sym_subshell] = STATE(2742), + [sym_pipeline] = STATE(2742), + [sym_list] = STATE(2742), + [sym_negated_command] = STATE(2742), + [sym_test_command] = STATE(2742), + [sym_declaration_command] = STATE(2742), + [sym_unset_command] = STATE(2742), + [sym_command] = STATE(2742), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2688), + [sym_variable_assignment] = STATE(2743), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -65978,22 +66901,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [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), + [2656] = { + [sym_for_statement] = STATE(2744), + [sym_while_statement] = STATE(2744), + [sym_if_statement] = STATE(2744), + [sym_case_statement] = STATE(2744), + [sym_function_definition] = STATE(2744), + [sym_subshell] = STATE(2744), + [sym_pipeline] = STATE(2744), + [sym_list] = STATE(2744), + [sym_negated_command] = STATE(2744), + [sym_test_command] = STATE(2744), + [sym_declaration_command] = STATE(2744), + [sym_unset_command] = STATE(2744), + [sym_command] = STATE(2744), [sym_command_name] = STATE(181), - [sym_variable_assignment] = STATE(2690), + [sym_variable_assignment] = STATE(2745), [sym_subscript] = STATE(183), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -66041,22 +66964,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(323), }, - [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), + [2657] = { + [sym_for_statement] = STATE(2746), + [sym_while_statement] = STATE(2746), + [sym_if_statement] = STATE(2746), + [sym_case_statement] = STATE(2746), + [sym_function_definition] = STATE(2746), + [sym_subshell] = STATE(2746), + [sym_pipeline] = STATE(2746), + [sym_list] = STATE(2746), + [sym_negated_command] = STATE(2746), + [sym_test_command] = STATE(2746), + [sym_declaration_command] = STATE(2746), + [sym_unset_command] = STATE(2746), + [sym_command] = STATE(2746), [sym_command_name] = STATE(164), - [sym_variable_assignment] = STATE(2692), + [sym_variable_assignment] = STATE(2747), [sym_subscript] = STATE(166), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(167), @@ -66104,4590 +67027,4680 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(301), }, - [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(6257), - }, - [2607] = { - [aux_sym_concatenation_repeat1] = STATE(2695), - [sym_file_descriptor] = ACTIONS(661), - [sym__concat] = ACTIONS(3599), - [anon_sym_esac] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_SEMI_SEMI] = ACTIONS(665), - [anon_sym_PIPE_AMP] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(665), - [anon_sym_PIPE_PIPE] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_AMP_GT] = ACTIONS(665), - [anon_sym_AMP_GT_GT] = ACTIONS(665), - [anon_sym_LT_AMP] = ACTIONS(665), - [anon_sym_GT_AMP] = ACTIONS(665), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_LT_LT_DASH] = ACTIONS(665), - [anon_sym_LT_LT_LT] = ACTIONS(665), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_LF] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(665), - }, - [2608] = { - [aux_sym_concatenation_repeat1] = STATE(2695), - [sym_file_descriptor] = ACTIONS(677), - [sym__concat] = ACTIONS(3599), - [anon_sym_esac] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(679), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_LT_LT_LT] = ACTIONS(679), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - }, - [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(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(2075), - }, - [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), - [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), - }, - [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(1009), - [anon_sym_RPAREN] = ACTIONS(6268), - [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), - }, - [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(2712), - [sym_word] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_LF] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2712), - }, - [2615] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6270), - [sym_comment] = ACTIONS(53), - }, - [2616] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6272), - [sym_comment] = ACTIONS(53), - }, - [2617] = { - [anon_sym_RBRACE] = ACTIONS(6272), - [sym_comment] = ACTIONS(53), - }, - [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(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(6278), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2790), - [sym_word] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2790), - }, - [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(6282), - }, - [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(2833), - [sym_word] = ACTIONS(2833), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2833), - }, - [2622] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6284), - }, - [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(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(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), - }, - [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(2841), - [sym_word] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2841), - [anon_sym_LF] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2841), - }, - [2625] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6288), - }, - [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(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(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), - }, - [2627] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6292), - }, - [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(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(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), - }, - [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(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(6298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2857), - [sym_word] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2857), - }, - [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(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(6304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2712), - [sym_word] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_LF] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2712), - }, - [2633] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6306), - [sym_comment] = ACTIONS(53), - }, - [2634] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6308), - [sym_comment] = ACTIONS(53), - }, - [2635] = { - [anon_sym_RBRACE] = ACTIONS(6308), - [sym_comment] = ACTIONS(53), - }, - [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(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(6314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2790), - [sym_word] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2790), - }, - [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(6318), - }, - [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(2833), - [sym_word] = ACTIONS(2833), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2833), - }, - [2640] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6320), - }, - [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(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(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), - }, - [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(2841), - [sym_word] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2841), - [anon_sym_LF] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2841), - }, - [2643] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6324), - }, - [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(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(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), - }, - [2645] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6328), - }, - [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(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(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), - }, - [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(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(6334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(2857), - [sym_word] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2857), - }, - [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(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(6340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [2651] = { - [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_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(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(5963), - }, - [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(5965), - }, - [2653] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6342), - [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(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2654] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6342), - [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(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, - [2655] = { - [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_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(5971), - }, - [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(5973), - }, - [2657] = { - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6344), - [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(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), - }, [2658] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(6344), - [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(331), - [anon_sym_LF] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(331), + [sym_concatenation] = STATE(1567), + [sym_string] = STATE(2749), + [sym_simple_expansion] = STATE(2749), + [sym_string_expansion] = STATE(2749), + [sym_expansion] = STATE(2749), + [sym_command_substitution] = STATE(2749), + [sym_process_substitution] = STATE(2749), + [sym__special_characters] = ACTIONS(6367), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(6369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2514), + [anon_sym_BQUOTE] = ACTIONS(2516), + [anon_sym_LT_LPAREN] = ACTIONS(2518), + [anon_sym_GT_LPAREN] = ACTIONS(2518), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6369), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym_file_descriptor] = ACTIONS(671), + [sym__concat] = ACTIONS(3673), + [anon_sym_esac] = ACTIONS(675), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(675), + [anon_sym_PIPE_AMP] = ACTIONS(675), + [anon_sym_AMP_AMP] = ACTIONS(675), + [anon_sym_PIPE_PIPE] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(675), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_AMP_GT] = ACTIONS(675), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(675), + [anon_sym_GT_AMP] = ACTIONS(675), + [anon_sym_LT_LT] = ACTIONS(675), + [anon_sym_LT_LT_DASH] = ACTIONS(675), + [anon_sym_LT_LT_LT] = ACTIONS(675), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5327), - [anon_sym_LF] = ACTIONS(5325), - [anon_sym_AMP] = ACTIONS(5327), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_LF] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(675), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym_file_descriptor] = ACTIONS(689), + [sym__concat] = ACTIONS(3673), + [anon_sym_esac] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_SEMI_SEMI] = ACTIONS(691), + [anon_sym_PIPE_AMP] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(691), + [anon_sym_LT_AMP] = ACTIONS(691), + [anon_sym_GT_AMP] = ACTIONS(691), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(691), + [anon_sym_LT_LT_LT] = ACTIONS(691), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5331), - [anon_sym_LF] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5331), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym_file_descriptor] = ACTIONS(2098), + [sym__concat] = ACTIONS(3673), + [anon_sym_esac] = ACTIONS(2100), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_SEMI_SEMI] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(2100), + [anon_sym_PIPE_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2100), + [anon_sym_AMP_GT] = ACTIONS(2100), + [anon_sym_AMP_GT_GT] = ACTIONS(2100), + [anon_sym_LT_AMP] = ACTIONS(2100), + [anon_sym_GT_AMP] = ACTIONS(2100), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_LT_LT_DASH] = ACTIONS(2100), + [anon_sym_LT_LT_LT] = ACTIONS(2100), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5335), - [anon_sym_LF] = ACTIONS(5333), - [anon_sym_AMP] = ACTIONS(5335), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_LF] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2100), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym_file_descriptor] = ACTIONS(2102), + [sym__concat] = ACTIONS(3673), + [anon_sym_esac] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2104), + [anon_sym_AMP_GT] = ACTIONS(2104), + [anon_sym_AMP_GT_GT] = ACTIONS(2104), + [anon_sym_LT_AMP] = ACTIONS(2104), + [anon_sym_GT_AMP] = ACTIONS(2104), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_LT_LT_DASH] = ACTIONS(2104), + [anon_sym_LT_LT_LT] = ACTIONS(2104), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LF] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2104), }, [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), + [sym_file_redirect] = STATE(2663), + [sym_heredoc_redirect] = STATE(2663), + [sym_herestring_redirect] = STATE(2663), + [aux_sym_while_statement_repeat1] = STATE(2663), + [sym_file_descriptor] = ACTIONS(6371), + [anon_sym_esac] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_SEMI_SEMI] = ACTIONS(2115), + [anon_sym_PIPE_AMP] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(6374), + [anon_sym_GT] = ACTIONS(6374), + [anon_sym_GT_GT] = ACTIONS(6374), + [anon_sym_AMP_GT] = ACTIONS(6374), + [anon_sym_AMP_GT_GT] = ACTIONS(6374), + [anon_sym_LT_AMP] = ACTIONS(6374), + [anon_sym_GT_AMP] = ACTIONS(6374), + [anon_sym_LT_LT] = ACTIONS(3703), + [anon_sym_LT_LT_DASH] = ACTIONS(3703), + [anon_sym_LT_LT_LT] = ACTIONS(6377), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2115), }, [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), + [sym_variable_name] = ACTIONS(2167), + [anon_sym_esac] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_SEMI_SEMI] = ACTIONS(2169), + [anon_sym_PIPE_AMP] = ACTIONS(2169), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [sym__special_characters] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2169), + [sym_raw_string] = ACTIONS(2169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2169), + [anon_sym_BQUOTE] = ACTIONS(2169), + [anon_sym_LT_LPAREN] = ACTIONS(2169), + [anon_sym_GT_LPAREN] = ACTIONS(2169), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2169), + [sym_word] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_LF] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2169), }, [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_concatenation] = STATE(1031), + [sym_string] = STATE(571), + [sym_simple_expansion] = STATE(571), + [sym_string_expansion] = STATE(571), + [sym_expansion] = STATE(571), + [sym_command_substitution] = STATE(571), + [sym_process_substitution] = STATE(571), + [aux_sym_for_statement_repeat1] = STATE(1031), + [anon_sym_RPAREN] = ACTIONS(6380), + [sym__special_characters] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1133), + [sym_raw_string] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_BQUOTE] = ACTIONS(1141), + [anon_sym_LT_LPAREN] = ACTIONS(1143), + [anon_sym_GT_LPAREN] = ACTIONS(1143), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1135), }, [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(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(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__concat] = ACTIONS(2756), + [sym_variable_name] = ACTIONS(2756), + [anon_sym_esac] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [sym__special_characters] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), }, [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), + [sym__concat] = ACTIONS(2770), + [sym_variable_name] = ACTIONS(2770), + [anon_sym_esac] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_SEMI_SEMI] = ACTIONS(2772), + [anon_sym_PIPE_AMP] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [sym__special_characters] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), + [anon_sym_BQUOTE] = ACTIONS(2772), + [anon_sym_LT_LPAREN] = ACTIONS(2772), + [anon_sym_GT_LPAREN] = ACTIONS(2772), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), + [sym_word] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), }, [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(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(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), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6382), + [sym_comment] = ACTIONS(53), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6384), [sym_comment] = ACTIONS(53), }, [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(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(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), + [anon_sym_RBRACE] = ACTIONS(6384), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(2755), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2755), + [anon_sym_RBRACE] = ACTIONS(6386), + [anon_sym_EQ] = ACTIONS(6388), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6388), + [anon_sym_COLON_QMARK] = ACTIONS(6388), + [anon_sym_COLON_DASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(2852), + [sym_variable_name] = ACTIONS(2852), + [anon_sym_esac] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [anon_sym_PIPE_AMP] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [sym__special_characters] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), + [anon_sym_BQUOTE] = ACTIONS(2854), + [anon_sym_LT_LPAREN] = ACTIONS(2854), + [anon_sym_GT_LPAREN] = ACTIONS(2854), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), + [sym_word] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), }, [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), - [anon_sym_PIPE_AMP] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), + [sym_concatenation] = STATE(2758), + [sym_string] = STATE(2757), + [sym_simple_expansion] = STATE(2757), + [sym_string_expansion] = STATE(2757), + [sym_expansion] = STATE(2757), + [sym_command_substitution] = STATE(2757), + [sym_process_substitution] = STATE(2757), + [anon_sym_RBRACE] = ACTIONS(6384), + [sym__special_characters] = ACTIONS(6392), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6394), }, [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), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), + [sym__concat] = ACTIONS(2895), + [sym_variable_name] = ACTIONS(2895), + [anon_sym_esac] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = 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(2897), + [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(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), + [sym_word] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2897), }, [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(6352), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6396), }, [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), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6398), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), + [sym_word] = ACTIONS(781), }, [2677] = { - [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), + [sym__concat] = ACTIONS(2903), + [sym_variable_name] = ACTIONS(2903), + [anon_sym_esac] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), + [sym_word] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), }, [2678] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6400), + }, + [2679] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6402), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2680] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6404), + }, + [2681] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6384), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2682] = { + [sym_concatenation] = STATE(2765), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2765), + [anon_sym_RBRACE] = ACTIONS(6406), + [anon_sym_EQ] = ACTIONS(6408), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2683] = { + [sym__concat] = ACTIONS(2919), + [sym_variable_name] = ACTIONS(2919), + [anon_sym_esac] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_SEMI_SEMI] = ACTIONS(2921), + [anon_sym_PIPE_AMP] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [sym__special_characters] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2921), + [anon_sym_GT_LPAREN] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), + [sym_word] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + }, + [2684] = { + [sym_concatenation] = STATE(2767), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2767), + [anon_sym_RBRACE] = ACTIONS(6412), + [anon_sym_EQ] = ACTIONS(6414), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2685] = { + [sym__concat] = ACTIONS(2756), + [anon_sym_esac] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [sym__special_characters] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), + }, + [2686] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_esac] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_SEMI_SEMI] = ACTIONS(2772), + [anon_sym_PIPE_AMP] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [sym__special_characters] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_DOLLAR] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2772), + [anon_sym_BQUOTE] = ACTIONS(2772), + [anon_sym_LT_LPAREN] = ACTIONS(2772), + [anon_sym_GT_LPAREN] = ACTIONS(2772), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2772), + [sym_word] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), + }, + [2687] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6418), + [sym_comment] = ACTIONS(53), + }, + [2688] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6420), + [sym_comment] = ACTIONS(53), + }, + [2689] = { + [anon_sym_RBRACE] = ACTIONS(6420), + [sym_comment] = ACTIONS(53), + }, + [2690] = { + [sym_concatenation] = STATE(2771), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2771), + [anon_sym_RBRACE] = ACTIONS(6422), + [anon_sym_EQ] = ACTIONS(6424), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6424), + [anon_sym_COLON_QMARK] = ACTIONS(6424), + [anon_sym_COLON_DASH] = ACTIONS(6424), + [anon_sym_PERCENT] = ACTIONS(6424), + [anon_sym_DASH] = ACTIONS(6424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2691] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_esac] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [anon_sym_PIPE_AMP] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [sym__special_characters] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), + [anon_sym_BQUOTE] = ACTIONS(2854), + [anon_sym_LT_LPAREN] = ACTIONS(2854), + [anon_sym_GT_LPAREN] = ACTIONS(2854), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2854), + [sym_word] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + }, + [2692] = { + [sym_concatenation] = STATE(2774), + [sym_string] = STATE(2773), + [sym_simple_expansion] = STATE(2773), + [sym_string_expansion] = STATE(2773), + [sym_expansion] = STATE(2773), + [sym_command_substitution] = STATE(2773), + [sym_process_substitution] = STATE(2773), + [anon_sym_RBRACE] = ACTIONS(6420), + [sym__special_characters] = ACTIONS(6428), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6430), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6430), + }, + [2693] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_esac] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = 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(2897), + [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(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), + [sym_word] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2897), + }, + [2694] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6432), + }, + [2695] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6434), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2696] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_esac] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2905), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2905), + [sym_word] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), + }, + [2697] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6436), + }, + [2698] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6438), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2699] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6440), + }, + [2700] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6420), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2701] = { + [sym_concatenation] = STATE(2781), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2781), + [anon_sym_RBRACE] = ACTIONS(6442), + [anon_sym_EQ] = ACTIONS(6444), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6444), + [anon_sym_COLON_QMARK] = ACTIONS(6444), + [anon_sym_COLON_DASH] = ACTIONS(6444), + [anon_sym_PERCENT] = ACTIONS(6444), + [anon_sym_DASH] = ACTIONS(6444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2702] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_esac] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_SEMI_SEMI] = ACTIONS(2921), + [anon_sym_PIPE_AMP] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [sym__special_characters] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2921), + [sym_raw_string] = ACTIONS(2921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2921), + [anon_sym_GT_LPAREN] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2921), + [sym_word] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + }, + [2703] = { + [sym_concatenation] = STATE(2783), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2783), + [anon_sym_RBRACE] = ACTIONS(6448), + [anon_sym_EQ] = ACTIONS(6450), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6450), + [anon_sym_COLON_QMARK] = ACTIONS(6450), + [anon_sym_COLON_DASH] = ACTIONS(6450), + [anon_sym_PERCENT] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2704] = { + [aux_sym_concatenation_repeat1] = STATE(2704), + [sym__simple_heredoc_body] = ACTIONS(1672), + [sym__heredoc_body_beginning] = ACTIONS(1672), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(1676), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + }, + [2705] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(6069), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6069), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6069), + }, + [2706] = { + [sym__special_characters] = ACTIONS(6071), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6069), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6071), + }, + [2707] = { + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(6454), + [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(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2708] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(6454), + [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(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2709] = { + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6079), + [anon_sym_BQUOTE] = ACTIONS(6079), + [anon_sym_LT_LPAREN] = ACTIONS(6079), + [anon_sym_GT_LPAREN] = ACTIONS(6079), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6077), + }, + [2710] = { + [sym__special_characters] = ACTIONS(6079), + [anon_sym_DQUOTE] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6079), + [anon_sym_BQUOTE] = ACTIONS(6079), + [anon_sym_LT_LPAREN] = ACTIONS(6079), + [anon_sym_GT_LPAREN] = ACTIONS(6079), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6079), + }, + [2711] = { + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(6456), + [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(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2712] = { + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(6456), + [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(331), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(331), + }, + [2713] = { + [sym_file_descriptor] = ACTIONS(5419), + [sym__concat] = ACTIONS(5419), + [anon_sym_esac] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5421), + [anon_sym_SEMI_SEMI] = ACTIONS(5421), + [anon_sym_PIPE_AMP] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym_AMP_GT] = ACTIONS(5421), + [anon_sym_AMP_GT_GT] = ACTIONS(5421), + [anon_sym_LT_AMP] = ACTIONS(5421), + [anon_sym_GT_AMP] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_LT_LT_DASH] = ACTIONS(5421), + [anon_sym_LT_LT_LT] = ACTIONS(5421), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LF] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5421), + }, + [2714] = { + [sym_file_descriptor] = ACTIONS(5423), + [sym__concat] = ACTIONS(5423), + [anon_sym_esac] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5425), + [anon_sym_SEMI_SEMI] = ACTIONS(5425), + [anon_sym_PIPE_AMP] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym_AMP_GT] = ACTIONS(5425), + [anon_sym_AMP_GT_GT] = ACTIONS(5425), + [anon_sym_LT_AMP] = ACTIONS(5425), + [anon_sym_GT_AMP] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_LT_LT_DASH] = ACTIONS(5425), + [anon_sym_LT_LT_LT] = ACTIONS(5425), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LF] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5425), + }, + [2715] = { + [sym_file_descriptor] = ACTIONS(5427), + [sym__concat] = ACTIONS(5427), + [anon_sym_esac] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5429), + [anon_sym_SEMI_SEMI] = ACTIONS(5429), + [anon_sym_PIPE_AMP] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym_AMP_GT] = ACTIONS(5429), + [anon_sym_AMP_GT_GT] = ACTIONS(5429), + [anon_sym_LT_AMP] = ACTIONS(5429), + [anon_sym_GT_AMP] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_LT_LT_DASH] = ACTIONS(5429), + [anon_sym_LT_LT_LT] = ACTIONS(5429), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LF] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5429), + }, + [2716] = { + [sym_file_descriptor] = ACTIONS(4831), + [sym__concat] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_PIPE_AMP] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_GT_GT] = ACTIONS(4831), + [anon_sym_AMP_GT] = ACTIONS(4833), + [anon_sym_AMP_GT_GT] = ACTIONS(4831), + [anon_sym_LT_AMP] = ACTIONS(4831), + [anon_sym_GT_AMP] = ACTIONS(4831), + [anon_sym_LT_LT] = ACTIONS(4833), + [anon_sym_LT_LT_DASH] = ACTIONS(4831), + [anon_sym_LT_LT_LT] = ACTIONS(4831), + [anon_sym_BQUOTE] = ACTIONS(4831), + [sym_comment] = ACTIONS(53), + }, + [2717] = { + [sym_file_descriptor] = ACTIONS(4835), + [sym__concat] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_PIPE_AMP] = ACTIONS(4835), + [anon_sym_AMP_AMP] = ACTIONS(4835), + [anon_sym_PIPE_PIPE] = ACTIONS(4835), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4835), + [anon_sym_AMP_GT] = ACTIONS(4837), + [anon_sym_AMP_GT_GT] = ACTIONS(4835), + [anon_sym_LT_AMP] = ACTIONS(4835), + [anon_sym_GT_AMP] = ACTIONS(4835), + [anon_sym_LT_LT] = ACTIONS(4837), + [anon_sym_LT_LT_DASH] = ACTIONS(4835), + [anon_sym_LT_LT_LT] = ACTIONS(4835), + [anon_sym_BQUOTE] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + }, + [2718] = { + [sym_file_descriptor] = ACTIONS(4839), + [sym__concat] = ACTIONS(4839), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_PIPE_AMP] = ACTIONS(4839), + [anon_sym_AMP_AMP] = ACTIONS(4839), + [anon_sym_PIPE_PIPE] = ACTIONS(4839), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_GT_GT] = ACTIONS(4839), + [anon_sym_AMP_GT] = ACTIONS(4841), + [anon_sym_AMP_GT_GT] = ACTIONS(4839), + [anon_sym_LT_AMP] = ACTIONS(4839), + [anon_sym_GT_AMP] = ACTIONS(4839), + [anon_sym_LT_LT] = ACTIONS(4841), + [anon_sym_LT_LT_DASH] = ACTIONS(4839), + [anon_sym_LT_LT_LT] = ACTIONS(4839), + [anon_sym_BQUOTE] = ACTIONS(4839), + [sym_comment] = ACTIONS(53), + }, + [2719] = { + [sym_file_descriptor] = ACTIONS(4843), + [sym__concat] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_PIPE_AMP] = ACTIONS(4843), + [anon_sym_AMP_AMP] = ACTIONS(4843), + [anon_sym_PIPE_PIPE] = ACTIONS(4843), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4843), + [anon_sym_AMP_GT] = ACTIONS(4845), + [anon_sym_AMP_GT_GT] = ACTIONS(4843), + [anon_sym_LT_AMP] = ACTIONS(4843), + [anon_sym_GT_AMP] = ACTIONS(4843), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_LT_LT_DASH] = ACTIONS(4843), + [anon_sym_LT_LT_LT] = ACTIONS(4843), + [anon_sym_BQUOTE] = ACTIONS(4843), + [sym_comment] = ACTIONS(53), + }, + [2720] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6458), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2721] = { + [sym_file_descriptor] = ACTIONS(4849), + [sym__concat] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4849), + [anon_sym_PIPE_AMP] = ACTIONS(4849), + [anon_sym_AMP_AMP] = ACTIONS(4849), + [anon_sym_PIPE_PIPE] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4851), + [anon_sym_GT] = ACTIONS(4851), + [anon_sym_GT_GT] = ACTIONS(4849), + [anon_sym_AMP_GT] = ACTIONS(4851), + [anon_sym_AMP_GT_GT] = ACTIONS(4849), + [anon_sym_LT_AMP] = ACTIONS(4849), + [anon_sym_GT_AMP] = ACTIONS(4849), + [anon_sym_LT_LT] = ACTIONS(4851), + [anon_sym_LT_LT_DASH] = ACTIONS(4849), + [anon_sym_LT_LT_LT] = ACTIONS(4849), + [anon_sym_BQUOTE] = ACTIONS(4849), + [sym_comment] = ACTIONS(53), + }, + [2722] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6460), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2723] = { + [sym_file_descriptor] = ACTIONS(4855), + [sym__concat] = ACTIONS(4855), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_PIPE_AMP] = ACTIONS(4855), + [anon_sym_AMP_AMP] = ACTIONS(4855), + [anon_sym_PIPE_PIPE] = ACTIONS(4855), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_GT_GT] = ACTIONS(4855), + [anon_sym_AMP_GT] = ACTIONS(4857), + [anon_sym_AMP_GT_GT] = ACTIONS(4855), + [anon_sym_LT_AMP] = ACTIONS(4855), + [anon_sym_GT_AMP] = ACTIONS(4855), + [anon_sym_LT_LT] = ACTIONS(4857), + [anon_sym_LT_LT_DASH] = ACTIONS(4855), + [anon_sym_LT_LT_LT] = ACTIONS(4855), + [anon_sym_BQUOTE] = ACTIONS(4855), + [sym_comment] = ACTIONS(53), + }, + [2724] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6462), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2725] = { + [sym_file_descriptor] = ACTIONS(4861), + [sym__concat] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_PIPE_AMP] = ACTIONS(4861), + [anon_sym_AMP_AMP] = ACTIONS(4861), + [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4863), + [anon_sym_GT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_AMP_GT] = ACTIONS(4863), + [anon_sym_AMP_GT_GT] = ACTIONS(4861), + [anon_sym_LT_AMP] = ACTIONS(4861), + [anon_sym_GT_AMP] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4863), + [anon_sym_LT_LT_DASH] = ACTIONS(4861), + [anon_sym_LT_LT_LT] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [sym_comment] = ACTIONS(53), + }, + [2726] = { + [sym_file_descriptor] = ACTIONS(4865), + [sym__concat] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_RPAREN] = ACTIONS(4865), + [anon_sym_PIPE_AMP] = ACTIONS(4865), + [anon_sym_AMP_AMP] = ACTIONS(4865), + [anon_sym_PIPE_PIPE] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4867), + [anon_sym_GT] = ACTIONS(4867), + [anon_sym_GT_GT] = ACTIONS(4865), + [anon_sym_AMP_GT] = ACTIONS(4867), + [anon_sym_AMP_GT_GT] = ACTIONS(4865), + [anon_sym_LT_AMP] = ACTIONS(4865), + [anon_sym_GT_AMP] = ACTIONS(4865), + [anon_sym_LT_LT] = ACTIONS(4867), + [anon_sym_LT_LT_DASH] = ACTIONS(4865), + [anon_sym_LT_LT_LT] = ACTIONS(4865), + [anon_sym_BQUOTE] = ACTIONS(4865), + [sym_comment] = ACTIONS(53), + }, + [2727] = { + [aux_sym_concatenation_repeat1] = STATE(2730), + [sym__concat] = ACTIONS(6343), + [anon_sym_esac] = ACTIONS(1107), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), + }, + [2728] = { + [aux_sym_concatenation_repeat1] = STATE(2730), + [sym__concat] = ACTIONS(6343), + [anon_sym_esac] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + }, + [2729] = { + [sym_string] = STATE(2789), + [sym_simple_expansion] = STATE(2789), + [sym_string_expansion] = STATE(2789), + [sym_expansion] = STATE(2789), + [sym_command_substitution] = STATE(2789), + [sym_process_substitution] = STATE(2789), + [sym__special_characters] = ACTIONS(6464), + [anon_sym_DQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR] = ACTIONS(6169), + [sym_raw_string] = ACTIONS(6464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6175), + [anon_sym_BQUOTE] = ACTIONS(6177), + [anon_sym_LT_LPAREN] = ACTIONS(6179), + [anon_sym_GT_LPAREN] = ACTIONS(6179), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6464), + }, + [2730] = { + [aux_sym_concatenation_repeat1] = STATE(2790), + [sym__concat] = ACTIONS(6343), + [anon_sym_esac] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + }, + [2731] = { + [sym__concat] = ACTIONS(709), + [anon_sym_esac] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(711), + [anon_sym_PIPE_AMP] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(711), + [anon_sym_PIPE_PIPE] = ACTIONS(711), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + }, + [2732] = { + [anon_sym_DQUOTE] = ACTIONS(6466), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [2733] = { [sym_simple_expansion] = STATE(129), [sym_expansion] = STATE(129), [sym_command_substitution] = STATE(129), - [aux_sym_string_repeat1] = STATE(406), - [anon_sym_DQUOTE] = ACTIONS(6354), - [anon_sym_DOLLAR] = ACTIONS(229), + [aux_sym_string_repeat1] = STATE(413), + [anon_sym_DQUOTE] = ACTIONS(6466), + [anon_sym_DOLLAR] = ACTIONS(6468), [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), }, - [2679] = { - [sym__concat] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - }, - [2680] = { - [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), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2681] = { - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [2682] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6356), - [sym_comment] = ACTIONS(53), - }, - [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(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(6362), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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), - }, - [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(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(6378), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(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(6386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [2687] = { - [anon_sym_PIPE] = ACTIONS(869), - [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), - }, - [2688] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6390), - [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), - }, - [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(6390), - [sym_comment] = ACTIONS(53), - }, - [2690] = { - [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(6390), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(369), - }, - [2691] = { - [anon_sym_PIPE] = ACTIONS(869), - [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), - }, - [2692] = { - [sym_file_descriptor] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(6392), - [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), - }, - [2693] = { - [aux_sym_concatenation_repeat1] = STATE(2695), - [sym_file_descriptor] = ACTIONS(1089), - [sym__concat] = ACTIONS(3599), - [anon_sym_esac] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_SEMI_SEMI] = ACTIONS(1091), - [anon_sym_PIPE_AMP] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_AMP_GT] = ACTIONS(1091), - [anon_sym_AMP_GT_GT] = ACTIONS(1091), - [anon_sym_LT_AMP] = ACTIONS(1091), - [anon_sym_GT_AMP] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_LT_LT_DASH] = ACTIONS(1091), - [anon_sym_LT_LT_LT] = ACTIONS(1091), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - }, - [2694] = { - [aux_sym_concatenation_repeat1] = STATE(2695), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(3599), - [anon_sym_esac] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_SEMI_SEMI] = ACTIONS(1095), - [anon_sym_PIPE_AMP] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1095), - [anon_sym_AMP_GT_GT] = ACTIONS(1095), - [anon_sym_LT_AMP] = ACTIONS(1095), - [anon_sym_GT_AMP] = ACTIONS(1095), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_LT_LT_DASH] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1095), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - }, - [2695] = { - [aux_sym_concatenation_repeat1] = STATE(2753), - [sym_file_descriptor] = ACTIONS(693), - [sym__concat] = ACTIONS(3599), - [anon_sym_esac] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(695), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_LT_LT_DASH] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(695), - [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_LF] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(695), - }, - [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(3339), - [sym_word] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3339), - }, - [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(3831), - [sym_word] = ACTIONS(3831), - [anon_sym_SEMI] = ACTIONS(3831), - [anon_sym_LF] = ACTIONS(3829), - [anon_sym_AMP] = ACTIONS(3831), - }, - [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(3837), - [sym_word] = ACTIONS(3837), - [anon_sym_SEMI] = ACTIONS(3837), - [anon_sym_LF] = ACTIONS(3835), - [anon_sym_AMP] = ACTIONS(3837), - }, - [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(3922), - [sym_word] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3922), - [anon_sym_LF] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3922), - }, - [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(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(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), - }, - [2701] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6396), - [sym_comment] = ACTIONS(53), - }, - [2702] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6398), - [sym_comment] = ACTIONS(53), - }, - [2703] = { - [anon_sym_RBRACE] = ACTIONS(6398), - [sym_comment] = ACTIONS(53), - }, - [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(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(6404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3938), - [sym_word] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3938), - [anon_sym_LF] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3938), - }, - [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(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(6410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3948), - [sym_word] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_LF] = ACTIONS(3946), - [anon_sym_AMP] = ACTIONS(3948), - }, - [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(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(6416), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3958), - [sym_word] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3958), - [anon_sym_LF] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3958), - }, - [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(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(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), - }, - [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(3964), - [sym_word] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3964), - }, - [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(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(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), - }, - [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(3831), - [sym_word] = ACTIONS(3831), - [anon_sym_SEMI] = ACTIONS(3831), - [anon_sym_LF] = ACTIONS(3829), - [anon_sym_AMP] = ACTIONS(3831), - }, - [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(3837), - [sym_word] = ACTIONS(3837), - [anon_sym_SEMI] = ACTIONS(3837), - [anon_sym_LF] = ACTIONS(3835), - [anon_sym_AMP] = ACTIONS(3837), - }, - [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(3922), - [sym_word] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3922), - [anon_sym_LF] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3922), - }, - [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(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(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), - }, - [2717] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6424), - [sym_comment] = ACTIONS(53), - }, - [2718] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6426), - [sym_comment] = ACTIONS(53), - }, - [2719] = { - [anon_sym_RBRACE] = ACTIONS(6426), - [sym_comment] = ACTIONS(53), - }, - [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(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(6432), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3938), - [sym_word] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3938), - [anon_sym_LF] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3938), - }, - [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(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(6438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3948), - [sym_word] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_LF] = ACTIONS(3946), - [anon_sym_AMP] = ACTIONS(3948), - }, - [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(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(6444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), - }, - [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(3958), - [sym_word] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3958), - [anon_sym_LF] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3958), - }, - [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(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(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), - }, - [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(3964), - [sym_word] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3964), - }, - [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(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(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), - }, - [2729] = { - [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_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(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(6177), - }, - [2730] = { - [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_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(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(6183), - }, - [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), - }, - [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), - }, - [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), - }, [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__concat] = ACTIONS(741), + [anon_sym_esac] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), }, [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__concat] = ACTIONS(745), + [anon_sym_esac] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_SEMI_SEMI] = ACTIONS(747), + [anon_sym_PIPE_AMP] = ACTIONS(747), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(747), }, [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__concat] = ACTIONS(749), + [anon_sym_esac] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_SEMI_SEMI] = ACTIONS(751), + [anon_sym_PIPE_AMP] = ACTIONS(751), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LF] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(751), }, [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), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(6470), [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_concatenation] = STATE(2796), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2796), + [anon_sym_RBRACE] = ACTIONS(6472), + [anon_sym_EQ] = ACTIONS(6474), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6478), + [anon_sym_COLON] = ACTIONS(6474), + [anon_sym_COLON_QMARK] = ACTIONS(6474), + [anon_sym_COLON_DASH] = ACTIONS(6474), + [anon_sym_PERCENT] = ACTIONS(6474), + [anon_sym_DASH] = ACTIONS(6474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_LF] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1734), + [sym_word] = ACTIONS(781), }, [2739] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6459), + [sym_subscript] = STATE(2800), + [sym_variable_name] = ACTIONS(6480), + [anon_sym_DOLLAR] = ACTIONS(6482), + [anon_sym_DASH] = ACTIONS(6482), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6484), + [anon_sym_STAR] = ACTIONS(6482), + [anon_sym_AT] = ACTIONS(6482), + [anon_sym_QMARK] = ACTIONS(6482), + [anon_sym_0] = ACTIONS(6486), + [anon_sym__] = ACTIONS(6486), }, [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(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(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_concatenation] = STATE(2803), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2803), + [anon_sym_RBRACE] = ACTIONS(6488), + [anon_sym_EQ] = ACTIONS(6490), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6492), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6494), + [anon_sym_COLON] = ACTIONS(6490), + [anon_sym_COLON_QMARK] = ACTIONS(6490), + [anon_sym_COLON_DASH] = ACTIONS(6490), + [anon_sym_PERCENT] = ACTIONS(6490), + [anon_sym_DASH] = ACTIONS(6490), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [2741] = { - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(6463), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2806), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2806), + [anon_sym_RBRACE] = ACTIONS(6496), + [anon_sym_EQ] = ACTIONS(6498), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_COLON] = ACTIONS(6498), + [anon_sym_COLON_QMARK] = ACTIONS(6498), + [anon_sym_COLON_DASH] = ACTIONS(6498), + [anon_sym_PERCENT] = ACTIONS(6498), + [anon_sym_DASH] = ACTIONS(6498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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(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(6469), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(6504), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), }, [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(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(6477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [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(885), + [anon_sym_RPAREN] = ACTIONS(6504), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), }, [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(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(6483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6504), + [sym_comment] = ACTIONS(53), }, [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(1800), - [anon_sym_LF] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1800), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [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(6504), + [anon_sym_LT_LPAREN] = ACTIONS(369), + [anon_sym_GT_LPAREN] = ACTIONS(369), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(369), }, [2746] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6487), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(6506), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [sym_comment] = ACTIONS(53), }, [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(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(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), + [sym_file_descriptor] = ACTIONS(369), + [sym_variable_name] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(6506), + [anon_sym_PIPE_AMP] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [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), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym_file_descriptor] = ACTIONS(1105), + [sym__concat] = ACTIONS(3673), + [anon_sym_esac] = ACTIONS(1107), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1107), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1107), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_LF] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), }, [2749] = { + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym_file_descriptor] = ACTIONS(1109), + [sym__concat] = ACTIONS(3673), + [anon_sym_esac] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1111), + [anon_sym_LT_AMP] = ACTIONS(1111), + [anon_sym_GT_AMP] = ACTIONS(1111), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1111), + [anon_sym_LT_LT_LT] = ACTIONS(1111), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6491), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), }, [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(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(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), + [aux_sym_concatenation_repeat1] = STATE(2809), + [sym_file_descriptor] = ACTIONS(705), + [sym__concat] = ACTIONS(3673), + [anon_sym_esac] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(707), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), }, [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_variable_name] = ACTIONS(3409), + [anon_sym_esac] = ACTIONS(3411), + [anon_sym_PIPE] = ACTIONS(3411), + [anon_sym_SEMI_SEMI] = ACTIONS(3411), + [anon_sym_PIPE_AMP] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_PIPE_PIPE] = ACTIONS(3411), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [anon_sym_DOLLAR] = ACTIONS(3411), + [sym_raw_string] = ACTIONS(3411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3411), + [anon_sym_BQUOTE] = ACTIONS(3411), + [anon_sym_LT_LPAREN] = ACTIONS(3411), + [anon_sym_GT_LPAREN] = ACTIONS(3411), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_LF] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3411), + [sym_word] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_LF] = ACTIONS(3409), + [anon_sym_AMP] = ACTIONS(3411), }, [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__concat] = ACTIONS(3905), + [sym_variable_name] = ACTIONS(3905), + [anon_sym_esac] = ACTIONS(3907), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_SEMI_SEMI] = ACTIONS(3907), + [anon_sym_PIPE_AMP] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [sym__special_characters] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), + [anon_sym_BQUOTE] = ACTIONS(3907), + [anon_sym_LT_LPAREN] = ACTIONS(3907), + [anon_sym_GT_LPAREN] = ACTIONS(3907), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LF] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2008), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), + [sym_word] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), }, [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__concat] = ACTIONS(3913), + [sym_variable_name] = ACTIONS(3913), + [anon_sym_esac] = ACTIONS(3915), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_SEMI_SEMI] = ACTIONS(3915), + [anon_sym_PIPE_AMP] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [sym__special_characters] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), + [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_LT_LPAREN] = ACTIONS(3915), + [anon_sym_GT_LPAREN] = ACTIONS(3915), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), + [sym_word] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3915), }, [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__concat] = ACTIONS(4000), + [sym_variable_name] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_SEMI_SEMI] = ACTIONS(4002), + [anon_sym_PIPE_AMP] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [sym__special_characters] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), + [anon_sym_BQUOTE] = ACTIONS(4002), + [anon_sym_LT_LPAREN] = ACTIONS(4002), + [anon_sym_GT_LPAREN] = ACTIONS(4002), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), + [sym_word] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4002), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6508), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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(4751), - [sym_word] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4751), - [anon_sym_LF] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4751), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6510), + [sym_comment] = ACTIONS(53), }, [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(4755), - [sym_word] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_LF] = ACTIONS(4753), - [anon_sym_AMP] = ACTIONS(4755), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6512), + [sym_comment] = ACTIONS(53), }, [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(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(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), + [anon_sym_RBRACE] = ACTIONS(6512), + [sym_comment] = ACTIONS(53), }, [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_concatenation] = STATE(2814), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2814), + [anon_sym_RBRACE] = ACTIONS(6514), + [anon_sym_EQ] = ACTIONS(6516), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6516), + [anon_sym_COLON_QMARK] = ACTIONS(6516), + [anon_sym_COLON_DASH] = ACTIONS(6516), + [anon_sym_PERCENT] = ACTIONS(6516), + [anon_sym_DASH] = ACTIONS(6516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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(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(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__concat] = ACTIONS(4016), + [sym_variable_name] = ACTIONS(4016), + [anon_sym_esac] = ACTIONS(4018), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_SEMI_SEMI] = ACTIONS(4018), + [anon_sym_PIPE_AMP] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_PIPE_PIPE] = ACTIONS(4018), + [sym__special_characters] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4018), + [anon_sym_LT_LPAREN] = ACTIONS(4018), + [anon_sym_GT_LPAREN] = ACTIONS(4018), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), + [sym_word] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4018), }, [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_concatenation] = STATE(2816), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2816), + [anon_sym_RBRACE] = ACTIONS(6520), + [anon_sym_EQ] = ACTIONS(6522), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6522), + [anon_sym_COLON_QMARK] = ACTIONS(6522), + [anon_sym_COLON_DASH] = ACTIONS(6522), + [anon_sym_PERCENT] = ACTIONS(6522), + [anon_sym_DASH] = ACTIONS(6522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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(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(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__concat] = ACTIONS(4026), + [sym_variable_name] = ACTIONS(4026), + [anon_sym_esac] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_SEMI_SEMI] = ACTIONS(4028), + [anon_sym_PIPE_AMP] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [sym__special_characters] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(4028), + [sym_raw_string] = ACTIONS(4028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), + [anon_sym_BQUOTE] = ACTIONS(4028), + [anon_sym_LT_LPAREN] = ACTIONS(4028), + [anon_sym_GT_LPAREN] = ACTIONS(4028), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), + [sym_word] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4028), }, [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_concatenation] = STATE(2818), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2818), + [anon_sym_RBRACE] = ACTIONS(6526), + [anon_sym_EQ] = ACTIONS(6528), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6528), + [anon_sym_COLON_QMARK] = ACTIONS(6528), + [anon_sym_COLON_DASH] = ACTIONS(6528), + [anon_sym_PERCENT] = ACTIONS(6528), + [anon_sym_DASH] = ACTIONS(6528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4036), + [sym_variable_name] = ACTIONS(4036), + [anon_sym_esac] = ACTIONS(4038), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_SEMI_SEMI] = ACTIONS(4038), + [anon_sym_PIPE_AMP] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_PIPE_PIPE] = ACTIONS(4038), + [sym__special_characters] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(4038), + [sym_raw_string] = ACTIONS(4038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), + [anon_sym_BQUOTE] = ACTIONS(4038), + [anon_sym_LT_LPAREN] = ACTIONS(4038), + [anon_sym_GT_LPAREN] = ACTIONS(4038), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), + [sym_word] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4038), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6532), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4042), + [sym_variable_name] = ACTIONS(4042), + [anon_sym_esac] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4044), + [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(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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), + [sym_word] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4044), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6534), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(3905), + [anon_sym_esac] = ACTIONS(3907), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_SEMI_SEMI] = ACTIONS(3907), + [anon_sym_PIPE_AMP] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [sym__special_characters] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3907), + [sym_raw_string] = ACTIONS(3907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3907), + [anon_sym_BQUOTE] = ACTIONS(3907), + [anon_sym_LT_LPAREN] = ACTIONS(3907), + [anon_sym_GT_LPAREN] = ACTIONS(3907), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3907), + [sym_word] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), }, [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(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(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__concat] = ACTIONS(3913), + [anon_sym_esac] = ACTIONS(3915), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_SEMI_SEMI] = ACTIONS(3915), + [anon_sym_PIPE_AMP] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [sym__special_characters] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [anon_sym_DOLLAR] = ACTIONS(3915), + [sym_raw_string] = ACTIONS(3915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), + [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_LT_LPAREN] = ACTIONS(3915), + [anon_sym_GT_LPAREN] = ACTIONS(3915), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3915), + [sym_word] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3915), }, [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__concat] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_SEMI_SEMI] = ACTIONS(4002), + [anon_sym_PIPE_AMP] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [sym__special_characters] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [sym_raw_string] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4002), + [anon_sym_BQUOTE] = ACTIONS(4002), + [anon_sym_LT_LPAREN] = ACTIONS(4002), + [anon_sym_GT_LPAREN] = ACTIONS(4002), [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4002), + [sym_word] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4002), }, [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(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(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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6536), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [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(4767), - [sym_word] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4767), - [anon_sym_LF] = ACTIONS(4765), - [anon_sym_AMP] = ACTIONS(4767), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6538), + [sym_comment] = ACTIONS(53), }, [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(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(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), + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6540), + [sym_comment] = ACTIONS(53), }, [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(4773), - [sym_word] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4773), - [anon_sym_LF] = ACTIONS(4771), - [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_RBRACE] = ACTIONS(6540), + [sym_comment] = ACTIONS(53), }, [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_concatenation] = STATE(2825), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2825), + [anon_sym_RBRACE] = ACTIONS(6542), + [anon_sym_EQ] = ACTIONS(6544), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6546), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6544), + [anon_sym_COLON_QMARK] = ACTIONS(6544), + [anon_sym_COLON_DASH] = ACTIONS(6544), + [anon_sym_PERCENT] = ACTIONS(6544), + [anon_sym_DASH] = ACTIONS(6544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4016), + [anon_sym_esac] = ACTIONS(4018), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_SEMI_SEMI] = ACTIONS(4018), + [anon_sym_PIPE_AMP] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_PIPE_PIPE] = ACTIONS(4018), + [sym__special_characters] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4018), + [sym_raw_string] = ACTIONS(4018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4018), + [anon_sym_BQUOTE] = ACTIONS(4018), + [anon_sym_LT_LPAREN] = ACTIONS(4018), + [anon_sym_GT_LPAREN] = ACTIONS(4018), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_LF] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2712), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4018), + [sym_word] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4018), }, [2777] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6505), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2827), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2827), + [anon_sym_RBRACE] = ACTIONS(6548), + [anon_sym_EQ] = ACTIONS(6550), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym_COLON_QMARK] = ACTIONS(6550), + [anon_sym_COLON_DASH] = ACTIONS(6550), + [anon_sym_PERCENT] = ACTIONS(6550), + [anon_sym_DASH] = ACTIONS(6550), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [2778] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6507), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4026), + [anon_sym_esac] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_SEMI_SEMI] = ACTIONS(4028), + [anon_sym_PIPE_AMP] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [sym__special_characters] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(4028), + [sym_raw_string] = ACTIONS(4028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4028), + [anon_sym_BQUOTE] = ACTIONS(4028), + [anon_sym_LT_LPAREN] = ACTIONS(4028), + [anon_sym_GT_LPAREN] = ACTIONS(4028), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4028), + [sym_word] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4028), }, [2779] = { - [anon_sym_RBRACE] = ACTIONS(6507), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2829), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2829), + [anon_sym_RBRACE] = ACTIONS(6554), + [anon_sym_EQ] = ACTIONS(6556), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6556), + [anon_sym_COLON_QMARK] = ACTIONS(6556), + [anon_sym_COLON_DASH] = ACTIONS(6556), + [anon_sym_PERCENT] = ACTIONS(6556), + [anon_sym_DASH] = ACTIONS(6556), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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(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(6513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(4036), + [anon_sym_esac] = ACTIONS(4038), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_SEMI_SEMI] = ACTIONS(4038), + [anon_sym_PIPE_AMP] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_PIPE_PIPE] = ACTIONS(4038), + [sym__special_characters] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(4038), + [sym_raw_string] = ACTIONS(4038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4038), + [anon_sym_BQUOTE] = ACTIONS(4038), + [anon_sym_LT_LPAREN] = ACTIONS(4038), + [anon_sym_GT_LPAREN] = ACTIONS(4038), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4038), + [sym_word] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4038), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6560), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2790), + [sym_word] = ACTIONS(781), }, [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), + [sym__concat] = ACTIONS(4042), + [anon_sym_esac] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [sym__special_characters] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4044), + [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(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4044), + [sym_word] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4044), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6562), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2833), + [sym_word] = ACTIONS(781), }, [2784] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6519), + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(6287), + [anon_sym_DQUOTE] = ACTIONS(6289), + [anon_sym_DOLLAR] = ACTIONS(6287), + [sym_raw_string] = ACTIONS(6289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6289), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6289), + [anon_sym_BQUOTE] = ACTIONS(6289), + [anon_sym_LT_LPAREN] = ACTIONS(6289), + [anon_sym_GT_LPAREN] = ACTIONS(6289), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6287), }, [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(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(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), + [sym_file_descriptor] = ACTIONS(967), + [sym_variable_name] = ACTIONS(967), + [anon_sym_for] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(969), + [anon_sym_typeset] = ACTIONS(969), + [anon_sym_export] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(969), + [anon_sym_local] = ACTIONS(969), + [anon_sym_unset] = ACTIONS(969), + [anon_sym_unsetenv] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym__special_characters] = ACTIONS(6293), + [anon_sym_DQUOTE] = ACTIONS(6295), + [anon_sym_DOLLAR] = ACTIONS(6293), + [sym_raw_string] = ACTIONS(6295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6295), + [anon_sym_BQUOTE] = ACTIONS(6295), + [anon_sym_LT_LPAREN] = ACTIONS(6295), + [anon_sym_GT_LPAREN] = ACTIONS(6295), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6293), }, [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(2841), - [anon_sym_LF] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2841), + [sym_file_descriptor] = ACTIONS(5419), + [sym__concat] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_PIPE_AMP] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_AMP_GT] = ACTIONS(5421), + [anon_sym_AMP_GT_GT] = ACTIONS(5419), + [anon_sym_LT_AMP] = ACTIONS(5419), + [anon_sym_GT_AMP] = ACTIONS(5419), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_LT_LT_DASH] = ACTIONS(5419), + [anon_sym_LT_LT_LT] = ACTIONS(5419), + [anon_sym_BQUOTE] = ACTIONS(5419), + [sym_comment] = ACTIONS(53), }, [2787] = { - [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6523), + [sym_file_descriptor] = ACTIONS(5423), + [sym__concat] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_PIPE_AMP] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5423), + [anon_sym_AMP_GT] = ACTIONS(5425), + [anon_sym_AMP_GT_GT] = ACTIONS(5423), + [anon_sym_LT_AMP] = ACTIONS(5423), + [anon_sym_GT_AMP] = ACTIONS(5423), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_LT_LT_DASH] = ACTIONS(5423), + [anon_sym_LT_LT_LT] = ACTIONS(5423), + [anon_sym_BQUOTE] = ACTIONS(5423), + [sym_comment] = ACTIONS(53), }, [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(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(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), + [sym_file_descriptor] = ACTIONS(5427), + [sym__concat] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_PIPE_AMP] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5427), + [anon_sym_AMP_GT] = ACTIONS(5429), + [anon_sym_AMP_GT_GT] = ACTIONS(5427), + [anon_sym_LT_AMP] = ACTIONS(5427), + [anon_sym_GT_AMP] = ACTIONS(5427), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_LT_LT_DASH] = ACTIONS(5427), + [anon_sym_LT_LT_LT] = ACTIONS(5427), + [anon_sym_BQUOTE] = ACTIONS(5427), + [sym_comment] = ACTIONS(53), }, [2789] = { + [sym__concat] = ACTIONS(1672), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), [sym_comment] = ACTIONS(177), - [sym_regex_without_right_brace] = ACTIONS(6527), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), }, [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(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(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), + [aux_sym_concatenation_repeat1] = STATE(2790), + [sym__concat] = ACTIONS(6564), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), }, [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(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(6533), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(1679), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), }, [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), + [anon_sym_DQUOTE] = ACTIONS(6567), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2857), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(719), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), }, [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(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(6539), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_concatenation] = STATE(2836), + [sym_string] = STATE(2835), + [sym_simple_expansion] = STATE(2835), + [sym_string_expansion] = STATE(2835), + [sym_expansion] = STATE(2835), + [sym_command_substitution] = STATE(2835), + [sym_process_substitution] = STATE(2835), + [anon_sym_RBRACE] = ACTIONS(6569), + [sym__special_characters] = ACTIONS(6571), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6573), }, [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__concat] = ACTIONS(1764), + [anon_sym_esac] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), [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), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_LF] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), }, [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), + [sym_regex_without_right_brace] = ACTIONS(6575), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6577), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(6579), + [sym_comment] = ACTIONS(53), }, [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_concatenation] = STATE(2842), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2842), + [anon_sym_RBRACE] = ACTIONS(6581), + [anon_sym_EQ] = ACTIONS(6583), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6587), + [anon_sym_COLON] = ACTIONS(6583), + [anon_sym_COLON_QMARK] = ACTIONS(6583), + [anon_sym_COLON_DASH] = ACTIONS(6583), + [anon_sym_PERCENT] = ACTIONS(6583), + [anon_sym_DASH] = ACTIONS(6583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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_concatenation] = STATE(2845), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2845), + [anon_sym_RBRACE] = ACTIONS(6589), + [anon_sym_EQ] = ACTIONS(6591), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6595), + [anon_sym_COLON] = ACTIONS(6591), + [anon_sym_COLON_QMARK] = ACTIONS(6591), + [anon_sym_COLON_DASH] = ACTIONS(6591), + [anon_sym_PERCENT] = ACTIONS(6591), + [anon_sym_DASH] = ACTIONS(6591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [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), + [sym_word] = ACTIONS(781), }, [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_concatenation] = STATE(2847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2847), + [anon_sym_RBRACE] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6597), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(6601), + [anon_sym_COLON] = ACTIONS(6597), + [anon_sym_COLON_QMARK] = ACTIONS(6597), + [anon_sym_COLON_DASH] = ACTIONS(6597), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_DASH] = ACTIONS(6597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3831), - [anon_sym_LF] = ACTIONS(3829), - [anon_sym_AMP] = ACTIONS(3831), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3837), - [anon_sym_LF] = ACTIONS(3835), - [anon_sym_AMP] = ACTIONS(3837), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), }, [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), + [sym_regex_without_right_brace] = ACTIONS(6603), }, [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(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(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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6605), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [sym_word] = ACTIONS(781), }, [2804] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6543), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1842), + [anon_sym_PIPE_AMP] = ACTIONS(1842), + [anon_sym_AMP_AMP] = ACTIONS(1842), + [anon_sym_PIPE_PIPE] = ACTIONS(1842), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), }, [2805] = { - [aux_sym_concatenation_repeat1] = STATE(1235), - [sym__concat] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(6545), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6607), }, [2806] = { - [anon_sym_RBRACE] = ACTIONS(6545), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), }, [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(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(6551), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(1980), + [anon_sym_esac] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1982), + [anon_sym_PIPE_AMP] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_PIPE_PIPE] = ACTIONS(1982), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), }, [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__concat] = ACTIONS(2046), + [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), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3938), - [anon_sym_LF] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LF] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2048), }, [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(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(6557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [aux_sym_concatenation_repeat1] = STATE(2809), + [sym_file_descriptor] = ACTIONS(1672), + [sym__concat] = ACTIONS(5276), + [anon_sym_esac] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_SEMI_SEMI] = ACTIONS(1674), + [anon_sym_PIPE_AMP] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_AMP_GT] = ACTIONS(1674), + [anon_sym_AMP_GT_GT] = ACTIONS(1674), + [anon_sym_LT_AMP] = ACTIONS(1674), + [anon_sym_GT_AMP] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_LT_LT_DASH] = ACTIONS(1674), + [anon_sym_LT_LT_LT] = ACTIONS(1674), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LF] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), }, [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__concat] = ACTIONS(4831), + [sym_variable_name] = ACTIONS(4831), + [anon_sym_esac] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_SEMI_SEMI] = ACTIONS(4833), + [anon_sym_PIPE_AMP] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4833), + [anon_sym_PIPE_PIPE] = ACTIONS(4833), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), + [anon_sym_BQUOTE] = ACTIONS(4833), + [anon_sym_LT_LPAREN] = ACTIONS(4833), + [anon_sym_GT_LPAREN] = ACTIONS(4833), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_LF] = ACTIONS(3946), - [anon_sym_AMP] = ACTIONS(3948), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), + [sym_word] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4833), }, [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(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(6563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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), - [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym__concat] = ACTIONS(4835), + [sym_variable_name] = ACTIONS(4835), + [anon_sym_esac] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_SEMI_SEMI] = ACTIONS(4837), + [anon_sym_PIPE_AMP] = ACTIONS(4837), + [anon_sym_AMP_AMP] = ACTIONS(4837), + [anon_sym_PIPE_PIPE] = ACTIONS(4837), + [sym__special_characters] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(4837), + [anon_sym_LT_LPAREN] = ACTIONS(4837), + [anon_sym_GT_LPAREN] = ACTIONS(4837), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), + [sym_word] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4837), }, [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__concat] = ACTIONS(4839), + [sym_variable_name] = ACTIONS(4839), + [anon_sym_esac] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_SEMI_SEMI] = ACTIONS(4841), + [anon_sym_PIPE_AMP] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(4841), + [anon_sym_DQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), + [anon_sym_BQUOTE] = ACTIONS(4841), + [anon_sym_LT_LPAREN] = ACTIONS(4841), + [anon_sym_GT_LPAREN] = ACTIONS(4841), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3958), - [anon_sym_LF] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3958), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), + [sym_word] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4841), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4841), }, [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(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(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__concat] = ACTIONS(4843), + [sym_variable_name] = ACTIONS(4843), + [anon_sym_esac] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_SEMI_SEMI] = ACTIONS(4845), + [anon_sym_PIPE_AMP] = ACTIONS(4845), + [anon_sym_AMP_AMP] = ACTIONS(4845), + [anon_sym_PIPE_PIPE] = ACTIONS(4845), + [sym__special_characters] = ACTIONS(4845), + [anon_sym_DQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), + [anon_sym_BQUOTE] = ACTIONS(4845), + [anon_sym_LT_LPAREN] = ACTIONS(4845), + [anon_sym_GT_LPAREN] = ACTIONS(4845), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), + [sym_word] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4845), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4845), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6609), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3964), + [sym_word] = ACTIONS(781), }, [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(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(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__concat] = ACTIONS(4849), + [sym_variable_name] = ACTIONS(4849), + [anon_sym_esac] = ACTIONS(4851), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [anon_sym_PIPE_AMP] = ACTIONS(4851), + [anon_sym_AMP_AMP] = ACTIONS(4851), + [anon_sym_PIPE_PIPE] = ACTIONS(4851), + [sym__special_characters] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), + [anon_sym_BQUOTE] = ACTIONS(4851), + [anon_sym_LT_LPAREN] = ACTIONS(4851), + [anon_sym_GT_LPAREN] = ACTIONS(4851), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), + [sym_word] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4849), + [anon_sym_AMP] = ACTIONS(4851), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6611), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_LF] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4855), + [sym_variable_name] = ACTIONS(4855), + [anon_sym_esac] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_SEMI_SEMI] = ACTIONS(4857), + [anon_sym_PIPE_AMP] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [sym__special_characters] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), + [anon_sym_BQUOTE] = ACTIONS(4857), + [anon_sym_LT_LPAREN] = ACTIONS(4857), + [anon_sym_GT_LPAREN] = ACTIONS(4857), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_LF] = ACTIONS(4745), - [anon_sym_AMP] = ACTIONS(4747), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), + [sym_word] = ACTIONS(4857), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LF] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4857), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6613), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4751), - [anon_sym_LF] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4751), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4861), + [sym_variable_name] = ACTIONS(4861), + [anon_sym_esac] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_SEMI_SEMI] = ACTIONS(4863), + [anon_sym_PIPE_AMP] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [sym__special_characters] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(4863), + [anon_sym_LT_LPAREN] = ACTIONS(4863), + [anon_sym_GT_LPAREN] = ACTIONS(4863), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_LF] = ACTIONS(4753), - [anon_sym_AMP] = ACTIONS(4755), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), + [sym_word] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4863), }, [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(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(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__concat] = ACTIONS(4865), + [sym_variable_name] = ACTIONS(4865), + [anon_sym_esac] = ACTIONS(4867), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_SEMI_SEMI] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(4867), + [anon_sym_DQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4867), + [anon_sym_LT_LPAREN] = ACTIONS(4867), + [anon_sym_GT_LPAREN] = ACTIONS(4867), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), + [sym_word] = ACTIONS(4867), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_LF] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4867), }, [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__concat] = ACTIONS(4831), + [anon_sym_esac] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_SEMI_SEMI] = ACTIONS(4833), + [anon_sym_PIPE_AMP] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4833), + [anon_sym_PIPE_PIPE] = ACTIONS(4833), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4833), + [anon_sym_BQUOTE] = ACTIONS(4833), + [anon_sym_LT_LPAREN] = ACTIONS(4833), + [anon_sym_GT_LPAREN] = ACTIONS(4833), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4761), - [anon_sym_LF] = ACTIONS(4759), - [anon_sym_AMP] = ACTIONS(4761), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), + [sym_word] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4833), }, [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(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(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__concat] = ACTIONS(4835), + [anon_sym_esac] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_SEMI_SEMI] = ACTIONS(4837), + [anon_sym_PIPE_AMP] = ACTIONS(4837), + [anon_sym_AMP_AMP] = ACTIONS(4837), + [anon_sym_PIPE_PIPE] = ACTIONS(4837), + [sym__special_characters] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR] = ACTIONS(4837), + [sym_raw_string] = ACTIONS(4837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(4837), + [anon_sym_LT_LPAREN] = ACTIONS(4837), + [anon_sym_GT_LPAREN] = ACTIONS(4837), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4837), + [sym_word] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4837), }, [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__concat] = ACTIONS(4839), + [anon_sym_esac] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_SEMI_SEMI] = ACTIONS(4841), + [anon_sym_PIPE_AMP] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(4841), + [anon_sym_DQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR] = ACTIONS(4841), + [sym_raw_string] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4841), + [anon_sym_BQUOTE] = ACTIONS(4841), + [anon_sym_LT_LPAREN] = ACTIONS(4841), + [anon_sym_GT_LPAREN] = ACTIONS(4841), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4767), - [anon_sym_LF] = ACTIONS(4765), - [anon_sym_AMP] = ACTIONS(4767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4841), + [sym_word] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4841), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4841), }, [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(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(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__concat] = ACTIONS(4843), + [anon_sym_esac] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_SEMI_SEMI] = ACTIONS(4845), + [anon_sym_PIPE_AMP] = ACTIONS(4845), + [anon_sym_AMP_AMP] = ACTIONS(4845), + [anon_sym_PIPE_PIPE] = ACTIONS(4845), + [sym__special_characters] = ACTIONS(4845), + [anon_sym_DQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR] = ACTIONS(4845), + [sym_raw_string] = ACTIONS(4845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4845), + [anon_sym_BQUOTE] = ACTIONS(4845), + [anon_sym_LT_LPAREN] = ACTIONS(4845), + [anon_sym_GT_LPAREN] = ACTIONS(4845), [sym_comment] = ACTIONS(177), - [sym_word] = ACTIONS(767), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), + [sym_word] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4845), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4845), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6615), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4773), - [anon_sym_LF] = ACTIONS(4771), - [anon_sym_AMP] = ACTIONS(4773), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4849), + [anon_sym_esac] = ACTIONS(4851), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [anon_sym_PIPE_AMP] = ACTIONS(4851), + [anon_sym_AMP_AMP] = ACTIONS(4851), + [anon_sym_PIPE_PIPE] = ACTIONS(4851), + [sym__special_characters] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(4851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4851), + [anon_sym_BQUOTE] = ACTIONS(4851), + [anon_sym_LT_LPAREN] = ACTIONS(4851), + [anon_sym_GT_LPAREN] = ACTIONS(4851), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(4777), - [anon_sym_LF] = ACTIONS(4775), - [anon_sym_AMP] = ACTIONS(4777), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4851), + [sym_word] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4849), + [anon_sym_AMP] = ACTIONS(4851), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6617), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5327), - [anon_sym_LF] = ACTIONS(5325), - [anon_sym_AMP] = ACTIONS(5327), + [sym_word] = ACTIONS(781), }, [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__concat] = ACTIONS(4855), + [anon_sym_esac] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_SEMI_SEMI] = ACTIONS(4857), + [anon_sym_PIPE_AMP] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [sym__special_characters] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR] = ACTIONS(4857), + [sym_raw_string] = ACTIONS(4857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4857), + [anon_sym_BQUOTE] = ACTIONS(4857), + [anon_sym_LT_LPAREN] = ACTIONS(4857), + [anon_sym_GT_LPAREN] = ACTIONS(4857), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5331), - [anon_sym_LF] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5331), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4857), + [sym_word] = ACTIONS(4857), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LF] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4857), }, [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_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6619), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), [sym_comment] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(5335), - [anon_sym_LF] = ACTIONS(5333), - [anon_sym_AMP] = ACTIONS(5335), + [sym_word] = ACTIONS(781), + }, + [2830] = { + [sym__concat] = ACTIONS(4861), + [anon_sym_esac] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_SEMI_SEMI] = ACTIONS(4863), + [anon_sym_PIPE_AMP] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [sym__special_characters] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(4863), + [anon_sym_LT_LPAREN] = ACTIONS(4863), + [anon_sym_GT_LPAREN] = ACTIONS(4863), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4863), + [sym_word] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4863), + }, + [2831] = { + [sym__concat] = ACTIONS(4865), + [anon_sym_esac] = ACTIONS(4867), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_SEMI_SEMI] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(4867), + [anon_sym_DQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR] = ACTIONS(4867), + [sym_raw_string] = ACTIONS(4867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4867), + [anon_sym_LT_LPAREN] = ACTIONS(4867), + [anon_sym_GT_LPAREN] = ACTIONS(4867), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4867), + [sym_word] = ACTIONS(4867), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_LF] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4867), + }, + [2832] = { + [sym__concat] = ACTIONS(2756), + [anon_sym_esac] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), + }, + [2833] = { + [sym__concat] = ACTIONS(2770), + [anon_sym_esac] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_SEMI_SEMI] = ACTIONS(2772), + [anon_sym_PIPE_AMP] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), + }, + [2834] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6621), + [sym_comment] = ACTIONS(53), + }, + [2835] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6623), + [sym_comment] = ACTIONS(53), + }, + [2836] = { + [anon_sym_RBRACE] = ACTIONS(6623), + [sym_comment] = ACTIONS(53), + }, + [2837] = { + [sym_concatenation] = STATE(2860), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2860), + [anon_sym_RBRACE] = ACTIONS(6625), + [anon_sym_EQ] = ACTIONS(6627), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6627), + [anon_sym_COLON_QMARK] = ACTIONS(6627), + [anon_sym_COLON_DASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6627), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2838] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_esac] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [anon_sym_PIPE_AMP] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + }, + [2839] = { + [sym_concatenation] = STATE(2863), + [sym_string] = STATE(2862), + [sym_simple_expansion] = STATE(2862), + [sym_string_expansion] = STATE(2862), + [sym_expansion] = STATE(2862), + [sym_command_substitution] = STATE(2862), + [sym_process_substitution] = STATE(2862), + [anon_sym_RBRACE] = ACTIONS(6623), + [sym__special_characters] = ACTIONS(6631), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6633), + }, + [2840] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_esac] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = ACTIONS(2897), + [anon_sym_PIPE_AMP] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_PIPE_PIPE] = ACTIONS(2897), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2897), + }, + [2841] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6635), + }, + [2842] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6637), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2843] = { + [sym__concat] = ACTIONS(2903), + [anon_sym_esac] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), + }, + [2844] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6639), + }, + [2845] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6641), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2846] = { + [sym_comment] = ACTIONS(177), + [sym_regex_without_right_brace] = ACTIONS(6643), + }, + [2847] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6623), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2848] = { + [sym_concatenation] = STATE(2870), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2870), + [anon_sym_RBRACE] = ACTIONS(6645), + [anon_sym_EQ] = ACTIONS(6647), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6647), + [anon_sym_COLON_QMARK] = ACTIONS(6647), + [anon_sym_COLON_DASH] = ACTIONS(6647), + [anon_sym_PERCENT] = ACTIONS(6647), + [anon_sym_DASH] = ACTIONS(6647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2849] = { + [sym__concat] = ACTIONS(2919), + [anon_sym_esac] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_SEMI_SEMI] = ACTIONS(2921), + [anon_sym_PIPE_AMP] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + }, + [2850] = { + [sym_concatenation] = STATE(2872), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2872), + [anon_sym_RBRACE] = ACTIONS(6651), + [anon_sym_EQ] = ACTIONS(6653), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [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(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2851] = { + [sym__concat] = ACTIONS(5419), + [sym_variable_name] = ACTIONS(5419), + [anon_sym_esac] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_SEMI_SEMI] = ACTIONS(5421), + [anon_sym_PIPE_AMP] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [sym__special_characters] = ACTIONS(5421), + [anon_sym_DQUOTE] = ACTIONS(5421), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), + [anon_sym_BQUOTE] = ACTIONS(5421), + [anon_sym_LT_LPAREN] = ACTIONS(5421), + [anon_sym_GT_LPAREN] = ACTIONS(5421), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), + [sym_word] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LF] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5421), + }, + [2852] = { + [sym__concat] = ACTIONS(5423), + [sym_variable_name] = ACTIONS(5423), + [anon_sym_esac] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_SEMI_SEMI] = ACTIONS(5425), + [anon_sym_PIPE_AMP] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [sym__special_characters] = ACTIONS(5425), + [anon_sym_DQUOTE] = ACTIONS(5425), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), + [anon_sym_BQUOTE] = ACTIONS(5425), + [anon_sym_LT_LPAREN] = ACTIONS(5425), + [anon_sym_GT_LPAREN] = ACTIONS(5425), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), + [sym_word] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LF] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5425), + }, + [2853] = { + [sym__concat] = ACTIONS(5427), + [sym_variable_name] = ACTIONS(5427), + [anon_sym_esac] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_SEMI_SEMI] = ACTIONS(5429), + [anon_sym_PIPE_AMP] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [sym__special_characters] = ACTIONS(5429), + [anon_sym_DQUOTE] = ACTIONS(5429), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), + [anon_sym_BQUOTE] = ACTIONS(5429), + [anon_sym_LT_LPAREN] = ACTIONS(5429), + [anon_sym_GT_LPAREN] = ACTIONS(5429), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), + [sym_word] = ACTIONS(5429), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LF] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5429), + }, + [2854] = { + [sym__concat] = ACTIONS(5419), + [anon_sym_esac] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_SEMI_SEMI] = ACTIONS(5421), + [anon_sym_PIPE_AMP] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [sym__special_characters] = ACTIONS(5421), + [anon_sym_DQUOTE] = ACTIONS(5421), + [anon_sym_DOLLAR] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(5421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5421), + [anon_sym_BQUOTE] = ACTIONS(5421), + [anon_sym_LT_LPAREN] = ACTIONS(5421), + [anon_sym_GT_LPAREN] = ACTIONS(5421), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5421), + [sym_word] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LF] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5421), + }, + [2855] = { + [sym__concat] = ACTIONS(5423), + [anon_sym_esac] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_SEMI_SEMI] = ACTIONS(5425), + [anon_sym_PIPE_AMP] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [sym__special_characters] = ACTIONS(5425), + [anon_sym_DQUOTE] = ACTIONS(5425), + [anon_sym_DOLLAR] = ACTIONS(5425), + [sym_raw_string] = ACTIONS(5425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5425), + [anon_sym_BQUOTE] = ACTIONS(5425), + [anon_sym_LT_LPAREN] = ACTIONS(5425), + [anon_sym_GT_LPAREN] = ACTIONS(5425), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5425), + [sym_word] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LF] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5425), + }, + [2856] = { + [sym__concat] = ACTIONS(5427), + [anon_sym_esac] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_SEMI_SEMI] = ACTIONS(5429), + [anon_sym_PIPE_AMP] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [sym__special_characters] = ACTIONS(5429), + [anon_sym_DQUOTE] = ACTIONS(5429), + [anon_sym_DOLLAR] = ACTIONS(5429), + [sym_raw_string] = ACTIONS(5429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5429), + [anon_sym_BQUOTE] = ACTIONS(5429), + [anon_sym_LT_LPAREN] = ACTIONS(5429), + [anon_sym_GT_LPAREN] = ACTIONS(5429), + [sym_comment] = ACTIONS(177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5429), + [sym_word] = ACTIONS(5429), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LF] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5429), + }, + [2857] = { + [sym__concat] = ACTIONS(3905), + [anon_sym_esac] = ACTIONS(3907), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_SEMI_SEMI] = ACTIONS(3907), + [anon_sym_PIPE_AMP] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3907), + }, + [2858] = { + [sym__concat] = ACTIONS(3913), + [anon_sym_esac] = ACTIONS(3915), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_SEMI_SEMI] = ACTIONS(3915), + [anon_sym_PIPE_AMP] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_PIPE_PIPE] = ACTIONS(3915), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3915), + }, + [2859] = { + [sym__concat] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_SEMI_SEMI] = ACTIONS(4002), + [anon_sym_PIPE_AMP] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4002), + }, + [2860] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6657), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2861] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6659), + [sym_comment] = ACTIONS(53), + }, + [2862] = { + [aux_sym_concatenation_repeat1] = STATE(1264), + [sym__concat] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(6661), + [sym_comment] = ACTIONS(53), + }, + [2863] = { + [anon_sym_RBRACE] = ACTIONS(6661), + [sym_comment] = ACTIONS(53), + }, + [2864] = { + [sym_concatenation] = STATE(2877), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2877), + [anon_sym_RBRACE] = ACTIONS(6663), + [anon_sym_EQ] = ACTIONS(6665), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6665), + [anon_sym_COLON_QMARK] = ACTIONS(6665), + [anon_sym_COLON_DASH] = ACTIONS(6665), + [anon_sym_PERCENT] = ACTIONS(6665), + [anon_sym_DASH] = ACTIONS(6665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2865] = { + [sym__concat] = ACTIONS(4016), + [anon_sym_esac] = ACTIONS(4018), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_SEMI_SEMI] = ACTIONS(4018), + [anon_sym_PIPE_AMP] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_PIPE_PIPE] = ACTIONS(4018), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4018), + }, + [2866] = { + [sym_concatenation] = STATE(2879), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2879), + [anon_sym_RBRACE] = ACTIONS(6669), + [anon_sym_EQ] = ACTIONS(6671), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6671), + [anon_sym_COLON_QMARK] = ACTIONS(6671), + [anon_sym_COLON_DASH] = ACTIONS(6671), + [anon_sym_PERCENT] = ACTIONS(6671), + [anon_sym_DASH] = ACTIONS(6671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2867] = { + [sym__concat] = ACTIONS(4026), + [anon_sym_esac] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4028), + [anon_sym_SEMI_SEMI] = ACTIONS(4028), + [anon_sym_PIPE_AMP] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4028), + }, + [2868] = { + [sym_concatenation] = STATE(2881), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(2881), + [anon_sym_RBRACE] = ACTIONS(6675), + [anon_sym_EQ] = ACTIONS(6677), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(6679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(6677), + [anon_sym_COLON_QMARK] = ACTIONS(6677), + [anon_sym_COLON_DASH] = ACTIONS(6677), + [anon_sym_PERCENT] = ACTIONS(6677), + [anon_sym_DASH] = ACTIONS(6677), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2869] = { + [sym__concat] = ACTIONS(4036), + [anon_sym_esac] = ACTIONS(4038), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_SEMI_SEMI] = ACTIONS(4038), + [anon_sym_PIPE_AMP] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_PIPE_PIPE] = ACTIONS(4038), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4038), + }, + [2870] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6681), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2871] = { + [sym__concat] = ACTIONS(4042), + [anon_sym_esac] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4044), + }, + [2872] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6683), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2873] = { + [sym__concat] = ACTIONS(4831), + [anon_sym_esac] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_SEMI_SEMI] = ACTIONS(4833), + [anon_sym_PIPE_AMP] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4833), + [anon_sym_PIPE_PIPE] = ACTIONS(4833), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4833), + }, + [2874] = { + [sym__concat] = ACTIONS(4835), + [anon_sym_esac] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_SEMI_SEMI] = ACTIONS(4837), + [anon_sym_PIPE_AMP] = ACTIONS(4837), + [anon_sym_AMP_AMP] = ACTIONS(4837), + [anon_sym_PIPE_PIPE] = ACTIONS(4837), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4837), + }, + [2875] = { + [sym__concat] = ACTIONS(4839), + [anon_sym_esac] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_SEMI_SEMI] = ACTIONS(4841), + [anon_sym_PIPE_AMP] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(4841), + [anon_sym_PIPE_PIPE] = ACTIONS(4841), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4841), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4841), + }, + [2876] = { + [sym__concat] = ACTIONS(4843), + [anon_sym_esac] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_SEMI_SEMI] = ACTIONS(4845), + [anon_sym_PIPE_AMP] = ACTIONS(4845), + [anon_sym_AMP_AMP] = ACTIONS(4845), + [anon_sym_PIPE_PIPE] = ACTIONS(4845), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4845), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4845), + }, + [2877] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6685), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2878] = { + [sym__concat] = ACTIONS(4849), + [anon_sym_esac] = ACTIONS(4851), + [anon_sym_PIPE] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [anon_sym_PIPE_AMP] = ACTIONS(4851), + [anon_sym_AMP_AMP] = ACTIONS(4851), + [anon_sym_PIPE_PIPE] = ACTIONS(4851), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4849), + [anon_sym_AMP] = ACTIONS(4851), + }, + [2879] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6687), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2880] = { + [sym__concat] = ACTIONS(4855), + [anon_sym_esac] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_SEMI_SEMI] = ACTIONS(4857), + [anon_sym_PIPE_AMP] = ACTIONS(4857), + [anon_sym_AMP_AMP] = ACTIONS(4857), + [anon_sym_PIPE_PIPE] = ACTIONS(4857), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LF] = ACTIONS(4855), + [anon_sym_AMP] = ACTIONS(4857), + }, + [2881] = { + [sym_concatenation] = STATE(847), + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_string_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), + [aux_sym_expansion_repeat1] = STATE(847), + [anon_sym_RBRACE] = ACTIONS(6689), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(777), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(177), + [sym_word] = ACTIONS(781), + }, + [2882] = { + [sym__concat] = ACTIONS(4861), + [anon_sym_esac] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_SEMI_SEMI] = ACTIONS(4863), + [anon_sym_PIPE_AMP] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LF] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4863), + }, + [2883] = { + [sym__concat] = ACTIONS(4865), + [anon_sym_esac] = ACTIONS(4867), + [anon_sym_PIPE] = ACTIONS(4867), + [anon_sym_SEMI_SEMI] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(4867), + [anon_sym_AMP_AMP] = ACTIONS(4867), + [anon_sym_PIPE_PIPE] = ACTIONS(4867), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_LF] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4867), + }, + [2884] = { + [sym__concat] = ACTIONS(5419), + [anon_sym_esac] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_SEMI_SEMI] = ACTIONS(5421), + [anon_sym_PIPE_AMP] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LF] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5421), + }, + [2885] = { + [sym__concat] = ACTIONS(5423), + [anon_sym_esac] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_SEMI_SEMI] = ACTIONS(5425), + [anon_sym_PIPE_AMP] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LF] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5425), + }, + [2886] = { + [sym__concat] = ACTIONS(5427), + [anon_sym_esac] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_SEMI_SEMI] = ACTIONS(5429), + [anon_sym_PIPE_AMP] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [sym_comment] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LF] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5429), }, }; @@ -70907,2963 +71920,3021 @@ static TSParseActionEntry ts_parse_actions[] = { [423] = {.count = 1, .reusable = false}, SHIFT(230), [425] = {.count = 1, .reusable = true}, SHIFT(230), [427] = {.count = 1, .reusable = false}, SHIFT(232), - [429] = {.count = 1, .reusable = true}, SHIFT(234), + [429] = {.count = 1, .reusable = false}, SHIFT(233), [431] = {.count = 1, .reusable = true}, SHIFT(235), - [433] = {.count = 1, .reusable = false}, SHIFT(236), - [435] = {.count = 1, .reusable = false}, SHIFT(234), - [437] = {.count = 1, .reusable = false}, SHIFT(237), + [433] = {.count = 1, .reusable = true}, SHIFT(236), + [435] = {.count = 1, .reusable = false}, SHIFT(237), + [437] = {.count = 1, .reusable = false}, SHIFT(235), [439] = {.count = 1, .reusable = false}, SHIFT(238), - [441] = {.count = 1, .reusable = true}, SHIFT(238), + [441] = {.count = 1, .reusable = false}, SHIFT(239), [443] = {.count = 1, .reusable = true}, SHIFT(239), [445] = {.count = 1, .reusable = true}, SHIFT(240), [447] = {.count = 1, .reusable = true}, SHIFT(241), - [449] = {.count = 1, .reusable = false}, SHIFT(242), - [451] = {.count = 1, .reusable = false}, SHIFT(240), - [453] = {.count = 1, .reusable = true}, SHIFT(250), + [449] = {.count = 1, .reusable = true}, SHIFT(242), + [451] = {.count = 1, .reusable = false}, SHIFT(243), + [453] = {.count = 1, .reusable = false}, SHIFT(241), [455] = {.count = 1, .reusable = true}, SHIFT(251), - [457] = {.count = 1, .reusable = true}, SHIFT(253), - [459] = {.count = 1, .reusable = true}, SHIFT(255), - [461] = {.count = 1, .reusable = true}, SHIFT(258), - [463] = {.count = 1, .reusable = false}, SHIFT(259), + [457] = {.count = 1, .reusable = true}, SHIFT(252), + [459] = {.count = 1, .reusable = true}, SHIFT(254), + [461] = {.count = 1, .reusable = true}, SHIFT(256), + [463] = {.count = 1, .reusable = true}, SHIFT(259), [465] = {.count = 1, .reusable = false}, SHIFT(260), - [467] = {.count = 1, .reusable = false}, SHIFT(263), + [467] = {.count = 1, .reusable = false}, SHIFT(261), [469] = {.count = 1, .reusable = false}, SHIFT(264), - [471] = {.count = 1, .reusable = false}, SHIFT(267), + [471] = {.count = 1, .reusable = false}, SHIFT(265), [473] = {.count = 1, .reusable = false}, SHIFT(268), [475] = {.count = 1, .reusable = false}, SHIFT(269), [477] = {.count = 1, .reusable = false}, SHIFT(270), [479] = {.count = 1, .reusable = false}, SHIFT(271), - [481] = {.count = 1, .reusable = true}, SHIFT(270), - [483] = {.count = 1, .reusable = true}, SHIFT(272), - [485] = {.count = 1, .reusable = false}, SHIFT(273), + [481] = {.count = 1, .reusable = false}, SHIFT(272), + [483] = {.count = 1, .reusable = true}, SHIFT(271), + [485] = {.count = 1, .reusable = true}, SHIFT(273), [487] = {.count = 1, .reusable = false}, SHIFT(274), [489] = {.count = 1, .reusable = false}, SHIFT(275), [491] = {.count = 1, .reusable = false}, SHIFT(276), [493] = {.count = 1, .reusable = false}, SHIFT(277), - [495] = {.count = 1, .reusable = true}, SHIFT(60), - [497] = {.count = 1, .reusable = true}, SHIFT(284), - [499] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), - [501] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), - [503] = {.count = 1, .reusable = false}, SHIFT(285), - [505] = {.count = 1, .reusable = true}, SHIFT(286), + [495] = {.count = 1, .reusable = false}, SHIFT(278), + [497] = {.count = 1, .reusable = true}, SHIFT(60), + [499] = {.count = 1, .reusable = true}, SHIFT(285), + [501] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [503] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [505] = {.count = 1, .reusable = false}, SHIFT(286), [507] = {.count = 1, .reusable = true}, SHIFT(287), - [509] = {.count = 1, .reusable = false}, SHIFT(287), - [511] = {.count = 1, .reusable = true}, SHIFT(285), - [513] = {.count = 1, .reusable = true}, SHIFT(290), - [515] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [517] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [519] = {.count = 1, .reusable = false}, SHIFT(292), - [521] = {.count = 1, .reusable = true}, SHIFT(294), - [523] = {.count = 1, .reusable = true}, SHIFT(295), - [525] = {.count = 1, .reusable = false}, SHIFT(296), - [527] = {.count = 1, .reusable = false}, SHIFT(294), - [529] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [531] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [533] = {.count = 1, .reusable = true}, SHIFT(297), - [535] = {.count = 1, .reusable = true}, SHIFT(298), + [509] = {.count = 1, .reusable = true}, SHIFT(288), + [511] = {.count = 1, .reusable = false}, SHIFT(288), + [513] = {.count = 1, .reusable = true}, SHIFT(286), + [515] = {.count = 1, .reusable = true}, SHIFT(291), + [517] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [519] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [521] = {.count = 1, .reusable = false}, SHIFT(293), + [523] = {.count = 1, .reusable = false}, SHIFT(294), + [525] = {.count = 1, .reusable = true}, SHIFT(296), + [527] = {.count = 1, .reusable = true}, SHIFT(297), + [529] = {.count = 1, .reusable = false}, SHIFT(298), + [531] = {.count = 1, .reusable = false}, SHIFT(296), + [533] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [535] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), [537] = {.count = 1, .reusable = true}, SHIFT(299), - [539] = {.count = 1, .reusable = false}, SHIFT(300), - [541] = {.count = 1, .reusable = false}, SHIFT(298), - [543] = {.count = 1, .reusable = true}, SHIFT(308), - [545] = {.count = 1, .reusable = true}, SHIFT(309), + [539] = {.count = 1, .reusable = true}, SHIFT(300), + [541] = {.count = 1, .reusable = true}, SHIFT(301), + [543] = {.count = 1, .reusable = false}, SHIFT(302), + [545] = {.count = 1, .reusable = false}, SHIFT(300), [547] = {.count = 1, .reusable = true}, SHIFT(310), - [549] = {.count = 1, .reusable = false}, SHIFT(308), - [551] = {.count = 1, .reusable = true}, SHIFT(313), - [553] = {.count = 1, .reusable = false}, SHIFT(315), - [555] = {.count = 1, .reusable = true}, SHIFT(317), - [557] = {.count = 1, .reusable = true}, SHIFT(318), - [559] = {.count = 1, .reusable = false}, SHIFT(319), - [561] = {.count = 1, .reusable = false}, SHIFT(317), - [563] = {.count = 1, .reusable = true}, SHIFT(320), - [565] = {.count = 1, .reusable = true}, SHIFT(321), - [567] = {.count = 1, .reusable = true}, SHIFT(322), - [569] = {.count = 1, .reusable = false}, SHIFT(323), - [571] = {.count = 1, .reusable = false}, SHIFT(321), - [573] = {.count = 1, .reusable = true}, SHIFT(331), - [575] = {.count = 1, .reusable = true}, SHIFT(332), - [577] = {.count = 1, .reusable = false}, SHIFT(331), - [579] = {.count = 1, .reusable = true}, SHIFT(333), - [581] = {.count = 1, .reusable = true}, SHIFT(334), - [583] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [585] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [587] = {.count = 1, .reusable = false}, SHIFT(336), - [589] = {.count = 1, .reusable = true}, SHIFT(96), - [591] = {.count = 1, .reusable = true}, SHIFT(338), - [593] = {.count = 1, .reusable = true}, SHIFT(339), + [549] = {.count = 1, .reusable = true}, SHIFT(311), + [551] = {.count = 1, .reusable = true}, SHIFT(312), + [553] = {.count = 1, .reusable = false}, SHIFT(310), + [555] = {.count = 1, .reusable = true}, SHIFT(315), + [557] = {.count = 1, .reusable = false}, SHIFT(317), + [559] = {.count = 1, .reusable = false}, SHIFT(318), + [561] = {.count = 1, .reusable = true}, SHIFT(320), + [563] = {.count = 1, .reusable = true}, SHIFT(321), + [565] = {.count = 1, .reusable = false}, SHIFT(322), + [567] = {.count = 1, .reusable = false}, SHIFT(320), + [569] = {.count = 1, .reusable = true}, SHIFT(323), + [571] = {.count = 1, .reusable = true}, SHIFT(324), + [573] = {.count = 1, .reusable = true}, SHIFT(325), + [575] = {.count = 1, .reusable = false}, SHIFT(326), + [577] = {.count = 1, .reusable = false}, SHIFT(324), + [579] = {.count = 1, .reusable = true}, SHIFT(334), + [581] = {.count = 1, .reusable = true}, SHIFT(335), + [583] = {.count = 1, .reusable = false}, SHIFT(334), + [585] = {.count = 1, .reusable = true}, SHIFT(336), + [587] = {.count = 1, .reusable = true}, SHIFT(337), + [589] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [591] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [593] = {.count = 1, .reusable = false}, SHIFT(339), [595] = {.count = 1, .reusable = false}, SHIFT(340), - [597] = {.count = 1, .reusable = false}, SHIFT(338), - [599] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [601] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [603] = {.count = 1, .reusable = true}, SHIFT(341), - [605] = {.count = 1, .reusable = true}, SHIFT(342), - [607] = {.count = 1, .reusable = true}, SHIFT(343), - [609] = {.count = 1, .reusable = false}, SHIFT(344), - [611] = {.count = 1, .reusable = false}, SHIFT(342), - [613] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [615] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [617] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), - [619] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), - [621] = {.count = 1, .reusable = true}, SHIFT(353), - [623] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [625] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [627] = {.count = 1, .reusable = false}, SHIFT(355), - [629] = {.count = 1, .reusable = true}, SHIFT(107), - [631] = {.count = 1, .reusable = true}, SHIFT(357), - [633] = {.count = 1, .reusable = true}, SHIFT(358), + [597] = {.count = 1, .reusable = true}, SHIFT(96), + [599] = {.count = 1, .reusable = true}, SHIFT(342), + [601] = {.count = 1, .reusable = true}, SHIFT(343), + [603] = {.count = 1, .reusable = false}, SHIFT(344), + [605] = {.count = 1, .reusable = false}, SHIFT(342), + [607] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [609] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [611] = {.count = 1, .reusable = true}, SHIFT(345), + [613] = {.count = 1, .reusable = true}, SHIFT(346), + [615] = {.count = 1, .reusable = true}, SHIFT(347), + [617] = {.count = 1, .reusable = false}, SHIFT(348), + [619] = {.count = 1, .reusable = false}, SHIFT(346), + [621] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [623] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [625] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [627] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [629] = {.count = 1, .reusable = true}, SHIFT(357), + [631] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [633] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), [635] = {.count = 1, .reusable = false}, SHIFT(359), - [637] = {.count = 1, .reusable = false}, SHIFT(357), - [639] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [641] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [643] = {.count = 1, .reusable = true}, SHIFT(360), - [645] = {.count = 1, .reusable = true}, SHIFT(361), - [647] = {.count = 1, .reusable = true}, SHIFT(362), - [649] = {.count = 1, .reusable = false}, SHIFT(363), - [651] = {.count = 1, .reusable = false}, SHIFT(361), - [653] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [655] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [657] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), - [659] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), - [661] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [663] = {.count = 1, .reusable = true}, SHIFT(372), - [665] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [667] = {.count = 1, .reusable = false}, SHIFT(374), - [669] = {.count = 1, .reusable = true}, SHIFT(376), - [671] = {.count = 1, .reusable = true}, SHIFT(377), - [673] = {.count = 1, .reusable = false}, SHIFT(378), - [675] = {.count = 1, .reusable = false}, SHIFT(376), - [677] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), - [679] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), - [681] = {.count = 1, .reusable = true}, SHIFT(379), - [683] = {.count = 1, .reusable = true}, SHIFT(380), - [685] = {.count = 1, .reusable = true}, SHIFT(381), + [637] = {.count = 1, .reusable = false}, SHIFT(360), + [639] = {.count = 1, .reusable = true}, SHIFT(107), + [641] = {.count = 1, .reusable = true}, SHIFT(362), + [643] = {.count = 1, .reusable = true}, SHIFT(363), + [645] = {.count = 1, .reusable = false}, SHIFT(364), + [647] = {.count = 1, .reusable = false}, SHIFT(362), + [649] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [651] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [653] = {.count = 1, .reusable = true}, SHIFT(365), + [655] = {.count = 1, .reusable = true}, SHIFT(366), + [657] = {.count = 1, .reusable = true}, SHIFT(367), + [659] = {.count = 1, .reusable = false}, SHIFT(368), + [661] = {.count = 1, .reusable = false}, SHIFT(366), + [663] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [665] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [667] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [669] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [671] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [673] = {.count = 1, .reusable = true}, SHIFT(377), + [675] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [677] = {.count = 1, .reusable = false}, SHIFT(379), + [679] = {.count = 1, .reusable = false}, SHIFT(380), + [681] = {.count = 1, .reusable = true}, SHIFT(382), + [683] = {.count = 1, .reusable = true}, SHIFT(383), + [685] = {.count = 1, .reusable = false}, SHIFT(384), [687] = {.count = 1, .reusable = false}, SHIFT(382), - [689] = {.count = 1, .reusable = false}, SHIFT(380), - [691] = {.count = 1, .reusable = true}, SHIFT(390), - [693] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), - [695] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), - [697] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), - [699] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), - [701] = {.count = 1, .reusable = false}, SHIFT(392), - [703] = {.count = 1, .reusable = false}, SHIFT(393), - [705] = {.count = 1, .reusable = true}, SHIFT(392), - [707] = {.count = 1, .reusable = false}, SHIFT(394), - [709] = {.count = 1, .reusable = true}, SHIFT(395), - [711] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), - [713] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), - [715] = {.count = 1, .reusable = true}, SHIFT(396), - [717] = {.count = 1, .reusable = true}, SHIFT(397), - [719] = {.count = 1, .reusable = true}, SHIFT(398), - [721] = {.count = 1, .reusable = false}, SHIFT(399), - [723] = {.count = 1, .reusable = false}, SHIFT(397), - [725] = {.count = 1, .reusable = false}, SHIFT(405), - [727] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [729] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [731] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), - [733] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), - [735] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [737] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [739] = {.count = 1, .reusable = true}, SHIFT(407), - [741] = {.count = 1, .reusable = true}, SHIFT(408), - [743] = {.count = 1, .reusable = true}, SHIFT(409), - [745] = {.count = 1, .reusable = false}, SHIFT(419), - [747] = {.count = 1, .reusable = false}, SHIFT(410), - [749] = {.count = 1, .reusable = true}, SHIFT(411), - [751] = {.count = 1, .reusable = false}, SHIFT(412), - [753] = {.count = 1, .reusable = true}, SHIFT(413), - [755] = {.count = 1, .reusable = true}, SHIFT(419), - [757] = {.count = 1, .reusable = true}, SHIFT(414), - [759] = {.count = 1, .reusable = true}, SHIFT(415), - [761] = {.count = 1, .reusable = true}, SHIFT(416), - [763] = {.count = 1, .reusable = true}, SHIFT(417), - [765] = {.count = 1, .reusable = true}, SHIFT(418), - [767] = {.count = 1, .reusable = false}, SHIFT(413), - [769] = {.count = 1, .reusable = true}, SHIFT(420), + [689] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [691] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [693] = {.count = 1, .reusable = true}, SHIFT(385), + [695] = {.count = 1, .reusable = true}, SHIFT(386), + [697] = {.count = 1, .reusable = true}, SHIFT(387), + [699] = {.count = 1, .reusable = false}, SHIFT(388), + [701] = {.count = 1, .reusable = false}, SHIFT(386), + [703] = {.count = 1, .reusable = true}, SHIFT(396), + [705] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [707] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [709] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [711] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [713] = {.count = 1, .reusable = false}, SHIFT(398), + [715] = {.count = 1, .reusable = false}, SHIFT(399), + [717] = {.count = 1, .reusable = false}, SHIFT(400), + [719] = {.count = 1, .reusable = true}, SHIFT(399), + [721] = {.count = 1, .reusable = false}, SHIFT(401), + [723] = {.count = 1, .reusable = true}, SHIFT(402), + [725] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [727] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), + [729] = {.count = 1, .reusable = true}, SHIFT(403), + [731] = {.count = 1, .reusable = true}, SHIFT(404), + [733] = {.count = 1, .reusable = true}, SHIFT(405), + [735] = {.count = 1, .reusable = false}, SHIFT(406), + [737] = {.count = 1, .reusable = false}, SHIFT(404), + [739] = {.count = 1, .reusable = false}, SHIFT(412), + [741] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [743] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [745] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [747] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [749] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [751] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [753] = {.count = 1, .reusable = true}, SHIFT(414), + [755] = {.count = 1, .reusable = true}, SHIFT(415), + [757] = {.count = 1, .reusable = true}, SHIFT(416), + [759] = {.count = 1, .reusable = false}, SHIFT(426), + [761] = {.count = 1, .reusable = false}, SHIFT(417), + [763] = {.count = 1, .reusable = true}, SHIFT(418), + [765] = {.count = 1, .reusable = false}, SHIFT(419), + [767] = {.count = 1, .reusable = true}, SHIFT(420), + [769] = {.count = 1, .reusable = true}, SHIFT(426), [771] = {.count = 1, .reusable = true}, SHIFT(421), - [773] = {.count = 1, .reusable = false}, SHIFT(422), - [775] = {.count = 1, .reusable = false}, SHIFT(421), + [773] = {.count = 1, .reusable = true}, SHIFT(422), + [775] = {.count = 1, .reusable = true}, SHIFT(423), [777] = {.count = 1, .reusable = true}, SHIFT(424), - [779] = {.count = 1, .reusable = false}, SHIFT(426), - [781] = {.count = 1, .reusable = true}, SHIFT(426), - [783] = {.count = 1, .reusable = true}, SHIFT(425), - [785] = {.count = 1, .reusable = true}, SHIFT(427), + [779] = {.count = 1, .reusable = true}, SHIFT(425), + [781] = {.count = 1, .reusable = false}, SHIFT(420), + [783] = {.count = 1, .reusable = true}, SHIFT(427), + [785] = {.count = 1, .reusable = true}, SHIFT(428), [787] = {.count = 1, .reusable = false}, SHIFT(429), - [789] = {.count = 1, .reusable = true}, SHIFT(429), - [791] = {.count = 1, .reusable = true}, SHIFT(428), - [793] = {.count = 1, .reusable = true}, SHIFT(430), - [795] = {.count = 1, .reusable = true}, SHIFT(431), - [797] = {.count = 1, .reusable = true}, SHIFT(434), - [799] = {.count = 1, .reusable = true}, SHIFT(435), - [801] = {.count = 1, .reusable = true}, SHIFT(437), - [803] = {.count = 1, .reusable = true}, SHIFT(444), - [805] = {.count = 1, .reusable = true}, SHIFT(445), - [807] = {.count = 1, .reusable = true}, SHIFT(446), - [809] = {.count = 1, .reusable = false}, SHIFT(447), - [811] = {.count = 1, .reusable = true}, SHIFT(448), - [813] = {.count = 1, .reusable = true}, SHIFT(449), - [815] = {.count = 1, .reusable = true}, SHIFT(450), + [789] = {.count = 1, .reusable = false}, SHIFT(428), + [791] = {.count = 1, .reusable = true}, SHIFT(431), + [793] = {.count = 1, .reusable = false}, SHIFT(433), + [795] = {.count = 1, .reusable = true}, SHIFT(433), + [797] = {.count = 1, .reusable = true}, SHIFT(432), + [799] = {.count = 1, .reusable = true}, SHIFT(434), + [801] = {.count = 1, .reusable = false}, SHIFT(436), + [803] = {.count = 1, .reusable = true}, SHIFT(436), + [805] = {.count = 1, .reusable = true}, SHIFT(435), + [807] = {.count = 1, .reusable = true}, SHIFT(437), + [809] = {.count = 1, .reusable = true}, SHIFT(438), + [811] = {.count = 1, .reusable = true}, SHIFT(441), + [813] = {.count = 1, .reusable = true}, SHIFT(442), + [815] = {.count = 1, .reusable = true}, SHIFT(444), [817] = {.count = 1, .reusable = true}, SHIFT(451), [819] = {.count = 1, .reusable = true}, SHIFT(452), - [821] = {.count = 1, .reusable = false}, SHIFT(453), - [823] = {.count = 1, .reusable = false}, SHIFT(448), - [825] = {.count = 1, .reusable = true}, SHIFT(456), - [827] = {.count = 1, .reusable = true}, SHIFT(457), - [829] = {.count = 1, .reusable = false}, SHIFT(458), - [831] = {.count = 1, .reusable = true}, SHIFT(459), - [833] = {.count = 1, .reusable = true}, SHIFT(460), - [835] = {.count = 1, .reusable = true}, SHIFT(461), - [837] = {.count = 1, .reusable = true}, SHIFT(462), + [821] = {.count = 1, .reusable = true}, SHIFT(453), + [823] = {.count = 1, .reusable = false}, SHIFT(454), + [825] = {.count = 1, .reusable = true}, SHIFT(455), + [827] = {.count = 1, .reusable = true}, SHIFT(456), + [829] = {.count = 1, .reusable = true}, SHIFT(457), + [831] = {.count = 1, .reusable = true}, SHIFT(458), + [833] = {.count = 1, .reusable = true}, SHIFT(459), + [835] = {.count = 1, .reusable = false}, SHIFT(460), + [837] = {.count = 1, .reusable = false}, SHIFT(455), [839] = {.count = 1, .reusable = true}, SHIFT(463), - [841] = {.count = 1, .reusable = false}, SHIFT(464), - [843] = {.count = 1, .reusable = false}, SHIFT(459), + [841] = {.count = 1, .reusable = true}, SHIFT(464), + [843] = {.count = 1, .reusable = false}, SHIFT(465), [845] = {.count = 1, .reusable = true}, SHIFT(466), - [847] = {.count = 1, .reusable = false}, SHIFT(468), - [849] = {.count = 1, .reusable = true}, SHIFT(470), - [851] = {.count = 1, .reusable = true}, SHIFT(471), - [853] = {.count = 1, .reusable = false}, SHIFT(472), - [855] = {.count = 1, .reusable = false}, SHIFT(470), - [857] = {.count = 1, .reusable = true}, SHIFT(473), - [859] = {.count = 1, .reusable = true}, SHIFT(474), - [861] = {.count = 1, .reusable = true}, SHIFT(475), + [847] = {.count = 1, .reusable = true}, SHIFT(467), + [849] = {.count = 1, .reusable = true}, SHIFT(468), + [851] = {.count = 1, .reusable = true}, SHIFT(469), + [853] = {.count = 1, .reusable = true}, SHIFT(470), + [855] = {.count = 1, .reusable = false}, SHIFT(471), + [857] = {.count = 1, .reusable = false}, SHIFT(466), + [859] = {.count = 1, .reusable = true}, SHIFT(473), + [861] = {.count = 1, .reusable = false}, SHIFT(475), [863] = {.count = 1, .reusable = false}, SHIFT(476), - [865] = {.count = 1, .reusable = false}, SHIFT(474), - [867] = {.count = 1, .reusable = true}, SHIFT(484), - [869] = {.count = 1, .reusable = false}, SHIFT(485), - [871] = {.count = 1, .reusable = true}, SHIFT(486), - [873] = {.count = 1, .reusable = true}, SHIFT(485), - [875] = {.count = 1, .reusable = true}, SHIFT(487), - [877] = {.count = 1, .reusable = true}, SHIFT(488), - [879] = {.count = 1, .reusable = true}, SHIFT(489), - [881] = {.count = 1, .reusable = true}, SHIFT(490), - [883] = {.count = 1, .reusable = false}, SHIFT(491), - [885] = {.count = 1, .reusable = false}, SHIFT(492), - [887] = {.count = 1, .reusable = true}, SHIFT(492), - [889] = {.count = 1, .reusable = false}, SHIFT(493), - [891] = {.count = 1, .reusable = true}, SHIFT(493), - [893] = {.count = 1, .reusable = true}, SHIFT(494), - [895] = {.count = 1, .reusable = true}, SHIFT(495), - [897] = {.count = 1, .reusable = true}, SHIFT(496), - [899] = {.count = 1, .reusable = false}, SHIFT(496), - [901] = {.count = 1, .reusable = true}, SHIFT(154), - [903] = {.count = 1, .reusable = true}, SHIFT(501), - [905] = {.count = 1, .reusable = true}, SHIFT(503), - [907] = {.count = 1, .reusable = true}, SHIFT(506), - [909] = {.count = 1, .reusable = true}, SHIFT(507), - [911] = {.count = 1, .reusable = true}, SHIFT(508), - [913] = {.count = 1, .reusable = false}, SHIFT(508), - [915] = {.count = 1, .reusable = true}, SHIFT(511), - [917] = {.count = 1, .reusable = true}, SHIFT(512), - [919] = {.count = 1, .reusable = false}, SHIFT(512), - [921] = {.count = 1, .reusable = true}, SHIFT(515), - [923] = {.count = 1, .reusable = false}, SHIFT(516), - [925] = {.count = 1, .reusable = true}, SHIFT(516), - [927] = {.count = 1, .reusable = true}, SHIFT(517), - [929] = {.count = 1, .reusable = true}, SHIFT(518), - [931] = {.count = 1, .reusable = false}, SHIFT(519), - [933] = {.count = 1, .reusable = false}, SHIFT(520), - [935] = {.count = 1, .reusable = true}, SHIFT(520), - [937] = {.count = 1, .reusable = true}, SHIFT(521), - [939] = {.count = 1, .reusable = true}, SHIFT(522), - [941] = {.count = 1, .reusable = true}, SHIFT(523), - [943] = {.count = 1, .reusable = false}, SHIFT(523), - [945] = {.count = 1, .reusable = true}, SHIFT(177), - [947] = {.count = 1, .reusable = true}, SHIFT(527), - [949] = {.count = 1, .reusable = true}, SHIFT(528), - [951] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [953] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), - [955] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [957] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), - [959] = {.count = 1, .reusable = true}, SHIFT(536), - [961] = {.count = 1, .reusable = true}, SHIFT(533), - [963] = {.count = 1, .reusable = false}, SHIFT(534), - [965] = {.count = 1, .reusable = true}, SHIFT(535), - [967] = {.count = 1, .reusable = false}, SHIFT(537), - [969] = {.count = 1, .reusable = true}, SHIFT(537), - [971] = {.count = 1, .reusable = false}, SHIFT(538), - [973] = {.count = 1, .reusable = false}, SHIFT(539), - [975] = {.count = 1, .reusable = false}, SHIFT(540), + [865] = {.count = 1, .reusable = true}, SHIFT(478), + [867] = {.count = 1, .reusable = true}, SHIFT(479), + [869] = {.count = 1, .reusable = false}, SHIFT(480), + [871] = {.count = 1, .reusable = false}, SHIFT(478), + [873] = {.count = 1, .reusable = true}, SHIFT(481), + [875] = {.count = 1, .reusable = true}, SHIFT(482), + [877] = {.count = 1, .reusable = true}, SHIFT(483), + [879] = {.count = 1, .reusable = false}, SHIFT(484), + [881] = {.count = 1, .reusable = false}, SHIFT(482), + [883] = {.count = 1, .reusable = true}, SHIFT(492), + [885] = {.count = 1, .reusable = false}, SHIFT(493), + [887] = {.count = 1, .reusable = true}, SHIFT(494), + [889] = {.count = 1, .reusable = true}, SHIFT(493), + [891] = {.count = 1, .reusable = true}, SHIFT(495), + [893] = {.count = 1, .reusable = true}, SHIFT(496), + [895] = {.count = 1, .reusable = true}, SHIFT(497), + [897] = {.count = 1, .reusable = true}, SHIFT(498), + [899] = {.count = 1, .reusable = false}, SHIFT(499), + [901] = {.count = 1, .reusable = false}, SHIFT(500), + [903] = {.count = 1, .reusable = true}, SHIFT(500), + [905] = {.count = 1, .reusable = false}, SHIFT(501), + [907] = {.count = 1, .reusable = true}, SHIFT(501), + [909] = {.count = 1, .reusable = true}, SHIFT(502), + [911] = {.count = 1, .reusable = true}, SHIFT(503), + [913] = {.count = 1, .reusable = true}, SHIFT(504), + [915] = {.count = 1, .reusable = false}, SHIFT(504), + [917] = {.count = 1, .reusable = true}, SHIFT(154), + [919] = {.count = 1, .reusable = true}, SHIFT(509), + [921] = {.count = 1, .reusable = true}, SHIFT(511), + [923] = {.count = 1, .reusable = true}, SHIFT(514), + [925] = {.count = 1, .reusable = true}, SHIFT(515), + [927] = {.count = 1, .reusable = true}, SHIFT(516), + [929] = {.count = 1, .reusable = false}, SHIFT(516), + [931] = {.count = 1, .reusable = true}, SHIFT(519), + [933] = {.count = 1, .reusable = true}, SHIFT(520), + [935] = {.count = 1, .reusable = false}, SHIFT(520), + [937] = {.count = 1, .reusable = true}, SHIFT(523), + [939] = {.count = 1, .reusable = false}, SHIFT(524), + [941] = {.count = 1, .reusable = true}, SHIFT(524), + [943] = {.count = 1, .reusable = true}, SHIFT(525), + [945] = {.count = 1, .reusable = true}, SHIFT(526), + [947] = {.count = 1, .reusable = false}, SHIFT(527), + [949] = {.count = 1, .reusable = false}, SHIFT(528), + [951] = {.count = 1, .reusable = true}, SHIFT(528), + [953] = {.count = 1, .reusable = true}, SHIFT(529), + [955] = {.count = 1, .reusable = true}, SHIFT(530), + [957] = {.count = 1, .reusable = true}, SHIFT(531), + [959] = {.count = 1, .reusable = false}, SHIFT(531), + [961] = {.count = 1, .reusable = true}, SHIFT(177), + [963] = {.count = 1, .reusable = true}, SHIFT(535), + [965] = {.count = 1, .reusable = true}, SHIFT(536), + [967] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [969] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), + [971] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [973] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [975] = {.count = 1, .reusable = true}, SHIFT(544), [977] = {.count = 1, .reusable = true}, SHIFT(541), - [979] = {.count = 1, .reusable = true}, SHIFT(542), - [981] = {.count = 1, .reusable = true}, SHIFT(544), - [983] = {.count = 1, .reusable = true}, SHIFT(545), - [985] = {.count = 1, .reusable = true}, SHIFT(546), - [987] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [989] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [991] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [993] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [995] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [997] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [999] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), - [1002] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [1005] = {.count = 1, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), - [1007] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [1010] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [1013] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [1016] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [1019] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [1022] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [1025] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [1028] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [1031] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [1034] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [1037] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [1040] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [1043] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [1046] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), - [1049] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [1052] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [1055] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), - [1058] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), - [1061] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), - [1064] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), - [1067] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), - [1070] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(24), - [1073] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [1076] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(69), - [1079] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), - [1082] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), - [1085] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [1087] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [1089] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1091] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1093] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1095] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1097] = {.count = 1, .reusable = true}, SHIFT(553), - [1099] = {.count = 1, .reusable = true}, SHIFT(554), - [1101] = {.count = 1, .reusable = true}, SHIFT(556), - [1103] = {.count = 1, .reusable = true}, SHIFT(557), - [1105] = {.count = 1, .reusable = true}, SHIFT(558), - [1107] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [1109] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [1111] = {.count = 1, .reusable = true}, SHIFT(559), - [1113] = {.count = 1, .reusable = true}, SHIFT(560), - [1115] = {.count = 1, .reusable = true}, SHIFT(561), - [1117] = {.count = 1, .reusable = false}, SHIFT(562), - [1119] = {.count = 1, .reusable = true}, SHIFT(563), - [1121] = {.count = 1, .reusable = true}, SHIFT(564), - [1123] = {.count = 1, .reusable = true}, SHIFT(565), - [1125] = {.count = 1, .reusable = true}, SHIFT(566), + [979] = {.count = 1, .reusable = false}, SHIFT(542), + [981] = {.count = 1, .reusable = true}, SHIFT(543), + [983] = {.count = 1, .reusable = false}, SHIFT(545), + [985] = {.count = 1, .reusable = true}, SHIFT(545), + [987] = {.count = 1, .reusable = false}, SHIFT(546), + [989] = {.count = 1, .reusable = false}, SHIFT(547), + [991] = {.count = 1, .reusable = false}, SHIFT(548), + [993] = {.count = 1, .reusable = true}, SHIFT(549), + [995] = {.count = 1, .reusable = true}, SHIFT(550), + [997] = {.count = 1, .reusable = true}, SHIFT(552), + [999] = {.count = 1, .reusable = true}, SHIFT(553), + [1001] = {.count = 1, .reusable = true}, SHIFT(554), + [1003] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [1005] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [1007] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [1009] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [1011] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [1013] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [1015] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [1018] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [1021] = {.count = 1, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), + [1023] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [1026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [1029] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [1032] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [1035] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [1038] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [1041] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [1044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [1047] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [1050] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [1053] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1056] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [1059] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [1062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [1065] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [1068] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [1071] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [1074] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [1077] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [1080] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), + [1083] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), + [1086] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(24), + [1089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [1092] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(69), + [1095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), + [1098] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), + [1101] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [1103] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [1105] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1107] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1109] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1111] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1113] = {.count = 1, .reusable = true}, SHIFT(561), + [1115] = {.count = 1, .reusable = true}, SHIFT(562), + [1117] = {.count = 1, .reusable = true}, SHIFT(564), + [1119] = {.count = 1, .reusable = true}, SHIFT(565), + [1121] = {.count = 1, .reusable = true}, SHIFT(566), + [1123] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1125] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), [1127] = {.count = 1, .reusable = true}, SHIFT(567), - [1129] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), + [1129] = {.count = 1, .reusable = true}, SHIFT(568), [1131] = {.count = 1, .reusable = true}, SHIFT(569), - [1133] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), - [1135] = {.count = 1, .reusable = false}, SHIFT(571), - [1137] = {.count = 1, .reusable = true}, SHIFT(573), - [1139] = {.count = 1, .reusable = true}, SHIFT(574), - [1141] = {.count = 1, .reusable = false}, SHIFT(575), - [1143] = {.count = 1, .reusable = false}, SHIFT(573), - [1145] = {.count = 1, .reusable = true}, SHIFT(576), + [1133] = {.count = 1, .reusable = false}, SHIFT(570), + [1135] = {.count = 1, .reusable = true}, SHIFT(571), + [1137] = {.count = 1, .reusable = true}, SHIFT(572), + [1139] = {.count = 1, .reusable = true}, SHIFT(573), + [1141] = {.count = 1, .reusable = true}, SHIFT(574), + [1143] = {.count = 1, .reusable = true}, SHIFT(575), + [1145] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), [1147] = {.count = 1, .reusable = true}, SHIFT(577), - [1149] = {.count = 1, .reusable = true}, SHIFT(578), + [1149] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), [1151] = {.count = 1, .reusable = false}, SHIFT(579), - [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 = 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), + [1153] = {.count = 1, .reusable = false}, SHIFT(580), + [1155] = {.count = 1, .reusable = true}, SHIFT(582), + [1157] = {.count = 1, .reusable = true}, SHIFT(583), + [1159] = {.count = 1, .reusable = false}, SHIFT(584), + [1161] = {.count = 1, .reusable = false}, SHIFT(582), + [1163] = {.count = 1, .reusable = true}, SHIFT(585), + [1165] = {.count = 1, .reusable = true}, SHIFT(586), + [1167] = {.count = 1, .reusable = true}, SHIFT(587), + [1169] = {.count = 1, .reusable = false}, SHIFT(588), + [1171] = {.count = 1, .reusable = false}, SHIFT(586), + [1173] = {.count = 1, .reusable = true}, SHIFT(596), + [1175] = {.count = 1, .reusable = true}, SHIFT(597), + [1177] = {.count = 1, .reusable = true}, SHIFT(599), + [1179] = {.count = 1, .reusable = false}, SHIFT(601), + [1181] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1183] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1185] = {.count = 1, .reusable = false}, SHIFT(605), + [1187] = {.count = 1, .reusable = false}, SHIFT(606), + [1189] = {.count = 1, .reusable = false}, SHIFT(607), + [1191] = {.count = 1, .reusable = true}, SHIFT(612), [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 = false}, SHIFT(650), - [1259] = {.count = 1, .reusable = true}, SHIFT(650), - [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), + [1197] = {.count = 1, .reusable = true}, SHIFT(614), + [1199] = {.count = 1, .reusable = false}, SHIFT(616), + [1201] = {.count = 1, .reusable = false}, SHIFT(617), + [1203] = {.count = 1, .reusable = false}, SHIFT(618), + [1205] = {.count = 1, .reusable = true}, SHIFT(618), + [1207] = {.count = 1, .reusable = true}, SHIFT(619), + [1209] = {.count = 1, .reusable = true}, SHIFT(620), + [1211] = {.count = 1, .reusable = true}, SHIFT(621), + [1213] = {.count = 1, .reusable = false}, SHIFT(623), + [1215] = {.count = 1, .reusable = true}, SHIFT(623), + [1217] = {.count = 1, .reusable = true}, SHIFT(622), + [1219] = {.count = 1, .reusable = true}, SHIFT(624), + [1221] = {.count = 1, .reusable = true}, SHIFT(625), + [1223] = {.count = 1, .reusable = false}, SHIFT(626), + [1225] = {.count = 1, .reusable = false}, SHIFT(625), + [1227] = {.count = 1, .reusable = true}, SHIFT(628), + [1229] = {.count = 1, .reusable = false}, SHIFT(630), + [1231] = {.count = 1, .reusable = true}, SHIFT(630), + [1233] = {.count = 1, .reusable = true}, SHIFT(629), + [1235] = {.count = 1, .reusable = true}, SHIFT(631), + [1237] = {.count = 1, .reusable = false}, SHIFT(633), + [1239] = {.count = 1, .reusable = true}, SHIFT(633), + [1241] = {.count = 1, .reusable = true}, SHIFT(632), + [1243] = {.count = 1, .reusable = true}, SHIFT(634), + [1245] = {.count = 1, .reusable = true}, SHIFT(635), + [1247] = {.count = 1, .reusable = true}, SHIFT(636), + [1249] = {.count = 1, .reusable = true}, SHIFT(637), + [1251] = {.count = 1, .reusable = true}, SHIFT(641), + [1253] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1255] = {.count = 1, .reusable = false}, SHIFT(642), + [1257] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1259] = {.count = 1, .reusable = true}, SHIFT(644), + [1261] = {.count = 1, .reusable = true}, SHIFT(645), + [1263] = {.count = 1, .reusable = true}, SHIFT(647), + [1265] = {.count = 1, .reusable = true}, SHIFT(649), + [1267] = {.count = 1, .reusable = true}, SHIFT(650), + [1269] = {.count = 1, .reusable = true}, SHIFT(656), + [1271] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [1273] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [1275] = {.count = 1, .reusable = true}, SHIFT(657), + [1277] = {.count = 1, .reusable = false}, SHIFT(660), + [1279] = {.count = 1, .reusable = true}, SHIFT(660), + [1281] = {.count = 1, .reusable = false}, SHIFT(661), + [1283] = {.count = 1, .reusable = false}, SHIFT(662), + [1285] = {.count = 1, .reusable = true}, SHIFT(663), + [1287] = {.count = 1, .reusable = true}, SHIFT(664), + [1289] = {.count = 1, .reusable = true}, SHIFT(665), + [1291] = {.count = 1, .reusable = true}, SHIFT(666), + [1293] = {.count = 1, .reusable = false}, SHIFT(657), + [1295] = {.count = 1, .reusable = false}, SHIFT(670), + [1297] = {.count = 1, .reusable = true}, SHIFT(670), + [1299] = {.count = 1, .reusable = true}, SHIFT(672), + [1301] = {.count = 1, .reusable = true}, SHIFT(673), + [1303] = {.count = 1, .reusable = true}, SHIFT(674), + [1305] = {.count = 1, .reusable = true}, SHIFT(675), + [1307] = {.count = 1, .reusable = true}, SHIFT(678), + [1309] = {.count = 1, .reusable = true}, SHIFT(679), + [1311] = {.count = 1, .reusable = true}, SHIFT(680), + [1313] = {.count = 1, .reusable = false}, SHIFT(679), + [1315] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [1317] = {.count = 1, .reusable = true}, SHIFT(681), + [1319] = {.count = 1, .reusable = false}, SHIFT(683), [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), + [1323] = {.count = 1, .reusable = true}, SHIFT(685), + [1325] = {.count = 1, .reusable = true}, SHIFT(686), + [1327] = {.count = 1, .reusable = false}, SHIFT(688), + [1329] = {.count = 1, .reusable = true}, SHIFT(688), [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), + [1333] = {.count = 1, .reusable = true}, SHIFT(689), + [1335] = {.count = 1, .reusable = true}, SHIFT(690), + [1337] = {.count = 1, .reusable = false}, SHIFT(691), + [1339] = {.count = 1, .reusable = false}, SHIFT(690), + [1341] = {.count = 1, .reusable = true}, SHIFT(693), + [1343] = {.count = 1, .reusable = false}, SHIFT(695), + [1345] = {.count = 1, .reusable = true}, SHIFT(695), + [1347] = {.count = 1, .reusable = true}, SHIFT(694), + [1349] = {.count = 1, .reusable = true}, SHIFT(696), + [1351] = {.count = 1, .reusable = false}, SHIFT(698), + [1353] = {.count = 1, .reusable = true}, SHIFT(698), + [1355] = {.count = 1, .reusable = true}, SHIFT(697), + [1357] = {.count = 1, .reusable = true}, SHIFT(699), + [1359] = {.count = 1, .reusable = true}, SHIFT(700), + [1361] = {.count = 1, .reusable = true}, SHIFT(702), + [1363] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1365] = {.count = 1, .reusable = false}, SHIFT(703), + [1367] = {.count = 1, .reusable = false}, SHIFT(704), + [1369] = {.count = 1, .reusable = false}, SHIFT(705), + [1371] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1373] = {.count = 1, .reusable = false}, SHIFT(72), + [1375] = {.count = 1, .reusable = false}, SHIFT(74), + [1377] = {.count = 1, .reusable = false}, SHIFT(75), + [1379] = {.count = 1, .reusable = false}, SHIFT(78), + [1381] = {.count = 1, .reusable = false}, SHIFT(79), + [1383] = {.count = 1, .reusable = false}, SHIFT(80), + [1385] = {.count = 1, .reusable = false}, SHIFT(81), [1387] = {.count = 1, .reusable = false}, SHIFT(707), - [1389] = {.count = 1, .reusable = false}, SHIFT(706), + [1389] = {.count = 1, .reusable = true}, SHIFT(708), [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 = 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(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), + [1395] = {.count = 1, .reusable = false}, SHIFT(712), + [1397] = {.count = 1, .reusable = true}, SHIFT(713), + [1399] = {.count = 1, .reusable = true}, SHIFT(714), + [1401] = {.count = 1, .reusable = false}, SHIFT(716), + [1403] = {.count = 1, .reusable = true}, SHIFT(716), + [1405] = {.count = 1, .reusable = true}, SHIFT(715), + [1407] = {.count = 1, .reusable = true}, SHIFT(717), + [1409] = {.count = 1, .reusable = true}, SHIFT(718), + [1411] = {.count = 1, .reusable = false}, SHIFT(719), + [1413] = {.count = 1, .reusable = false}, SHIFT(718), + [1415] = {.count = 1, .reusable = true}, SHIFT(721), + [1417] = {.count = 1, .reusable = false}, SHIFT(723), + [1419] = {.count = 1, .reusable = true}, SHIFT(723), + [1421] = {.count = 1, .reusable = true}, SHIFT(722), + [1423] = {.count = 1, .reusable = true}, SHIFT(724), + [1425] = {.count = 1, .reusable = false}, SHIFT(726), + [1427] = {.count = 1, .reusable = true}, SHIFT(726), + [1429] = {.count = 1, .reusable = true}, SHIFT(725), + [1431] = {.count = 1, .reusable = true}, SHIFT(727), + [1433] = {.count = 1, .reusable = true}, SHIFT(728), + [1435] = {.count = 1, .reusable = false}, SHIFT(83), + [1437] = {.count = 1, .reusable = false}, SHIFT(85), + [1439] = {.count = 1, .reusable = false}, SHIFT(86), + [1441] = {.count = 1, .reusable = false}, SHIFT(89), + [1443] = {.count = 1, .reusable = false}, SHIFT(90), + [1445] = {.count = 1, .reusable = false}, SHIFT(91), + [1447] = {.count = 1, .reusable = false}, SHIFT(92), + [1449] = {.count = 1, .reusable = false}, SHIFT(730), + [1451] = {.count = 1, .reusable = true}, SHIFT(731), + [1453] = {.count = 1, .reusable = true}, SHIFT(732), + [1455] = {.count = 1, .reusable = true}, SHIFT(733), + [1457] = {.count = 1, .reusable = true}, SHIFT(734), + [1459] = {.count = 1, .reusable = true}, SHIFT(99), + [1461] = {.count = 1, .reusable = true}, SHIFT(100), + [1463] = {.count = 1, .reusable = true}, SHIFT(101), + [1465] = {.count = 1, .reusable = true}, SHIFT(102), + [1467] = {.count = 1, .reusable = true}, SHIFT(735), + [1469] = {.count = 1, .reusable = false}, SHIFT(737), + [1471] = {.count = 1, .reusable = false}, SHIFT(738), + [1473] = {.count = 1, .reusable = true}, SHIFT(739), + [1475] = {.count = 1, .reusable = true}, SHIFT(740), + [1477] = {.count = 1, .reusable = false}, SHIFT(742), + [1479] = {.count = 1, .reusable = true}, SHIFT(742), + [1481] = {.count = 1, .reusable = true}, SHIFT(741), + [1483] = {.count = 1, .reusable = true}, SHIFT(743), + [1485] = {.count = 1, .reusable = true}, SHIFT(744), + [1487] = {.count = 1, .reusable = false}, SHIFT(745), + [1489] = {.count = 1, .reusable = false}, SHIFT(744), + [1491] = {.count = 1, .reusable = true}, SHIFT(747), + [1493] = {.count = 1, .reusable = false}, SHIFT(749), + [1495] = {.count = 1, .reusable = true}, SHIFT(749), + [1497] = {.count = 1, .reusable = true}, SHIFT(748), + [1499] = {.count = 1, .reusable = true}, SHIFT(750), + [1501] = {.count = 1, .reusable = false}, SHIFT(752), + [1503] = {.count = 1, .reusable = true}, SHIFT(752), + [1505] = {.count = 1, .reusable = true}, SHIFT(751), + [1507] = {.count = 1, .reusable = true}, SHIFT(753), + [1509] = {.count = 1, .reusable = true}, SHIFT(754), + [1511] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(94), + [1514] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1516] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), + [1519] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), + [1522] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1525] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), + [1528] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [1531] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), + [1534] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), + [1537] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), + [1540] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), + [1543] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1545] = {.count = 1, .reusable = true}, SHIFT(755), + [1547] = {.count = 1, .reusable = true}, SHIFT(110), + [1549] = {.count = 1, .reusable = true}, SHIFT(111), + [1551] = {.count = 1, .reusable = true}, SHIFT(112), + [1553] = {.count = 1, .reusable = true}, SHIFT(113), + [1555] = {.count = 1, .reusable = false}, SHIFT(757), + [1557] = {.count = 1, .reusable = false}, SHIFT(758), + [1559] = {.count = 1, .reusable = true}, SHIFT(759), + [1561] = {.count = 1, .reusable = true}, SHIFT(760), + [1563] = {.count = 1, .reusable = false}, SHIFT(762), + [1565] = {.count = 1, .reusable = true}, SHIFT(762), + [1567] = {.count = 1, .reusable = true}, SHIFT(761), + [1569] = {.count = 1, .reusable = true}, SHIFT(763), + [1571] = {.count = 1, .reusable = true}, SHIFT(764), + [1573] = {.count = 1, .reusable = false}, SHIFT(765), + [1575] = {.count = 1, .reusable = false}, SHIFT(764), + [1577] = {.count = 1, .reusable = true}, SHIFT(767), + [1579] = {.count = 1, .reusable = false}, SHIFT(769), + [1581] = {.count = 1, .reusable = true}, SHIFT(769), + [1583] = {.count = 1, .reusable = true}, SHIFT(768), + [1585] = {.count = 1, .reusable = true}, SHIFT(770), + [1587] = {.count = 1, .reusable = false}, SHIFT(772), + [1589] = {.count = 1, .reusable = true}, SHIFT(772), + [1591] = {.count = 1, .reusable = true}, SHIFT(771), + [1593] = {.count = 1, .reusable = true}, SHIFT(773), + [1595] = {.count = 1, .reusable = true}, SHIFT(774), + [1597] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1599] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(106), + [1602] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), + [1605] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), + [1608] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), + [1611] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [1614] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), + [1617] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [1620] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [1623] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), + [1626] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1628] = {.count = 1, .reusable = true}, SHIFT(775), + [1630] = {.count = 1, .reusable = false}, SHIFT(777), + [1632] = {.count = 1, .reusable = false}, SHIFT(778), + [1634] = {.count = 1, .reusable = true}, SHIFT(779), + [1636] = {.count = 1, .reusable = true}, SHIFT(780), + [1638] = {.count = 1, .reusable = false}, SHIFT(782), + [1640] = {.count = 1, .reusable = true}, SHIFT(782), + [1642] = {.count = 1, .reusable = true}, SHIFT(781), + [1644] = {.count = 1, .reusable = true}, SHIFT(783), + [1646] = {.count = 1, .reusable = true}, SHIFT(784), + [1648] = {.count = 1, .reusable = false}, SHIFT(785), + [1650] = {.count = 1, .reusable = false}, SHIFT(784), + [1652] = {.count = 1, .reusable = true}, SHIFT(787), + [1654] = {.count = 1, .reusable = false}, SHIFT(789), + [1656] = {.count = 1, .reusable = true}, SHIFT(789), + [1658] = {.count = 1, .reusable = true}, SHIFT(788), + [1660] = {.count = 1, .reusable = true}, SHIFT(790), + [1662] = {.count = 1, .reusable = false}, SHIFT(792), + [1664] = {.count = 1, .reusable = true}, SHIFT(792), + [1666] = {.count = 1, .reusable = true}, SHIFT(791), + [1668] = {.count = 1, .reusable = true}, SHIFT(793), + [1670] = {.count = 1, .reusable = true}, SHIFT(794), + [1672] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1674] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1676] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(125), + [1679] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1681] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1683] = {.count = 1, .reusable = true}, SHIFT(795), + [1685] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1687] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), + [1689] = {.count = 1, .reusable = true}, SHIFT(796), + [1691] = {.count = 1, .reusable = true}, SHIFT(797), + [1693] = {.count = 1, .reusable = false}, SHIFT(799), + [1695] = {.count = 1, .reusable = true}, SHIFT(799), + [1697] = {.count = 1, .reusable = true}, SHIFT(798), + [1699] = {.count = 1, .reusable = true}, SHIFT(800), + [1701] = {.count = 1, .reusable = true}, SHIFT(801), + [1703] = {.count = 1, .reusable = false}, SHIFT(802), + [1705] = {.count = 1, .reusable = false}, SHIFT(801), + [1707] = {.count = 1, .reusable = true}, SHIFT(804), + [1709] = {.count = 1, .reusable = false}, SHIFT(806), + [1711] = {.count = 1, .reusable = true}, SHIFT(806), + [1713] = {.count = 1, .reusable = true}, SHIFT(805), + [1715] = {.count = 1, .reusable = true}, SHIFT(807), + [1717] = {.count = 1, .reusable = false}, SHIFT(809), + [1719] = {.count = 1, .reusable = true}, SHIFT(809), + [1721] = {.count = 1, .reusable = true}, SHIFT(808), + [1723] = {.count = 1, .reusable = true}, SHIFT(810), + [1725] = {.count = 1, .reusable = false}, SHIFT(811), + [1727] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(812), + [1730] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(129), + [1733] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(130), + [1736] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(131), + [1739] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(132), + [1742] = {.count = 1, .reusable = true}, SHIFT(813), + [1744] = {.count = 1, .reusable = true}, SHIFT(814), + [1746] = {.count = 1, .reusable = true}, SHIFT(816), + [1748] = {.count = 1, .reusable = false}, SHIFT(817), + [1750] = {.count = 1, .reusable = true}, SHIFT(818), + [1752] = {.count = 1, .reusable = false}, SHIFT(819), + [1754] = {.count = 1, .reusable = true}, SHIFT(820), + [1756] = {.count = 1, .reusable = true}, SHIFT(821), + [1758] = {.count = 1, .reusable = true}, SHIFT(822), + [1760] = {.count = 1, .reusable = true}, SHIFT(823), + [1762] = {.count = 1, .reusable = true}, SHIFT(824), + [1764] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1766] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1768] = {.count = 1, .reusable = true}, SHIFT(826), + [1770] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1772] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1774] = {.count = 1, .reusable = false}, SHIFT(828), + [1776] = {.count = 1, .reusable = false}, SHIFT(829), + [1778] = {.count = 1, .reusable = true}, SHIFT(831), + [1780] = {.count = 1, .reusable = true}, SHIFT(832), + [1782] = {.count = 1, .reusable = false}, SHIFT(833), + [1784] = {.count = 1, .reusable = false}, SHIFT(831), + [1786] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1788] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1790] = {.count = 1, .reusable = true}, SHIFT(834), + [1792] = {.count = 1, .reusable = true}, SHIFT(835), + [1794] = {.count = 1, .reusable = true}, SHIFT(836), + [1796] = {.count = 1, .reusable = false}, SHIFT(837), + [1798] = {.count = 1, .reusable = false}, SHIFT(835), + [1800] = {.count = 1, .reusable = true}, SHIFT(839), + [1802] = {.count = 1, .reusable = true}, SHIFT(846), + [1804] = {.count = 1, .reusable = false}, SHIFT(847), + [1806] = {.count = 1, .reusable = true}, SHIFT(847), + [1808] = {.count = 1, .reusable = true}, SHIFT(848), + [1810] = {.count = 1, .reusable = true}, SHIFT(849), + [1812] = {.count = 1, .reusable = false}, SHIFT(851), + [1814] = {.count = 1, .reusable = true}, SHIFT(851), + [1816] = {.count = 1, .reusable = true}, SHIFT(850), + [1818] = {.count = 1, .reusable = true}, SHIFT(852), + [1820] = {.count = 1, .reusable = false}, SHIFT(854), + [1822] = {.count = 1, .reusable = true}, SHIFT(854), + [1824] = {.count = 1, .reusable = true}, SHIFT(853), + [1826] = {.count = 1, .reusable = false}, SHIFT(856), + [1828] = {.count = 1, .reusable = true}, SHIFT(856), + [1830] = {.count = 1, .reusable = true}, SHIFT(855), + [1832] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1834] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1836] = {.count = 1, .reusable = true}, SHIFT(857), + [1838] = {.count = 1, .reusable = true}, SHIFT(858), + [1840] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1842] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [1844] = {.count = 1, .reusable = true}, SHIFT(859), + [1846] = {.count = 1, .reusable = true}, SHIFT(860), + [1848] = {.count = 1, .reusable = true}, SHIFT(861), + [1850] = {.count = 1, .reusable = false}, SHIFT(862), + [1852] = {.count = 1, .reusable = false}, SHIFT(863), + [1854] = {.count = 1, .reusable = true}, SHIFT(863), + [1856] = {.count = 1, .reusable = true}, SHIFT(864), + [1858] = {.count = 1, .reusable = true}, SHIFT(866), + [1860] = {.count = 1, .reusable = false}, SHIFT(867), + [1862] = {.count = 1, .reusable = false}, SHIFT(868), + [1864] = {.count = 1, .reusable = true}, SHIFT(868), + [1866] = {.count = 1, .reusable = false}, SHIFT(869), + [1868] = {.count = 1, .reusable = false}, SHIFT(870), + [1870] = {.count = 1, .reusable = true}, SHIFT(870), + [1872] = {.count = 1, .reusable = true}, SHIFT(871), + [1874] = {.count = 1, .reusable = true}, SHIFT(872), + [1876] = {.count = 1, .reusable = false}, SHIFT(874), + [1878] = {.count = 1, .reusable = false}, SHIFT(875), + [1880] = {.count = 1, .reusable = true}, SHIFT(875), + [1882] = {.count = 1, .reusable = true}, SHIFT(878), + [1884] = {.count = 1, .reusable = true}, SHIFT(879), + [1886] = {.count = 1, .reusable = true}, SHIFT(880), + [1888] = {.count = 1, .reusable = false}, SHIFT(882), + [1890] = {.count = 1, .reusable = false}, SHIFT(883), + [1892] = {.count = 1, .reusable = true}, SHIFT(885), + [1894] = {.count = 1, .reusable = true}, SHIFT(886), + [1896] = {.count = 1, .reusable = false}, SHIFT(887), + [1898] = {.count = 1, .reusable = false}, SHIFT(885), + [1900] = {.count = 1, .reusable = true}, SHIFT(888), + [1902] = {.count = 1, .reusable = true}, SHIFT(889), + [1904] = {.count = 1, .reusable = true}, SHIFT(890), + [1906] = {.count = 1, .reusable = false}, SHIFT(891), + [1908] = {.count = 1, .reusable = false}, SHIFT(889), + [1910] = {.count = 1, .reusable = true}, SHIFT(900), + [1912] = {.count = 1, .reusable = false}, SHIFT(902), + [1914] = {.count = 1, .reusable = false}, SHIFT(903), + [1916] = {.count = 1, .reusable = true}, SHIFT(905), + [1918] = {.count = 1, .reusable = true}, SHIFT(906), + [1920] = {.count = 1, .reusable = false}, SHIFT(907), + [1922] = {.count = 1, .reusable = false}, SHIFT(905), + [1924] = {.count = 1, .reusable = true}, SHIFT(908), + [1926] = {.count = 1, .reusable = true}, SHIFT(909), + [1928] = {.count = 1, .reusable = true}, SHIFT(910), + [1930] = {.count = 1, .reusable = false}, SHIFT(911), + [1932] = {.count = 1, .reusable = false}, SHIFT(909), + [1934] = {.count = 1, .reusable = true}, SHIFT(920), + [1936] = {.count = 1, .reusable = false}, SHIFT(922), + [1938] = {.count = 1, .reusable = false}, SHIFT(923), + [1940] = {.count = 1, .reusable = true}, SHIFT(924), + [1942] = {.count = 1, .reusable = true}, SHIFT(925), + [1944] = {.count = 1, .reusable = false}, SHIFT(927), + [1946] = {.count = 1, .reusable = true}, SHIFT(927), + [1948] = {.count = 1, .reusable = true}, SHIFT(926), + [1950] = {.count = 1, .reusable = true}, SHIFT(928), + [1952] = {.count = 1, .reusable = true}, SHIFT(929), + [1954] = {.count = 1, .reusable = false}, SHIFT(930), + [1956] = {.count = 1, .reusable = false}, SHIFT(929), + [1958] = {.count = 1, .reusable = true}, SHIFT(932), + [1960] = {.count = 1, .reusable = false}, SHIFT(934), + [1962] = {.count = 1, .reusable = true}, SHIFT(934), + [1964] = {.count = 1, .reusable = true}, SHIFT(933), + [1966] = {.count = 1, .reusable = true}, SHIFT(935), + [1968] = {.count = 1, .reusable = false}, SHIFT(937), + [1970] = {.count = 1, .reusable = true}, SHIFT(937), + [1972] = {.count = 1, .reusable = true}, SHIFT(936), + [1974] = {.count = 1, .reusable = true}, SHIFT(938), + [1976] = {.count = 1, .reusable = true}, SHIFT(939), + [1978] = {.count = 1, .reusable = true}, SHIFT(940), + [1980] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [1982] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [1984] = {.count = 1, .reusable = true}, SHIFT(946), + [1986] = {.count = 1, .reusable = true}, SHIFT(945), + [1988] = {.count = 1, .reusable = false}, SHIFT(947), + [1990] = {.count = 1, .reusable = true}, SHIFT(947), + [1992] = {.count = 1, .reusable = false}, SHIFT(948), + [1994] = {.count = 1, .reusable = false}, SHIFT(155), + [1996] = {.count = 1, .reusable = false}, SHIFT(949), + [1998] = {.count = 1, .reusable = false}, SHIFT(158), + [2000] = {.count = 1, .reusable = false}, SHIFT(159), + [2002] = {.count = 1, .reusable = false}, SHIFT(160), + [2004] = {.count = 1, .reusable = false}, SHIFT(161), + [2006] = {.count = 1, .reusable = false}, SHIFT(950), + [2008] = {.count = 1, .reusable = true}, SHIFT(951), + [2010] = {.count = 1, .reusable = true}, SHIFT(952), + [2012] = {.count = 1, .reusable = true}, SHIFT(954), + [2014] = {.count = 1, .reusable = true}, SHIFT(955), + [2016] = {.count = 1, .reusable = true}, SHIFT(956), + [2018] = {.count = 1, .reusable = true}, SHIFT(963), + [2020] = {.count = 1, .reusable = true}, SHIFT(964), + [2022] = {.count = 1, .reusable = true}, SHIFT(966), + [2024] = {.count = 1, .reusable = true}, SHIFT(968), + [2026] = {.count = 1, .reusable = true}, SHIFT(969), + [2028] = {.count = 1, .reusable = true}, SHIFT(975), + [2030] = {.count = 1, .reusable = false}, SHIFT(979), + [2032] = {.count = 1, .reusable = true}, SHIFT(979), + [2034] = {.count = 1, .reusable = false}, SHIFT(980), + [2036] = {.count = 1, .reusable = false}, SHIFT(981), + [2038] = {.count = 1, .reusable = true}, SHIFT(982), + [2040] = {.count = 1, .reusable = true}, SHIFT(983), + [2042] = {.count = 1, .reusable = true}, SHIFT(984), + [2044] = {.count = 1, .reusable = true}, SHIFT(985), + [2046] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [2048] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [2050] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [2052] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [2054] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [2056] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [2058] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [2060] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [2062] = {.count = 1, .reusable = true}, SHIFT(991), + [2064] = {.count = 1, .reusable = false}, SHIFT(992), + [2066] = {.count = 1, .reusable = false}, SHIFT(991), + [2068] = {.count = 1, .reusable = true}, SHIFT(993), + [2070] = {.count = 1, .reusable = true}, SHIFT(994), + [2072] = {.count = 1, .reusable = true}, SHIFT(995), + [2074] = {.count = 1, .reusable = false}, SHIFT(996), + [2076] = {.count = 1, .reusable = false}, SHIFT(994), + [2078] = {.count = 1, .reusable = true}, SHIFT(999), + [2080] = {.count = 1, .reusable = true}, SHIFT(998), + [2082] = {.count = 1, .reusable = true}, SHIFT(1000), + [2084] = {.count = 1, .reusable = true}, SHIFT(1001), + [2086] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [2088] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [2090] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [2092] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [2094] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [2096] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [2098] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2100] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2102] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [2104] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [2106] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [2108] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [2110] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2112] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(193), + [2115] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2117] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(195), + [2120] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(196), + [2123] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(197), + [2126] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(194), + [2129] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(198), + [2132] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [2135] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), + [2138] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(199), + [2141] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [2144] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [2147] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2150] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), + [2153] = {.count = 1, .reusable = true}, SHIFT(1006), + [2155] = {.count = 1, .reusable = false}, SHIFT(681), + [2157] = {.count = 1, .reusable = true}, SHIFT(1007), + [2159] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [2161] = {.count = 1, .reusable = true}, SHIFT(1009), [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), + [2165] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [2167] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [2169] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [2171] = {.count = 1, .reusable = true}, SHIFT(1011), + [2173] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2175] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2177] = {.count = 1, .reusable = false}, SHIFT(1013), + [2179] = {.count = 1, .reusable = false}, SHIFT(1014), + [2181] = {.count = 1, .reusable = true}, SHIFT(1016), + [2183] = {.count = 1, .reusable = true}, SHIFT(1017), + [2185] = {.count = 1, .reusable = false}, SHIFT(1018), + [2187] = {.count = 1, .reusable = false}, SHIFT(1016), + [2189] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2191] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2193] = {.count = 1, .reusable = true}, SHIFT(1019), + [2195] = {.count = 1, .reusable = true}, SHIFT(1020), + [2197] = {.count = 1, .reusable = true}, SHIFT(1021), + [2199] = {.count = 1, .reusable = false}, SHIFT(1022), + [2201] = {.count = 1, .reusable = false}, SHIFT(1020), + [2203] = {.count = 1, .reusable = true}, SHIFT(1030), + [2205] = {.count = 1, .reusable = true}, SHIFT(1032), + [2207] = {.count = 1, .reusable = false}, SHIFT(1034), + [2209] = {.count = 1, .reusable = false}, SHIFT(1035), + [2211] = {.count = 1, .reusable = true}, SHIFT(1036), + [2213] = {.count = 1, .reusable = true}, SHIFT(1037), + [2215] = {.count = 1, .reusable = false}, SHIFT(1039), + [2217] = {.count = 1, .reusable = true}, SHIFT(1039), + [2219] = {.count = 1, .reusable = true}, SHIFT(1038), + [2221] = {.count = 1, .reusable = true}, SHIFT(1040), + [2223] = {.count = 1, .reusable = true}, SHIFT(1041), + [2225] = {.count = 1, .reusable = false}, SHIFT(1042), + [2227] = {.count = 1, .reusable = false}, SHIFT(1041), + [2229] = {.count = 1, .reusable = true}, SHIFT(1044), + [2231] = {.count = 1, .reusable = false}, SHIFT(1046), + [2233] = {.count = 1, .reusable = true}, SHIFT(1046), + [2235] = {.count = 1, .reusable = true}, SHIFT(1045), + [2237] = {.count = 1, .reusable = true}, SHIFT(1047), + [2239] = {.count = 1, .reusable = false}, SHIFT(1049), + [2241] = {.count = 1, .reusable = true}, SHIFT(1049), + [2243] = {.count = 1, .reusable = true}, SHIFT(1048), + [2245] = {.count = 1, .reusable = true}, SHIFT(1050), + [2247] = {.count = 1, .reusable = true}, SHIFT(1051), + [2249] = {.count = 1, .reusable = false}, SHIFT(1053), + [2251] = {.count = 1, .reusable = false}, SHIFT(596), + [2253] = {.count = 1, .reusable = false}, SHIFT(43), + [2255] = {.count = 1, .reusable = false}, SHIFT(597), + [2257] = {.count = 1, .reusable = false}, SHIFT(46), + [2259] = {.count = 1, .reusable = false}, SHIFT(47), + [2261] = {.count = 1, .reusable = false}, SHIFT(48), + [2263] = {.count = 1, .reusable = false}, SHIFT(49), + [2265] = {.count = 1, .reusable = true}, SHIFT(1053), + [2267] = {.count = 1, .reusable = false}, SHIFT(1055), + [2269] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2271] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2273] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [2275] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [2277] = {.count = 1, .reusable = false}, SHIFT(1057), + [2279] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), + [2281] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), + [2283] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [2285] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [2287] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [2289] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2291] = {.count = 1, .reusable = true}, SHIFT(1062), + [2293] = {.count = 1, .reusable = false}, SHIFT(1062), + [2295] = {.count = 1, .reusable = true}, SHIFT(606), + [2297] = {.count = 1, .reusable = true}, SHIFT(607), + [2299] = {.count = 1, .reusable = false}, SHIFT(1067), + [2301] = {.count = 1, .reusable = true}, SHIFT(1068), + [2303] = {.count = 1, .reusable = true}, SHIFT(1069), + [2305] = {.count = 1, .reusable = false}, SHIFT(1069), + [2307] = {.count = 1, .reusable = false}, SHIFT(1073), + [2309] = {.count = 1, .reusable = true}, SHIFT(1073), + [2311] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(228), + [2314] = {.count = 1, .reusable = false}, SHIFT(1074), + [2316] = {.count = 1, .reusable = false}, SHIFT(1075), + [2318] = {.count = 1, .reusable = false}, SHIFT(1078), + [2320] = {.count = 1, .reusable = true}, SHIFT(1078), + [2322] = {.count = 1, .reusable = true}, SHIFT(1079), + [2324] = {.count = 1, .reusable = false}, SHIFT(1080), + [2326] = {.count = 1, .reusable = true}, SHIFT(1081), + [2328] = {.count = 1, .reusable = true}, SHIFT(1083), + [2330] = {.count = 1, .reusable = true}, SHIFT(1084), + [2332] = {.count = 1, .reusable = true}, SHIFT(1085), + [2334] = {.count = 1, .reusable = true}, SHIFT(1086), + [2336] = {.count = 1, .reusable = false}, SHIFT(1088), + [2338] = {.count = 1, .reusable = true}, SHIFT(1088), + [2340] = {.count = 1, .reusable = true}, SHIFT(1087), + [2342] = {.count = 1, .reusable = true}, SHIFT(1089), + [2344] = {.count = 1, .reusable = false}, SHIFT(1091), + [2346] = {.count = 1, .reusable = true}, SHIFT(1091), + [2348] = {.count = 1, .reusable = true}, SHIFT(1090), + [2350] = {.count = 1, .reusable = false}, SHIFT(1093), + [2352] = {.count = 1, .reusable = true}, SHIFT(1093), + [2354] = {.count = 1, .reusable = true}, SHIFT(1092), + [2356] = {.count = 1, .reusable = true}, SHIFT(1094), + [2358] = {.count = 1, .reusable = true}, SHIFT(1095), + [2360] = {.count = 1, .reusable = true}, SHIFT(1096), + [2362] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [2364] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [2366] = {.count = 1, .reusable = false}, SHIFT(1098), + [2368] = {.count = 1, .reusable = true}, SHIFT(1098), + [2370] = {.count = 1, .reusable = true}, SHIFT(1099), + [2372] = {.count = 1, .reusable = false}, SHIFT(1101), + [2374] = {.count = 1, .reusable = true}, SHIFT(1101), + [2376] = {.count = 1, .reusable = true}, SHIFT(1102), + [2378] = {.count = 1, .reusable = true}, SHIFT(1103), + [2380] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [2382] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [2384] = {.count = 1, .reusable = true}, SHIFT(1107), + [2386] = {.count = 1, .reusable = true}, SHIFT(1108), + [2388] = {.count = 1, .reusable = false}, SHIFT(1109), + [2390] = {.count = 1, .reusable = true}, SHIFT(1110), + [2392] = {.count = 1, .reusable = false}, SHIFT(1111), + [2394] = {.count = 1, .reusable = false}, SHIFT(1112), + [2396] = {.count = 1, .reusable = true}, SHIFT(1114), + [2398] = {.count = 1, .reusable = true}, SHIFT(1115), + [2400] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), + [2403] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(260), + [2406] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(261), + [2409] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(264), + [2412] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(265), + [2415] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), + [2417] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), + [2419] = {.count = 1, .reusable = true}, SHIFT(1119), + [2421] = {.count = 1, .reusable = true}, SHIFT(1120), + [2423] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(273), + [2426] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(275), + [2429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(276), + [2432] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(274), + [2435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(277), + [2438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(278), + [2441] = {.count = 1, .reusable = true}, SHIFT(1122), + [2443] = {.count = 1, .reusable = true}, SHIFT(1124), + [2445] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2447] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2449] = {.count = 1, .reusable = false}, SHIFT(287), + [2451] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(291), + [2454] = {.count = 1, .reusable = false}, SHIFT(1127), + [2456] = {.count = 1, .reusable = true}, SHIFT(1128), + [2458] = {.count = 1, .reusable = false}, SHIFT(1129), + [2460] = {.count = 1, .reusable = true}, SHIFT(1130), + [2462] = {.count = 1, .reusable = true}, SHIFT(1132), + [2464] = {.count = 1, .reusable = true}, SHIFT(1133), + [2466] = {.count = 1, .reusable = true}, SHIFT(1134), + [2468] = {.count = 1, .reusable = true}, SHIFT(1135), + [2470] = {.count = 1, .reusable = false}, SHIFT(1137), + [2472] = {.count = 1, .reusable = true}, SHIFT(1137), + [2474] = {.count = 1, .reusable = true}, SHIFT(1136), + [2476] = {.count = 1, .reusable = true}, SHIFT(1138), + [2478] = {.count = 1, .reusable = false}, SHIFT(1140), + [2480] = {.count = 1, .reusable = true}, SHIFT(1140), + [2482] = {.count = 1, .reusable = true}, SHIFT(1139), + [2484] = {.count = 1, .reusable = false}, SHIFT(1142), + [2486] = {.count = 1, .reusable = true}, SHIFT(1142), + [2488] = {.count = 1, .reusable = true}, SHIFT(1141), + [2490] = {.count = 1, .reusable = true}, SHIFT(1143), + [2492] = {.count = 1, .reusable = true}, SHIFT(1144), + [2494] = {.count = 1, .reusable = true}, SHIFT(1145), + [2496] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [2498] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [2500] = {.count = 1, .reusable = false}, SHIFT(1146), + [2502] = {.count = 1, .reusable = true}, SHIFT(1146), + [2504] = {.count = 1, .reusable = true}, SHIFT(1147), + [2506] = {.count = 1, .reusable = true}, SHIFT(1148), + [2508] = {.count = 1, .reusable = false}, SHIFT(1149), + [2510] = {.count = 1, .reusable = true}, SHIFT(1150), + [2512] = {.count = 1, .reusable = true}, SHIFT(1151), + [2514] = {.count = 1, .reusable = true}, SHIFT(1152), + [2516] = {.count = 1, .reusable = true}, SHIFT(1153), + [2518] = {.count = 1, .reusable = true}, SHIFT(1154), + [2520] = {.count = 1, .reusable = true}, SHIFT(1156), + [2522] = {.count = 1, .reusable = true}, SHIFT(1157), + [2524] = {.count = 1, .reusable = true}, SHIFT(1158), + [2526] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), + [2528] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), + [2530] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(315), + [2533] = {.count = 1, .reusable = false}, SHIFT(1161), + [2535] = {.count = 1, .reusable = true}, SHIFT(1162), + [2537] = {.count = 1, .reusable = false}, SHIFT(1163), + [2539] = {.count = 1, .reusable = true}, SHIFT(1164), + [2541] = {.count = 1, .reusable = true}, SHIFT(1166), + [2543] = {.count = 1, .reusable = true}, SHIFT(1167), + [2545] = {.count = 1, .reusable = true}, SHIFT(1168), + [2547] = {.count = 1, .reusable = true}, SHIFT(1169), + [2549] = {.count = 1, .reusable = false}, SHIFT(1171), + [2551] = {.count = 1, .reusable = true}, SHIFT(1171), + [2553] = {.count = 1, .reusable = true}, SHIFT(1170), + [2555] = {.count = 1, .reusable = true}, SHIFT(1172), + [2557] = {.count = 1, .reusable = false}, SHIFT(1174), + [2559] = {.count = 1, .reusable = true}, SHIFT(1174), + [2561] = {.count = 1, .reusable = true}, SHIFT(1173), + [2563] = {.count = 1, .reusable = false}, SHIFT(1176), + [2565] = {.count = 1, .reusable = true}, SHIFT(1176), + [2567] = {.count = 1, .reusable = true}, SHIFT(1175), + [2569] = {.count = 1, .reusable = true}, SHIFT(1177), + [2571] = {.count = 1, .reusable = true}, SHIFT(1178), + [2573] = {.count = 1, .reusable = true}, SHIFT(1179), + [2575] = {.count = 1, .reusable = true}, SHIFT(1180), + [2577] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(337), + [2580] = {.count = 1, .reusable = false}, SHIFT(1182), + [2582] = {.count = 1, .reusable = true}, SHIFT(1183), + [2584] = {.count = 1, .reusable = false}, SHIFT(1184), + [2586] = {.count = 1, .reusable = true}, SHIFT(1185), + [2588] = {.count = 1, .reusable = true}, SHIFT(1187), + [2590] = {.count = 1, .reusable = true}, SHIFT(1188), + [2592] = {.count = 1, .reusable = true}, SHIFT(1189), + [2594] = {.count = 1, .reusable = true}, SHIFT(1190), + [2596] = {.count = 1, .reusable = false}, SHIFT(1192), + [2598] = {.count = 1, .reusable = true}, SHIFT(1192), + [2600] = {.count = 1, .reusable = true}, SHIFT(1191), + [2602] = {.count = 1, .reusable = true}, SHIFT(1193), + [2604] = {.count = 1, .reusable = false}, SHIFT(1195), + [2606] = {.count = 1, .reusable = true}, SHIFT(1195), + [2608] = {.count = 1, .reusable = true}, SHIFT(1194), + [2610] = {.count = 1, .reusable = false}, SHIFT(1197), + [2612] = {.count = 1, .reusable = true}, SHIFT(1197), + [2614] = {.count = 1, .reusable = true}, SHIFT(1196), + [2616] = {.count = 1, .reusable = true}, SHIFT(1198), + [2618] = {.count = 1, .reusable = true}, SHIFT(1199), + [2620] = {.count = 1, .reusable = true}, SHIFT(1200), + [2622] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(357), + [2625] = {.count = 1, .reusable = false}, SHIFT(1201), + [2627] = {.count = 1, .reusable = true}, SHIFT(1202), + [2629] = {.count = 1, .reusable = false}, SHIFT(1203), + [2631] = {.count = 1, .reusable = true}, SHIFT(1204), + [2633] = {.count = 1, .reusable = true}, SHIFT(1206), + [2635] = {.count = 1, .reusable = true}, SHIFT(1207), + [2637] = {.count = 1, .reusable = true}, SHIFT(1208), + [2639] = {.count = 1, .reusable = true}, SHIFT(1209), + [2641] = {.count = 1, .reusable = false}, SHIFT(1211), + [2643] = {.count = 1, .reusable = true}, SHIFT(1211), + [2645] = {.count = 1, .reusable = true}, SHIFT(1210), + [2647] = {.count = 1, .reusable = true}, SHIFT(1212), + [2649] = {.count = 1, .reusable = false}, SHIFT(1214), + [2651] = {.count = 1, .reusable = true}, SHIFT(1214), + [2653] = {.count = 1, .reusable = true}, SHIFT(1213), + [2655] = {.count = 1, .reusable = false}, SHIFT(1216), + [2657] = {.count = 1, .reusable = true}, SHIFT(1216), + [2659] = {.count = 1, .reusable = true}, SHIFT(1215), + [2661] = {.count = 1, .reusable = true}, SHIFT(1217), + [2663] = {.count = 1, .reusable = true}, SHIFT(1218), + [2665] = {.count = 1, .reusable = true}, SHIFT(1219), + [2667] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(377), + [2670] = {.count = 1, .reusable = false}, SHIFT(1220), + [2672] = {.count = 1, .reusable = true}, SHIFT(1221), + [2674] = {.count = 1, .reusable = false}, SHIFT(1222), + [2676] = {.count = 1, .reusable = true}, SHIFT(1223), + [2678] = {.count = 1, .reusable = true}, SHIFT(1225), + [2680] = {.count = 1, .reusable = true}, SHIFT(1226), + [2682] = {.count = 1, .reusable = true}, SHIFT(1227), + [2684] = {.count = 1, .reusable = true}, SHIFT(1228), + [2686] = {.count = 1, .reusable = false}, SHIFT(1230), + [2688] = {.count = 1, .reusable = true}, SHIFT(1230), + [2690] = {.count = 1, .reusable = true}, SHIFT(1229), + [2692] = {.count = 1, .reusable = true}, SHIFT(1231), + [2694] = {.count = 1, .reusable = false}, SHIFT(1233), + [2696] = {.count = 1, .reusable = true}, SHIFT(1233), + [2698] = {.count = 1, .reusable = true}, SHIFT(1232), + [2700] = {.count = 1, .reusable = false}, SHIFT(1235), + [2702] = {.count = 1, .reusable = true}, SHIFT(1235), + [2704] = {.count = 1, .reusable = true}, SHIFT(1234), + [2706] = {.count = 1, .reusable = true}, SHIFT(1236), + [2708] = {.count = 1, .reusable = true}, SHIFT(1237), + [2710] = {.count = 1, .reusable = true}, SHIFT(1238), + [2712] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [2714] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), + [2716] = {.count = 1, .reusable = true}, SHIFT(1239), + [2718] = {.count = 1, .reusable = false}, SHIFT(1240), + [2720] = {.count = 1, .reusable = true}, SHIFT(1241), + [2722] = {.count = 1, .reusable = true}, SHIFT(1243), + [2724] = {.count = 1, .reusable = true}, SHIFT(1244), + [2726] = {.count = 1, .reusable = true}, SHIFT(1245), + [2728] = {.count = 1, .reusable = true}, SHIFT(1246), + [2730] = {.count = 1, .reusable = false}, SHIFT(1248), + [2732] = {.count = 1, .reusable = true}, SHIFT(1248), + [2734] = {.count = 1, .reusable = true}, SHIFT(1247), + [2736] = {.count = 1, .reusable = true}, SHIFT(1249), + [2738] = {.count = 1, .reusable = false}, SHIFT(1251), + [2740] = {.count = 1, .reusable = true}, SHIFT(1251), + [2742] = {.count = 1, .reusable = true}, SHIFT(1250), + [2744] = {.count = 1, .reusable = false}, SHIFT(1253), + [2746] = {.count = 1, .reusable = true}, SHIFT(1253), + [2748] = {.count = 1, .reusable = true}, SHIFT(1252), + [2750] = {.count = 1, .reusable = true}, SHIFT(1254), + [2752] = {.count = 1, .reusable = true}, SHIFT(1255), + [2754] = {.count = 1, .reusable = true}, SHIFT(1256), + [2756] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [2758] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [2760] = {.count = 1, .reusable = true}, SHIFT(1257), + [2762] = {.count = 1, .reusable = true}, SHIFT(1258), + [2764] = {.count = 1, .reusable = true}, SHIFT(1259), + [2766] = {.count = 1, .reusable = true}, SHIFT(1260), + [2768] = {.count = 1, .reusable = true}, SHIFT(1261), + [2770] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [2772] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [2774] = {.count = 1, .reusable = true}, SHIFT(1262), + [2776] = {.count = 1, .reusable = true}, SHIFT(1263), + [2778] = {.count = 1, .reusable = false}, SHIFT(1265), + [2780] = {.count = 1, .reusable = false}, SHIFT(1266), + [2782] = {.count = 1, .reusable = true}, SHIFT(1268), + [2784] = {.count = 1, .reusable = true}, SHIFT(1269), + [2786] = {.count = 1, .reusable = false}, SHIFT(1270), + [2788] = {.count = 1, .reusable = false}, SHIFT(1268), + [2790] = {.count = 1, .reusable = true}, SHIFT(1271), + [2792] = {.count = 1, .reusable = true}, SHIFT(1272), + [2794] = {.count = 1, .reusable = true}, SHIFT(1273), + [2796] = {.count = 1, .reusable = true}, SHIFT(1274), + [2798] = {.count = 1, .reusable = false}, SHIFT(1275), + [2800] = {.count = 1, .reusable = false}, SHIFT(1273), + [2802] = {.count = 1, .reusable = true}, SHIFT(1283), + [2804] = {.count = 1, .reusable = false}, SHIFT(1285), + [2806] = {.count = 1, .reusable = false}, SHIFT(1286), + [2808] = {.count = 1, .reusable = true}, SHIFT(1287), + [2810] = {.count = 1, .reusable = true}, SHIFT(1288), + [2812] = {.count = 1, .reusable = false}, SHIFT(1290), + [2814] = {.count = 1, .reusable = true}, SHIFT(1290), + [2816] = {.count = 1, .reusable = true}, SHIFT(1289), + [2818] = {.count = 1, .reusable = true}, SHIFT(1291), + [2820] = {.count = 1, .reusable = true}, SHIFT(1292), + [2822] = {.count = 1, .reusable = false}, SHIFT(1293), + [2824] = {.count = 1, .reusable = false}, SHIFT(1292), + [2826] = {.count = 1, .reusable = true}, SHIFT(1295), + [2828] = {.count = 1, .reusable = false}, SHIFT(1297), + [2830] = {.count = 1, .reusable = true}, SHIFT(1297), + [2832] = {.count = 1, .reusable = true}, SHIFT(1296), + [2834] = {.count = 1, .reusable = true}, SHIFT(1298), + [2836] = {.count = 1, .reusable = false}, SHIFT(1300), + [2838] = {.count = 1, .reusable = true}, SHIFT(1300), + [2840] = {.count = 1, .reusable = true}, SHIFT(1299), + [2842] = {.count = 1, .reusable = true}, SHIFT(1301), + [2844] = {.count = 1, .reusable = false}, SHIFT(1302), + [2846] = {.count = 1, .reusable = true}, SHIFT(1302), + [2848] = {.count = 1, .reusable = true}, SHIFT(1303), + [2850] = {.count = 1, .reusable = true}, SHIFT(1304), + [2852] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2854] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2856] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [2858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(847), + [2861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(417), + [2864] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(418), + [2867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(419), + [2870] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(420), + [2873] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(847), + [2876] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(421), + [2879] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(423), + [2882] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(424), + [2885] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(425), + [2888] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(420), + [2891] = {.count = 1, .reusable = false}, SHIFT(1305), + [2893] = {.count = 1, .reusable = true}, SHIFT(1306), + [2895] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2897] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2899] = {.count = 1, .reusable = true}, SHIFT(1308), + [2901] = {.count = 1, .reusable = true}, SHIFT(1309), + [2903] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2905] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2907] = {.count = 1, .reusable = true}, SHIFT(1310), + [2909] = {.count = 1, .reusable = true}, SHIFT(1311), + [2911] = {.count = 1, .reusable = true}, SHIFT(1312), + [2913] = {.count = 1, .reusable = true}, SHIFT(1313), + [2915] = {.count = 1, .reusable = false}, SHIFT(1314), + [2917] = {.count = 1, .reusable = true}, SHIFT(1314), + [2919] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2921] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2923] = {.count = 1, .reusable = true}, SHIFT(1315), + [2925] = {.count = 1, .reusable = false}, SHIFT(1316), + [2927] = {.count = 1, .reusable = true}, SHIFT(1316), + [2929] = {.count = 1, .reusable = true}, SHIFT(1319), + [2931] = {.count = 1, .reusable = false}, SHIFT(1321), + [2933] = {.count = 1, .reusable = false}, SHIFT(1325), + [2935] = {.count = 1, .reusable = false}, SHIFT(1329), + [2937] = {.count = 1, .reusable = true}, SHIFT(1329), + [2939] = {.count = 1, .reusable = true}, SHIFT(1330), + [2941] = {.count = 1, .reusable = false}, SHIFT(1331), + [2943] = {.count = 1, .reusable = true}, SHIFT(1331), + [2945] = {.count = 1, .reusable = true}, SHIFT(1332), + [2947] = {.count = 1, .reusable = true}, SHIFT(1333), + [2949] = {.count = 1, .reusable = true}, SHIFT(1334), + [2951] = {.count = 1, .reusable = true}, SHIFT(1336), + [2953] = {.count = 1, .reusable = false}, SHIFT(1337), + [2955] = {.count = 1, .reusable = true}, SHIFT(1337), + [2957] = {.count = 1, .reusable = true}, SHIFT(1339), + [2959] = {.count = 1, .reusable = false}, SHIFT(1339), + [2961] = {.count = 1, .reusable = false}, SHIFT(1340), + [2963] = {.count = 1, .reusable = true}, SHIFT(1340), + [2965] = {.count = 1, .reusable = true}, SHIFT(1341), + [2967] = {.count = 1, .reusable = false}, SHIFT(1342), + [2969] = {.count = 1, .reusable = true}, SHIFT(1342), + [2971] = {.count = 1, .reusable = false}, SHIFT(1343), + [2973] = {.count = 1, .reusable = true}, SHIFT(1343), + [2975] = {.count = 1, .reusable = true}, SHIFT(1344), + [2977] = {.count = 1, .reusable = true}, SHIFT(1346), + [2979] = {.count = 1, .reusable = true}, SHIFT(1347), + [2981] = {.count = 1, .reusable = true}, SHIFT(1348), + [2983] = {.count = 1, .reusable = true}, SHIFT(1349), + [2985] = {.count = 1, .reusable = true}, SHIFT(1350), + [2987] = {.count = 1, .reusable = false}, SHIFT(1352), + [2989] = {.count = 1, .reusable = false}, SHIFT(1353), + [2991] = {.count = 1, .reusable = true}, SHIFT(1354), + [2993] = {.count = 1, .reusable = true}, SHIFT(1355), + [2995] = {.count = 1, .reusable = false}, SHIFT(1357), + [2997] = {.count = 1, .reusable = true}, SHIFT(1357), + [2999] = {.count = 1, .reusable = true}, SHIFT(1356), + [3001] = {.count = 1, .reusable = true}, SHIFT(1358), + [3003] = {.count = 1, .reusable = true}, SHIFT(1359), + [3005] = {.count = 1, .reusable = false}, SHIFT(1360), + [3007] = {.count = 1, .reusable = false}, SHIFT(1359), + [3009] = {.count = 1, .reusable = true}, SHIFT(1362), + [3011] = {.count = 1, .reusable = false}, SHIFT(1364), + [3013] = {.count = 1, .reusable = true}, SHIFT(1364), + [3015] = {.count = 1, .reusable = true}, SHIFT(1363), + [3017] = {.count = 1, .reusable = true}, SHIFT(1365), + [3019] = {.count = 1, .reusable = false}, SHIFT(1367), + [3021] = {.count = 1, .reusable = true}, SHIFT(1367), + [3023] = {.count = 1, .reusable = true}, SHIFT(1366), + [3025] = {.count = 1, .reusable = true}, SHIFT(1368), + [3027] = {.count = 1, .reusable = true}, SHIFT(1369), + [3029] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(451), + [3032] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(452), + [3035] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(453), + [3038] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(454), + [3041] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(455), + [3044] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(456), + [3047] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(457), + [3050] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(458), + [3053] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(459), + [3056] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(460), + [3059] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(455), + [3062] = {.count = 1, .reusable = true}, SHIFT(1370), + [3064] = {.count = 1, .reusable = false}, SHIFT(1372), + [3066] = {.count = 1, .reusable = false}, SHIFT(1373), + [3068] = {.count = 1, .reusable = true}, SHIFT(1374), + [3070] = {.count = 1, .reusable = true}, SHIFT(1375), + [3072] = {.count = 1, .reusable = false}, SHIFT(1377), + [3074] = {.count = 1, .reusable = true}, SHIFT(1377), + [3076] = {.count = 1, .reusable = true}, SHIFT(1376), + [3078] = {.count = 1, .reusable = true}, SHIFT(1378), + [3080] = {.count = 1, .reusable = true}, SHIFT(1379), + [3082] = {.count = 1, .reusable = false}, SHIFT(1380), + [3084] = {.count = 1, .reusable = false}, SHIFT(1379), + [3086] = {.count = 1, .reusable = true}, SHIFT(1382), + [3088] = {.count = 1, .reusable = false}, SHIFT(1384), + [3090] = {.count = 1, .reusable = true}, SHIFT(1384), + [3092] = {.count = 1, .reusable = true}, SHIFT(1383), + [3094] = {.count = 1, .reusable = true}, SHIFT(1385), + [3096] = {.count = 1, .reusable = false}, SHIFT(1387), + [3098] = {.count = 1, .reusable = true}, SHIFT(1387), + [3100] = {.count = 1, .reusable = true}, SHIFT(1386), + [3102] = {.count = 1, .reusable = true}, SHIFT(1388), + [3104] = {.count = 1, .reusable = true}, SHIFT(1389), + [3106] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(463), + [3109] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(464), + [3112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(465), + [3115] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(466), + [3118] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(467), + [3121] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(468), + [3124] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(469), + [3127] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(470), + [3130] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(471), + [3133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(466), + [3136] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(473), + [3139] = {.count = 1, .reusable = false}, SHIFT(1390), + [3141] = {.count = 1, .reusable = true}, SHIFT(1391), + [3143] = {.count = 1, .reusable = false}, SHIFT(1392), + [3145] = {.count = 1, .reusable = true}, SHIFT(1393), + [3147] = {.count = 1, .reusable = true}, SHIFT(1395), + [3149] = {.count = 1, .reusable = true}, SHIFT(1396), + [3151] = {.count = 1, .reusable = true}, SHIFT(1397), + [3153] = {.count = 1, .reusable = true}, SHIFT(1398), + [3155] = {.count = 1, .reusable = false}, SHIFT(1400), + [3157] = {.count = 1, .reusable = true}, SHIFT(1400), + [3159] = {.count = 1, .reusable = true}, SHIFT(1399), + [3161] = {.count = 1, .reusable = true}, SHIFT(1401), + [3163] = {.count = 1, .reusable = false}, SHIFT(1403), + [3165] = {.count = 1, .reusable = true}, SHIFT(1403), + [3167] = {.count = 1, .reusable = true}, SHIFT(1402), + [3169] = {.count = 1, .reusable = false}, SHIFT(1405), + [3171] = {.count = 1, .reusable = true}, SHIFT(1405), + [3173] = {.count = 1, .reusable = true}, SHIFT(1404), + [3175] = {.count = 1, .reusable = true}, SHIFT(1406), + [3177] = {.count = 1, .reusable = true}, SHIFT(1407), + [3179] = {.count = 1, .reusable = true}, SHIFT(1408), + [3181] = {.count = 1, .reusable = true}, SHIFT(1410), + [3183] = {.count = 1, .reusable = true}, SHIFT(1411), + [3185] = {.count = 1, .reusable = true}, SHIFT(1412), + [3187] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(498), + [3190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(500), + [3193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(500), + [3196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(501), + [3199] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(501), + [3202] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(502), + [3205] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(499), + [3208] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(503), + [3211] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(155), + [3214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(156), + [3217] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(504), + [3220] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(158), + [3223] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), + [3226] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), + [3229] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(161), + [3232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(504), + [3235] = {.count = 1, .reusable = true}, SHIFT(1419), + [3237] = {.count = 1, .reusable = true}, SHIFT(1420), + [3239] = {.count = 1, .reusable = false}, SHIFT(1421), + [3241] = {.count = 1, .reusable = true}, SHIFT(1421), + [3243] = {.count = 1, .reusable = true}, SHIFT(1422), + [3245] = {.count = 1, .reusable = false}, SHIFT(1423), + [3247] = {.count = 1, .reusable = true}, SHIFT(1423), + [3249] = {.count = 1, .reusable = true}, SHIFT(1424), + [3251] = {.count = 1, .reusable = true}, SHIFT(1426), + [3253] = {.count = 1, .reusable = true}, SHIFT(1427), + [3255] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(514), + [3258] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(515), + [3261] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(516), + [3264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(516), + [3267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(519), + [3270] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(520), + [3273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(520), + [3276] = {.count = 1, .reusable = true}, SHIFT(1431), + [3278] = {.count = 1, .reusable = true}, SHIFT(1432), + [3280] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(526), + [3283] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(528), + [3286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(528), + [3289] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(529), + [3292] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(527), + [3295] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(530), + [3298] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(531), + [3301] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(531), + [3304] = {.count = 1, .reusable = true}, SHIFT(1436), + [3306] = {.count = 1, .reusable = true}, SHIFT(1437), + [3308] = {.count = 1, .reusable = false}, SHIFT(1439), + [3310] = {.count = 1, .reusable = true}, SHIFT(1439), + [3312] = {.count = 1, .reusable = true}, SHIFT(1438), + [3314] = {.count = 1, .reusable = true}, SHIFT(1440), + [3316] = {.count = 1, .reusable = true}, SHIFT(1441), + [3318] = {.count = 1, .reusable = false}, SHIFT(1442), + [3320] = {.count = 1, .reusable = false}, SHIFT(1441), + [3322] = {.count = 1, .reusable = true}, SHIFT(1444), + [3324] = {.count = 1, .reusable = false}, SHIFT(1446), + [3326] = {.count = 1, .reusable = true}, SHIFT(1446), + [3328] = {.count = 1, .reusable = true}, SHIFT(1445), + [3330] = {.count = 1, .reusable = true}, SHIFT(1447), + [3332] = {.count = 1, .reusable = false}, SHIFT(1449), + [3334] = {.count = 1, .reusable = true}, SHIFT(1449), + [3336] = {.count = 1, .reusable = true}, SHIFT(1448), + [3338] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [3340] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [3342] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(999), + [3345] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [3347] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(542), + [3350] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(543), + [3353] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), + [3355] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), + [3357] = {.count = 1, .reusable = true}, SHIFT(1452), + [3359] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [3361] = {.count = 1, .reusable = true}, SHIFT(1453), + [3363] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [3365] = {.count = 1, .reusable = true}, SHIFT(1454), + [3367] = {.count = 1, .reusable = false}, SHIFT(1456), + [3369] = {.count = 1, .reusable = false}, SHIFT(1457), + [3371] = {.count = 1, .reusable = true}, SHIFT(1458), + [3373] = {.count = 1, .reusable = true}, SHIFT(1459), + [3375] = {.count = 1, .reusable = false}, SHIFT(1461), + [3377] = {.count = 1, .reusable = true}, SHIFT(1461), + [3379] = {.count = 1, .reusable = true}, SHIFT(1460), + [3381] = {.count = 1, .reusable = true}, SHIFT(1462), + [3383] = {.count = 1, .reusable = true}, SHIFT(1463), + [3385] = {.count = 1, .reusable = false}, SHIFT(1464), + [3387] = {.count = 1, .reusable = false}, SHIFT(1463), + [3389] = {.count = 1, .reusable = true}, SHIFT(1466), + [3391] = {.count = 1, .reusable = false}, SHIFT(1468), + [3393] = {.count = 1, .reusable = true}, SHIFT(1468), + [3395] = {.count = 1, .reusable = true}, SHIFT(1467), + [3397] = {.count = 1, .reusable = true}, SHIFT(1469), + [3399] = {.count = 1, .reusable = false}, SHIFT(1471), + [3401] = {.count = 1, .reusable = true}, SHIFT(1471), + [3403] = {.count = 1, .reusable = true}, SHIFT(1470), + [3405] = {.count = 1, .reusable = true}, SHIFT(1472), + [3407] = {.count = 1, .reusable = true}, SHIFT(1473), + [3409] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [3411] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [3413] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3415] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(568), + [3418] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(569), + [3421] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(570), + [3424] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(571), + [3427] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(572), + [3430] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(573), + [3433] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(574), + [3436] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(575), + [3439] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(577), + [3442] = {.count = 1, .reusable = false}, SHIFT(1474), + [3444] = {.count = 1, .reusable = true}, SHIFT(1475), + [3446] = {.count = 1, .reusable = false}, SHIFT(1476), + [3448] = {.count = 1, .reusable = true}, SHIFT(1477), + [3450] = {.count = 1, .reusable = true}, SHIFT(1479), + [3452] = {.count = 1, .reusable = true}, SHIFT(1480), + [3454] = {.count = 1, .reusable = true}, SHIFT(1481), + [3456] = {.count = 1, .reusable = true}, SHIFT(1482), + [3458] = {.count = 1, .reusable = false}, SHIFT(1484), + [3460] = {.count = 1, .reusable = true}, SHIFT(1484), + [3462] = {.count = 1, .reusable = true}, SHIFT(1483), + [3464] = {.count = 1, .reusable = true}, SHIFT(1485), + [3466] = {.count = 1, .reusable = false}, SHIFT(1487), + [3468] = {.count = 1, .reusable = true}, SHIFT(1487), + [3470] = {.count = 1, .reusable = true}, SHIFT(1486), + [3472] = {.count = 1, .reusable = false}, SHIFT(1489), + [3474] = {.count = 1, .reusable = true}, SHIFT(1489), + [3476] = {.count = 1, .reusable = true}, SHIFT(1488), + [3478] = {.count = 1, .reusable = true}, SHIFT(1490), + [3480] = {.count = 1, .reusable = true}, SHIFT(1491), + [3482] = {.count = 1, .reusable = true}, SHIFT(1492), + [3484] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3486] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(596), + [3489] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(43), + [3492] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(44), + [3495] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(597), + [3498] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(46), + [3501] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(47), + [3504] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(48), + [3507] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(49), + [3510] = {.count = 1, .reusable = false}, SHIFT(1495), + [3512] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [3514] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [3516] = {.count = 1, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), + [3518] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), + [3520] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), + [3522] = {.count = 1, .reusable = true}, SHIFT(1496), + [3524] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [3526] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3528] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3530] = {.count = 1, .reusable = true}, SHIFT(1498), + [3532] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3534] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(606), + [3537] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3539] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3541] = {.count = 1, .reusable = true}, SHIFT(1500), + [3543] = {.count = 1, .reusable = true}, SHIFT(1501), + [3545] = {.count = 1, .reusable = true}, SHIFT(1504), + [3547] = {.count = 1, .reusable = true}, SHIFT(1506), + [3549] = {.count = 1, .reusable = false}, SHIFT(1509), + [3551] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [3553] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [3555] = {.count = 1, .reusable = true}, SHIFT(1511), + [3557] = {.count = 1, .reusable = false}, SHIFT(1513), + [3559] = {.count = 1, .reusable = true}, SHIFT(1515), + [3561] = {.count = 1, .reusable = true}, SHIFT(1516), + [3563] = {.count = 1, .reusable = true}, SHIFT(1517), + [3565] = {.count = 1, .reusable = false}, SHIFT(1518), + [3567] = {.count = 1, .reusable = true}, SHIFT(1518), + [3569] = {.count = 1, .reusable = false}, SHIFT(1519), + [3571] = {.count = 1, .reusable = true}, SHIFT(1520), + [3573] = {.count = 1, .reusable = true}, SHIFT(1522), + [3575] = {.count = 1, .reusable = true}, SHIFT(1523), + [3577] = {.count = 1, .reusable = true}, SHIFT(1524), + [3579] = {.count = 1, .reusable = true}, SHIFT(1525), + [3581] = {.count = 1, .reusable = true}, SHIFT(1526), + [3583] = {.count = 1, .reusable = true}, SHIFT(1527), + [3585] = {.count = 1, .reusable = false}, SHIFT(1528), + [3587] = {.count = 1, .reusable = true}, SHIFT(1528), + [3589] = {.count = 1, .reusable = true}, SHIFT(1529), + [3591] = {.count = 1, .reusable = false}, SHIFT(1530), + [3593] = {.count = 1, .reusable = true}, SHIFT(1530), + [3595] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [3597] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [3599] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [3601] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [3603] = {.count = 1, .reusable = true}, SHIFT(1532), + [3605] = {.count = 1, .reusable = true}, SHIFT(1533), [3607] = {.count = 1, .reusable = false}, SHIFT(1538), - [3609] = {.count = 1, .reusable = false}, SHIFT(1536), + [3609] = {.count = 1, .reusable = true}, SHIFT(1538), [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), + [3615] = {.count = 1, .reusable = false}, SHIFT(1541), + [3617] = {.count = 1, .reusable = true}, SHIFT(1541), + [3619] = {.count = 1, .reusable = true}, SHIFT(1542), + [3621] = {.count = 1, .reusable = true}, SHIFT(1543), + [3623] = {.count = 1, .reusable = true}, SHIFT(1544), + [3625] = {.count = 1, .reusable = true}, SHIFT(1545), + [3627] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), + [3629] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), + [3631] = {.count = 1, .reusable = true}, SHIFT(1548), + [3633] = {.count = 1, .reusable = true}, SHIFT(1549), + [3635] = {.count = 1, .reusable = true}, SHIFT(1550), + [3637] = {.count = 1, .reusable = true}, SHIFT(1551), + [3639] = {.count = 1, .reusable = false}, SHIFT(1552), + [3641] = {.count = 1, .reusable = true}, SHIFT(1552), + [3643] = {.count = 1, .reusable = false}, SHIFT(1553), + [3645] = {.count = 1, .reusable = true}, SHIFT(1554), + [3647] = {.count = 1, .reusable = true}, SHIFT(1556), + [3649] = {.count = 1, .reusable = true}, SHIFT(1557), + [3651] = {.count = 1, .reusable = true}, SHIFT(1558), + [3653] = {.count = 1, .reusable = true}, SHIFT(1559), + [3655] = {.count = 1, .reusable = true}, SHIFT(1560), + [3657] = {.count = 1, .reusable = true}, SHIFT(1561), + [3659] = {.count = 1, .reusable = false}, SHIFT(1562), + [3661] = {.count = 1, .reusable = true}, SHIFT(1562), + [3663] = {.count = 1, .reusable = true}, SHIFT(1563), + [3665] = {.count = 1, .reusable = false}, SHIFT(1564), + [3667] = {.count = 1, .reusable = true}, SHIFT(1564), + [3669] = {.count = 1, .reusable = true}, SHIFT(1565), + [3671] = {.count = 1, .reusable = true}, SHIFT(1566), [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), + [3675] = {.count = 1, .reusable = false}, SHIFT(1570), + [3677] = {.count = 1, .reusable = false}, SHIFT(1571), + [3679] = {.count = 1, .reusable = true}, SHIFT(1573), + [3681] = {.count = 1, .reusable = true}, SHIFT(1574), + [3683] = {.count = 1, .reusable = false}, SHIFT(1575), + [3685] = {.count = 1, .reusable = false}, SHIFT(1573), + [3687] = {.count = 1, .reusable = true}, SHIFT(1576), + [3689] = {.count = 1, .reusable = true}, SHIFT(1577), + [3691] = {.count = 1, .reusable = true}, SHIFT(1578), + [3693] = {.count = 1, .reusable = false}, SHIFT(1579), + [3695] = {.count = 1, .reusable = false}, SHIFT(1577), + [3697] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(702), + [3700] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(703), + [3703] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(704), + [3706] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(705), + [3709] = {.count = 1, .reusable = true}, SHIFT(1587), + [3711] = {.count = 1, .reusable = true}, SHIFT(1588), + [3713] = {.count = 1, .reusable = true}, SHIFT(1589), + [3715] = {.count = 1, .reusable = false}, SHIFT(1590), + [3717] = {.count = 1, .reusable = true}, SHIFT(1590), + [3719] = {.count = 1, .reusable = false}, SHIFT(1591), + [3721] = {.count = 1, .reusable = true}, SHIFT(1592), + [3723] = {.count = 1, .reusable = true}, SHIFT(1594), + [3725] = {.count = 1, .reusable = true}, SHIFT(1595), + [3727] = {.count = 1, .reusable = true}, SHIFT(1596), + [3729] = {.count = 1, .reusable = true}, SHIFT(1597), + [3731] = {.count = 1, .reusable = true}, SHIFT(1598), + [3733] = {.count = 1, .reusable = true}, SHIFT(1599), + [3735] = {.count = 1, .reusable = false}, SHIFT(1600), + [3737] = {.count = 1, .reusable = true}, SHIFT(1600), + [3739] = {.count = 1, .reusable = true}, SHIFT(1601), + [3741] = {.count = 1, .reusable = false}, SHIFT(1602), + [3743] = {.count = 1, .reusable = true}, SHIFT(1602), + [3745] = {.count = 1, .reusable = true}, SHIFT(1603), + [3747] = {.count = 1, .reusable = true}, SHIFT(1604), + [3749] = {.count = 1, .reusable = true}, SHIFT(1605), + [3751] = {.count = 1, .reusable = true}, SHIFT(1606), + [3753] = {.count = 1, .reusable = false}, SHIFT(1607), + [3755] = {.count = 1, .reusable = true}, SHIFT(1607), + [3757] = {.count = 1, .reusable = false}, SHIFT(1608), + [3759] = {.count = 1, .reusable = true}, SHIFT(1609), + [3761] = {.count = 1, .reusable = true}, SHIFT(1611), + [3763] = {.count = 1, .reusable = true}, SHIFT(1612), + [3765] = {.count = 1, .reusable = true}, SHIFT(1613), + [3767] = {.count = 1, .reusable = true}, SHIFT(1614), + [3769] = {.count = 1, .reusable = true}, SHIFT(1615), + [3771] = {.count = 1, .reusable = true}, SHIFT(1616), + [3773] = {.count = 1, .reusable = false}, SHIFT(1617), + [3775] = {.count = 1, .reusable = true}, SHIFT(1617), + [3777] = {.count = 1, .reusable = true}, SHIFT(1618), + [3779] = {.count = 1, .reusable = false}, SHIFT(1619), + [3781] = {.count = 1, .reusable = true}, SHIFT(1619), + [3783] = {.count = 1, .reusable = true}, SHIFT(1620), + [3785] = {.count = 1, .reusable = true}, SHIFT(1621), + [3787] = {.count = 1, .reusable = true}, SHIFT(1622), + [3789] = {.count = 1, .reusable = false}, SHIFT(1623), + [3791] = {.count = 1, .reusable = true}, SHIFT(1623), + [3793] = {.count = 1, .reusable = false}, SHIFT(1624), + [3795] = {.count = 1, .reusable = true}, SHIFT(1625), + [3797] = {.count = 1, .reusable = true}, SHIFT(1627), + [3799] = {.count = 1, .reusable = true}, SHIFT(1628), + [3801] = {.count = 1, .reusable = true}, SHIFT(1629), + [3803] = {.count = 1, .reusable = true}, SHIFT(1630), + [3805] = {.count = 1, .reusable = true}, SHIFT(1631), + [3807] = {.count = 1, .reusable = true}, SHIFT(1632), + [3809] = {.count = 1, .reusable = false}, SHIFT(1633), + [3811] = {.count = 1, .reusable = true}, SHIFT(1633), + [3813] = {.count = 1, .reusable = true}, SHIFT(1634), + [3815] = {.count = 1, .reusable = false}, SHIFT(1635), + [3817] = {.count = 1, .reusable = true}, SHIFT(1635), + [3819] = {.count = 1, .reusable = true}, SHIFT(1636), + [3821] = {.count = 1, .reusable = true}, SHIFT(1637), + [3823] = {.count = 1, .reusable = true}, SHIFT(1638), + [3825] = {.count = 1, .reusable = false}, SHIFT(1639), + [3827] = {.count = 1, .reusable = true}, SHIFT(1639), + [3829] = {.count = 1, .reusable = false}, SHIFT(1640), + [3831] = {.count = 1, .reusable = true}, SHIFT(1641), + [3833] = {.count = 1, .reusable = true}, SHIFT(1643), + [3835] = {.count = 1, .reusable = true}, SHIFT(1644), + [3837] = {.count = 1, .reusable = true}, SHIFT(1645), + [3839] = {.count = 1, .reusable = true}, SHIFT(1646), + [3841] = {.count = 1, .reusable = true}, SHIFT(1647), + [3843] = {.count = 1, .reusable = true}, SHIFT(1648), + [3845] = {.count = 1, .reusable = false}, SHIFT(1649), + [3847] = {.count = 1, .reusable = true}, SHIFT(1649), + [3849] = {.count = 1, .reusable = true}, SHIFT(1650), + [3851] = {.count = 1, .reusable = false}, SHIFT(1651), + [3853] = {.count = 1, .reusable = true}, SHIFT(1651), + [3855] = {.count = 1, .reusable = true}, SHIFT(1652), + [3857] = {.count = 1, .reusable = true}, SHIFT(1653), + [3859] = {.count = 1, .reusable = true}, SHIFT(1654), + [3861] = {.count = 1, .reusable = false}, SHIFT(1655), + [3863] = {.count = 1, .reusable = true}, SHIFT(1655), + [3865] = {.count = 1, .reusable = false}, SHIFT(1656), + [3867] = {.count = 1, .reusable = true}, SHIFT(1657), + [3869] = {.count = 1, .reusable = true}, SHIFT(1659), + [3871] = {.count = 1, .reusable = true}, SHIFT(1660), + [3873] = {.count = 1, .reusable = true}, SHIFT(1661), + [3875] = {.count = 1, .reusable = true}, SHIFT(1662), + [3877] = {.count = 1, .reusable = true}, SHIFT(1663), + [3879] = {.count = 1, .reusable = true}, SHIFT(1664), + [3881] = {.count = 1, .reusable = false}, SHIFT(1665), + [3883] = {.count = 1, .reusable = true}, SHIFT(1665), + [3885] = {.count = 1, .reusable = true}, SHIFT(1666), + [3887] = {.count = 1, .reusable = false}, SHIFT(1667), + [3889] = {.count = 1, .reusable = true}, SHIFT(1667), + [3891] = {.count = 1, .reusable = true}, SHIFT(1668), + [3893] = {.count = 1, .reusable = true}, SHIFT(1669), + [3895] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [3897] = {.count = 1, .reusable = true}, SHIFT(1670), + [3899] = {.count = 1, .reusable = true}, SHIFT(1671), + [3901] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [3903] = {.count = 1, .reusable = true}, SHIFT(1672), + [3905] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3907] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3909] = {.count = 1, .reusable = false}, SHIFT(1674), + [3911] = {.count = 1, .reusable = false}, SHIFT(1675), + [3913] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [3915] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [3917] = {.count = 1, .reusable = true}, SHIFT(1676), + [3919] = {.count = 1, .reusable = true}, SHIFT(1677), + [3921] = {.count = 1, .reusable = false}, SHIFT(1679), + [3923] = {.count = 1, .reusable = true}, SHIFT(1679), + [3925] = {.count = 1, .reusable = true}, SHIFT(1678), + [3927] = {.count = 1, .reusable = true}, SHIFT(1680), + [3929] = {.count = 1, .reusable = true}, SHIFT(1681), + [3931] = {.count = 1, .reusable = false}, SHIFT(1682), + [3933] = {.count = 1, .reusable = false}, SHIFT(1681), + [3935] = {.count = 1, .reusable = true}, SHIFT(1684), + [3937] = {.count = 1, .reusable = false}, SHIFT(1686), + [3939] = {.count = 1, .reusable = true}, SHIFT(1686), + [3941] = {.count = 1, .reusable = true}, SHIFT(1685), + [3943] = {.count = 1, .reusable = true}, SHIFT(1687), + [3945] = {.count = 1, .reusable = false}, SHIFT(1689), + [3947] = {.count = 1, .reusable = true}, SHIFT(1689), + [3949] = {.count = 1, .reusable = true}, SHIFT(1688), + [3951] = {.count = 1, .reusable = true}, SHIFT(1690), + [3953] = {.count = 1, .reusable = true}, SHIFT(1691), + [3955] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(826), + [3958] = {.count = 1, .reusable = false}, SHIFT(1692), + [3960] = {.count = 1, .reusable = true}, SHIFT(1693), + [3962] = {.count = 1, .reusable = false}, SHIFT(1694), + [3964] = {.count = 1, .reusable = true}, SHIFT(1695), + [3966] = {.count = 1, .reusable = true}, SHIFT(1697), + [3968] = {.count = 1, .reusable = true}, SHIFT(1698), + [3970] = {.count = 1, .reusable = true}, SHIFT(1699), + [3972] = {.count = 1, .reusable = true}, SHIFT(1700), + [3974] = {.count = 1, .reusable = false}, SHIFT(1702), + [3976] = {.count = 1, .reusable = true}, SHIFT(1702), + [3978] = {.count = 1, .reusable = true}, SHIFT(1701), + [3980] = {.count = 1, .reusable = true}, SHIFT(1703), + [3982] = {.count = 1, .reusable = false}, SHIFT(1705), + [3984] = {.count = 1, .reusable = true}, SHIFT(1705), + [3986] = {.count = 1, .reusable = true}, SHIFT(1704), + [3988] = {.count = 1, .reusable = false}, SHIFT(1707), + [3990] = {.count = 1, .reusable = true}, SHIFT(1707), + [3992] = {.count = 1, .reusable = true}, SHIFT(1706), + [3994] = {.count = 1, .reusable = true}, SHIFT(1708), + [3996] = {.count = 1, .reusable = true}, SHIFT(1709), + [3998] = {.count = 1, .reusable = true}, SHIFT(1710), + [4000] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4002] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4004] = {.count = 1, .reusable = true}, SHIFT(1711), + [4006] = {.count = 1, .reusable = true}, SHIFT(1712), + [4008] = {.count = 1, .reusable = true}, SHIFT(1713), + [4010] = {.count = 1, .reusable = true}, SHIFT(1714), + [4012] = {.count = 1, .reusable = false}, SHIFT(1715), + [4014] = {.count = 1, .reusable = true}, SHIFT(1715), + [4016] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4018] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4020] = {.count = 1, .reusable = true}, SHIFT(1716), + [4022] = {.count = 1, .reusable = false}, SHIFT(1717), [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), + [4026] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4028] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4030] = {.count = 1, .reusable = true}, SHIFT(1718), + [4032] = {.count = 1, .reusable = false}, SHIFT(1719), + [4034] = {.count = 1, .reusable = true}, SHIFT(1719), + [4036] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4038] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4040] = {.count = 1, .reusable = true}, SHIFT(1720), + [4042] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4044] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4046] = {.count = 1, .reusable = true}, SHIFT(1721), + [4048] = {.count = 1, .reusable = false}, SHIFT(1723), + [4050] = {.count = 1, .reusable = true}, SHIFT(1723), + [4052] = {.count = 1, .reusable = false}, SHIFT(1724), + [4054] = {.count = 1, .reusable = false}, SHIFT(1726), + [4056] = {.count = 1, .reusable = true}, SHIFT(1728), + [4058] = {.count = 1, .reusable = false}, SHIFT(1728), + [4060] = {.count = 1, .reusable = false}, SHIFT(1731), + [4062] = {.count = 1, .reusable = false}, SHIFT(1734), + [4064] = {.count = 1, .reusable = true}, SHIFT(1734), + [4066] = {.count = 1, .reusable = false}, SHIFT(1735), + [4068] = {.count = 1, .reusable = false}, SHIFT(1738), + [4070] = {.count = 1, .reusable = true}, SHIFT(1738), + [4072] = {.count = 1, .reusable = true}, SHIFT(1740), + [4074] = {.count = 1, .reusable = false}, SHIFT(1741), + [4076] = {.count = 1, .reusable = true}, SHIFT(1741), [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), + [4080] = {.count = 1, .reusable = true}, SHIFT(1743), + [4082] = {.count = 1, .reusable = true}, SHIFT(1745), + [4084] = {.count = 1, .reusable = false}, SHIFT(1746), + [4086] = {.count = 1, .reusable = true}, SHIFT(1746), + [4088] = {.count = 1, .reusable = true}, SHIFT(1747), + [4090] = {.count = 1, .reusable = true}, SHIFT(1748), + [4092] = {.count = 1, .reusable = false}, SHIFT(1749), + [4094] = {.count = 1, .reusable = true}, SHIFT(1750), + [4096] = {.count = 1, .reusable = true}, SHIFT(1751), [4098] = {.count = 1, .reusable = true}, SHIFT(1752), - [4100] = {.count = 1, .reusable = false}, SHIFT(1754), + [4100] = {.count = 1, .reusable = true}, SHIFT(1753), [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), + [4104] = {.count = 1, .reusable = true}, SHIFT(1756), + [4106] = {.count = 1, .reusable = true}, SHIFT(1757), + [4108] = {.count = 1, .reusable = true}, SHIFT(1758), + [4110] = {.count = 1, .reusable = true}, SHIFT(1761), + [4112] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(880), + [4115] = {.count = 1, .reusable = false}, SHIFT(1763), + [4117] = {.count = 1, .reusable = true}, SHIFT(1764), + [4119] = {.count = 1, .reusable = false}, SHIFT(1765), + [4121] = {.count = 1, .reusable = true}, SHIFT(1766), + [4123] = {.count = 1, .reusable = true}, SHIFT(1768), + [4125] = {.count = 1, .reusable = true}, SHIFT(1769), + [4127] = {.count = 1, .reusable = true}, SHIFT(1770), + [4129] = {.count = 1, .reusable = true}, SHIFT(1771), + [4131] = {.count = 1, .reusable = false}, SHIFT(1773), + [4133] = {.count = 1, .reusable = true}, SHIFT(1773), + [4135] = {.count = 1, .reusable = true}, SHIFT(1772), + [4137] = {.count = 1, .reusable = true}, SHIFT(1774), + [4139] = {.count = 1, .reusable = false}, SHIFT(1776), + [4141] = {.count = 1, .reusable = true}, SHIFT(1776), + [4143] = {.count = 1, .reusable = true}, SHIFT(1775), + [4145] = {.count = 1, .reusable = false}, SHIFT(1778), + [4147] = {.count = 1, .reusable = true}, SHIFT(1778), + [4149] = {.count = 1, .reusable = true}, SHIFT(1777), + [4151] = {.count = 1, .reusable = true}, SHIFT(1779), + [4153] = {.count = 1, .reusable = true}, SHIFT(1780), + [4155] = {.count = 1, .reusable = true}, SHIFT(1781), + [4157] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(900), + [4160] = {.count = 1, .reusable = false}, SHIFT(1782), + [4162] = {.count = 1, .reusable = true}, SHIFT(1783), + [4164] = {.count = 1, .reusable = false}, 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), + [4168] = {.count = 1, .reusable = true}, SHIFT(1787), + [4170] = {.count = 1, .reusable = true}, SHIFT(1788), + [4172] = {.count = 1, .reusable = true}, SHIFT(1789), + [4174] = {.count = 1, .reusable = true}, SHIFT(1790), [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), + [4178] = {.count = 1, .reusable = true}, SHIFT(1792), + [4180] = {.count = 1, .reusable = true}, SHIFT(1791), + [4182] = {.count = 1, .reusable = true}, SHIFT(1793), + [4184] = {.count = 1, .reusable = false}, SHIFT(1795), + [4186] = {.count = 1, .reusable = true}, SHIFT(1795), + [4188] = {.count = 1, .reusable = true}, SHIFT(1794), + [4190] = {.count = 1, .reusable = false}, SHIFT(1797), + [4192] = {.count = 1, .reusable = true}, SHIFT(1797), + [4194] = {.count = 1, .reusable = true}, SHIFT(1796), + [4196] = {.count = 1, .reusable = true}, SHIFT(1798), + [4198] = {.count = 1, .reusable = true}, SHIFT(1799), + [4200] = {.count = 1, .reusable = true}, SHIFT(1800), + [4202] = {.count = 1, .reusable = true}, SHIFT(1801), + [4204] = {.count = 1, .reusable = true}, SHIFT(1802), + [4206] = {.count = 1, .reusable = true}, SHIFT(1803), + [4208] = {.count = 1, .reusable = false}, SHIFT(1804), + [4210] = {.count = 1, .reusable = true}, SHIFT(1804), + [4212] = {.count = 1, .reusable = false}, SHIFT(1805), + [4214] = {.count = 1, .reusable = true}, SHIFT(1806), + [4216] = {.count = 1, .reusable = true}, SHIFT(1808), + [4218] = {.count = 1, .reusable = true}, SHIFT(1809), + [4220] = {.count = 1, .reusable = true}, SHIFT(1810), + [4222] = {.count = 1, .reusable = true}, SHIFT(1811), + [4224] = {.count = 1, .reusable = true}, SHIFT(1812), + [4226] = {.count = 1, .reusable = true}, SHIFT(1813), + [4228] = {.count = 1, .reusable = false}, SHIFT(1814), + [4230] = {.count = 1, .reusable = true}, SHIFT(1814), + [4232] = {.count = 1, .reusable = true}, SHIFT(1815), + [4234] = {.count = 1, .reusable = false}, SHIFT(1816), + [4236] = {.count = 1, .reusable = true}, SHIFT(1816), + [4238] = {.count = 1, .reusable = false}, SHIFT(1822), + [4240] = {.count = 1, .reusable = true}, SHIFT(1822), + [4242] = {.count = 1, .reusable = true}, SHIFT(1823), + [4244] = {.count = 1, .reusable = true}, SHIFT(1824), + [4246] = {.count = 1, .reusable = false}, SHIFT(1825), + [4248] = {.count = 1, .reusable = true}, SHIFT(1825), + [4250] = {.count = 1, .reusable = true}, SHIFT(1826), + [4252] = {.count = 1, .reusable = true}, SHIFT(1827), + [4254] = {.count = 1, .reusable = true}, SHIFT(1828), + [4256] = {.count = 1, .reusable = true}, SHIFT(1829), + [4258] = {.count = 1, .reusable = true}, SHIFT(1832), + [4260] = {.count = 1, .reusable = false}, SHIFT(1833), + [4262] = {.count = 1, .reusable = true}, SHIFT(1834), + [4264] = {.count = 1, .reusable = true}, SHIFT(1836), + [4266] = {.count = 1, .reusable = true}, SHIFT(1837), + [4268] = {.count = 1, .reusable = true}, SHIFT(1838), + [4270] = {.count = 1, .reusable = true}, SHIFT(1839), + [4272] = {.count = 1, .reusable = false}, SHIFT(1841), + [4274] = {.count = 1, .reusable = true}, SHIFT(1841), + [4276] = {.count = 1, .reusable = true}, SHIFT(1840), + [4278] = {.count = 1, .reusable = true}, SHIFT(1842), + [4280] = {.count = 1, .reusable = false}, SHIFT(1844), + [4282] = {.count = 1, .reusable = true}, SHIFT(1844), + [4284] = {.count = 1, .reusable = true}, SHIFT(1843), + [4286] = {.count = 1, .reusable = false}, SHIFT(1846), + [4288] = {.count = 1, .reusable = true}, SHIFT(1846), + [4290] = {.count = 1, .reusable = true}, SHIFT(1845), + [4292] = {.count = 1, .reusable = true}, SHIFT(1847), + [4294] = {.count = 1, .reusable = true}, SHIFT(1848), + [4296] = {.count = 1, .reusable = true}, SHIFT(1849), + [4298] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), + [4300] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), + [4302] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [4304] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [4306] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1011), + [4309] = {.count = 1, .reusable = false}, SHIFT(1850), + [4311] = {.count = 1, .reusable = true}, SHIFT(1851), + [4313] = {.count = 1, .reusable = false}, SHIFT(1852), + [4315] = {.count = 1, .reusable = true}, SHIFT(1853), + [4317] = {.count = 1, .reusable = true}, SHIFT(1855), + [4319] = {.count = 1, .reusable = true}, SHIFT(1856), + [4321] = {.count = 1, .reusable = true}, SHIFT(1857), + [4323] = {.count = 1, .reusable = true}, SHIFT(1858), + [4325] = {.count = 1, .reusable = false}, SHIFT(1860), + [4327] = {.count = 1, .reusable = true}, SHIFT(1860), + [4329] = {.count = 1, .reusable = true}, SHIFT(1859), + [4331] = {.count = 1, .reusable = true}, SHIFT(1861), + [4333] = {.count = 1, .reusable = false}, SHIFT(1863), + [4335] = {.count = 1, .reusable = true}, SHIFT(1863), + [4337] = {.count = 1, .reusable = true}, SHIFT(1862), + [4339] = {.count = 1, .reusable = false}, SHIFT(1865), + [4341] = {.count = 1, .reusable = true}, SHIFT(1865), + [4343] = {.count = 1, .reusable = true}, SHIFT(1864), + [4345] = {.count = 1, .reusable = true}, SHIFT(1866), + [4347] = {.count = 1, .reusable = true}, SHIFT(1867), + [4349] = {.count = 1, .reusable = true}, SHIFT(1868), + [4351] = {.count = 1, .reusable = true}, SHIFT(1869), + [4353] = {.count = 1, .reusable = true}, SHIFT(1870), + [4355] = {.count = 1, .reusable = true}, SHIFT(1871), + [4357] = {.count = 1, .reusable = false}, SHIFT(1872), + [4359] = {.count = 1, .reusable = true}, SHIFT(1872), + [4361] = {.count = 1, .reusable = false}, SHIFT(1873), + [4363] = {.count = 1, .reusable = true}, SHIFT(1874), + [4365] = {.count = 1, .reusable = true}, SHIFT(1876), + [4367] = {.count = 1, .reusable = true}, SHIFT(1877), + [4369] = {.count = 1, .reusable = true}, SHIFT(1878), + [4371] = {.count = 1, .reusable = true}, SHIFT(1879), + [4373] = {.count = 1, .reusable = true}, SHIFT(1880), + [4375] = {.count = 1, .reusable = true}, SHIFT(1881), + [4377] = {.count = 1, .reusable = false}, SHIFT(1882), + [4379] = {.count = 1, .reusable = true}, SHIFT(1882), + [4381] = {.count = 1, .reusable = true}, SHIFT(1883), + [4383] = {.count = 1, .reusable = false}, SHIFT(1884), + [4385] = {.count = 1, .reusable = true}, SHIFT(1884), + [4387] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4389] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4391] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [4393] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [4395] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [4397] = {.count = 1, .reusable = true}, SHIFT(1886), + [4399] = {.count = 1, .reusable = true}, SHIFT(1887), + [4401] = {.count = 1, .reusable = true}, SHIFT(1888), + [4403] = {.count = 1, .reusable = true}, SHIFT(1890), + [4405] = {.count = 1, .reusable = false}, SHIFT(1891), + [4407] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [4409] = {.count = 1, .reusable = true}, SHIFT(1892), + [4411] = {.count = 1, .reusable = false}, SHIFT(1893), + [4413] = {.count = 1, .reusable = false}, SHIFT(1894), + [4415] = {.count = 1, .reusable = false}, SHIFT(1895), + [4417] = {.count = 1, .reusable = true}, SHIFT(1896), + [4419] = {.count = 1, .reusable = false}, SHIFT(1897), + [4421] = {.count = 1, .reusable = false}, SHIFT(1898), + [4423] = {.count = 1, .reusable = false}, SHIFT(1899), + [4425] = {.count = 1, .reusable = true}, SHIFT(1900), + [4427] = {.count = 1, .reusable = false}, SHIFT(1901), + [4429] = {.count = 1, .reusable = true}, SHIFT(1908), + [4431] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [4433] = {.count = 1, .reusable = true}, SHIFT(1911), + [4435] = {.count = 1, .reusable = true}, SHIFT(1915), + [4437] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4439] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4441] = {.count = 1, .reusable = true}, SHIFT(1916), + [4443] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1917), + [4446] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), + [4449] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(87), + [4452] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1918), + [4455] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(89), + [4458] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), + [4461] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), + [4464] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(92), + [4467] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4469] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4471] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4473] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4475] = {.count = 1, .reusable = true}, SHIFT(1921), + [4477] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [4479] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [4481] = {.count = 1, .reusable = true}, SHIFT(1923), + [4483] = {.count = 1, .reusable = true}, SHIFT(1924), + [4485] = {.count = 1, .reusable = true}, SHIFT(1925), + [4487] = {.count = 1, .reusable = true}, SHIFT(1926), + [4489] = {.count = 1, .reusable = false}, SHIFT(1927), + [4491] = {.count = 1, .reusable = true}, SHIFT(1927), + [4493] = {.count = 1, .reusable = true}, SHIFT(1928), + [4495] = {.count = 1, .reusable = false}, SHIFT(1929), + [4497] = {.count = 1, .reusable = true}, SHIFT(1929), + [4499] = {.count = 1, .reusable = true}, SHIFT(1930), + [4501] = {.count = 1, .reusable = false}, SHIFT(1931), + [4503] = {.count = 1, .reusable = true}, SHIFT(1931), + [4505] = {.count = 1, .reusable = true}, SHIFT(1932), + [4507] = {.count = 1, .reusable = true}, SHIFT(1933), + [4509] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), + [4511] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), + [4513] = {.count = 1, .reusable = true}, SHIFT(1935), + [4515] = {.count = 1, .reusable = true}, SHIFT(1936), + [4517] = {.count = 1, .reusable = true}, SHIFT(1938), + [4519] = {.count = 1, .reusable = true}, SHIFT(1939), + [4521] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1110), + [4524] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1111), + [4527] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1112), + [4530] = {.count = 1, .reusable = true}, SHIFT(1941), + [4532] = {.count = 1, .reusable = true}, SHIFT(1942), + [4534] = {.count = 1, .reusable = true}, SHIFT(1943), + [4536] = {.count = 1, .reusable = true}, SHIFT(1944), + [4538] = {.count = 1, .reusable = false}, SHIFT(1945), + [4540] = {.count = 1, .reusable = true}, SHIFT(1945), + [4542] = {.count = 1, .reusable = true}, SHIFT(1946), + [4544] = {.count = 1, .reusable = false}, SHIFT(1947), + [4546] = {.count = 1, .reusable = true}, SHIFT(1947), + [4548] = {.count = 1, .reusable = true}, SHIFT(1948), + [4550] = {.count = 1, .reusable = false}, SHIFT(1949), + [4552] = {.count = 1, .reusable = true}, SHIFT(1949), + [4554] = {.count = 1, .reusable = true}, SHIFT(1950), + [4556] = {.count = 1, .reusable = true}, SHIFT(1951), + [4558] = {.count = 1, .reusable = true}, SHIFT(1952), + [4560] = {.count = 1, .reusable = false}, SHIFT(1954), + [4562] = {.count = 1, .reusable = false}, SHIFT(1955), + [4564] = {.count = 1, .reusable = true}, SHIFT(1956), + [4566] = {.count = 1, .reusable = true}, SHIFT(1957), + [4568] = {.count = 1, .reusable = false}, SHIFT(1959), + [4570] = {.count = 1, .reusable = true}, SHIFT(1959), + [4572] = {.count = 1, .reusable = true}, SHIFT(1958), + [4574] = {.count = 1, .reusable = true}, SHIFT(1960), + [4576] = {.count = 1, .reusable = true}, SHIFT(1961), + [4578] = {.count = 1, .reusable = false}, SHIFT(1962), + [4580] = {.count = 1, .reusable = false}, SHIFT(1961), + [4582] = {.count = 1, .reusable = true}, SHIFT(1964), + [4584] = {.count = 1, .reusable = false}, SHIFT(1966), + [4586] = {.count = 1, .reusable = true}, SHIFT(1966), + [4588] = {.count = 1, .reusable = true}, SHIFT(1965), + [4590] = {.count = 1, .reusable = true}, SHIFT(1967), + [4592] = {.count = 1, .reusable = false}, SHIFT(1969), + [4594] = {.count = 1, .reusable = true}, SHIFT(1969), + [4596] = {.count = 1, .reusable = true}, SHIFT(1968), + [4598] = {.count = 1, .reusable = true}, SHIFT(1970), + [4600] = {.count = 1, .reusable = true}, SHIFT(1971), + [4602] = {.count = 1, .reusable = true}, SHIFT(1972), + [4604] = {.count = 1, .reusable = true}, SHIFT(1973), + [4606] = {.count = 1, .reusable = true}, SHIFT(1974), + [4608] = {.count = 1, .reusable = true}, SHIFT(1975), + [4610] = {.count = 1, .reusable = false}, SHIFT(1976), + [4612] = {.count = 1, .reusable = true}, SHIFT(1976), + [4614] = {.count = 1, .reusable = true}, SHIFT(1977), + [4616] = {.count = 1, .reusable = false}, SHIFT(1978), + [4618] = {.count = 1, .reusable = true}, SHIFT(1978), + [4620] = {.count = 1, .reusable = true}, SHIFT(1979), + [4622] = {.count = 1, .reusable = false}, SHIFT(1980), + [4624] = {.count = 1, .reusable = true}, SHIFT(1980), + [4626] = {.count = 1, .reusable = true}, SHIFT(1981), + [4628] = {.count = 1, .reusable = true}, SHIFT(1982), + [4630] = {.count = 1, .reusable = true}, SHIFT(1983), + [4632] = {.count = 1, .reusable = true}, SHIFT(1984), + [4634] = {.count = 1, .reusable = true}, SHIFT(1985), + [4636] = {.count = 1, .reusable = true}, SHIFT(1986), + [4638] = {.count = 1, .reusable = false}, SHIFT(1987), + [4640] = {.count = 1, .reusable = true}, SHIFT(1987), + [4642] = {.count = 1, .reusable = true}, SHIFT(1988), + [4644] = {.count = 1, .reusable = false}, SHIFT(1989), + [4646] = {.count = 1, .reusable = true}, SHIFT(1989), + [4648] = {.count = 1, .reusable = true}, SHIFT(1990), + [4650] = {.count = 1, .reusable = false}, SHIFT(1991), + [4652] = {.count = 1, .reusable = true}, SHIFT(1991), + [4654] = {.count = 1, .reusable = true}, SHIFT(1992), + [4656] = {.count = 1, .reusable = true}, SHIFT(1993), + [4658] = {.count = 1, .reusable = true}, SHIFT(1994), + [4660] = {.count = 1, .reusable = true}, SHIFT(1995), + [4662] = {.count = 1, .reusable = true}, SHIFT(1996), + [4664] = {.count = 1, .reusable = true}, SHIFT(1997), + [4666] = {.count = 1, .reusable = false}, SHIFT(1998), + [4668] = {.count = 1, .reusable = true}, SHIFT(1998), + [4670] = {.count = 1, .reusable = true}, SHIFT(1999), + [4672] = {.count = 1, .reusable = false}, SHIFT(2000), + [4674] = {.count = 1, .reusable = true}, SHIFT(2000), + [4676] = {.count = 1, .reusable = true}, SHIFT(2001), + [4678] = {.count = 1, .reusable = false}, SHIFT(2002), + [4680] = {.count = 1, .reusable = true}, SHIFT(2002), + [4682] = {.count = 1, .reusable = true}, SHIFT(2003), + [4684] = {.count = 1, .reusable = true}, SHIFT(2004), + [4686] = {.count = 1, .reusable = true}, SHIFT(2005), + [4688] = {.count = 1, .reusable = true}, SHIFT(2006), + [4690] = {.count = 1, .reusable = true}, SHIFT(2007), + [4692] = {.count = 1, .reusable = true}, SHIFT(2008), + [4694] = {.count = 1, .reusable = false}, SHIFT(2009), + [4696] = {.count = 1, .reusable = true}, SHIFT(2009), + [4698] = {.count = 1, .reusable = true}, SHIFT(2010), + [4700] = {.count = 1, .reusable = false}, SHIFT(2011), + [4702] = {.count = 1, .reusable = true}, SHIFT(2011), + [4704] = {.count = 1, .reusable = true}, SHIFT(2012), + [4706] = {.count = 1, .reusable = false}, SHIFT(2013), + [4708] = {.count = 1, .reusable = true}, SHIFT(2013), + [4710] = {.count = 1, .reusable = true}, SHIFT(2014), + [4712] = {.count = 1, .reusable = true}, SHIFT(2015), + [4714] = {.count = 1, .reusable = true}, SHIFT(2016), + [4716] = {.count = 1, .reusable = true}, SHIFT(2017), + [4718] = {.count = 1, .reusable = true}, SHIFT(2018), + [4720] = {.count = 1, .reusable = true}, SHIFT(2019), + [4722] = {.count = 1, .reusable = false}, SHIFT(2020), + [4724] = {.count = 1, .reusable = true}, SHIFT(2020), + [4726] = {.count = 1, .reusable = true}, SHIFT(2021), + [4728] = {.count = 1, .reusable = false}, SHIFT(2022), + [4730] = {.count = 1, .reusable = true}, SHIFT(2022), + [4732] = {.count = 1, .reusable = true}, SHIFT(2023), + [4734] = {.count = 1, .reusable = false}, SHIFT(2024), + [4736] = {.count = 1, .reusable = true}, SHIFT(2024), + [4738] = {.count = 1, .reusable = true}, SHIFT(2025), + [4740] = {.count = 1, .reusable = true}, SHIFT(2026), + [4742] = {.count = 1, .reusable = true}, SHIFT(2027), + [4744] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [4746] = {.count = 1, .reusable = true}, SHIFT(2028), + [4748] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [4750] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1262), + [4753] = {.count = 1, .reusable = false}, SHIFT(2029), + [4755] = {.count = 1, .reusable = true}, SHIFT(2030), + [4757] = {.count = 1, .reusable = false}, SHIFT(2031), + [4759] = {.count = 1, .reusable = true}, SHIFT(2032), + [4761] = {.count = 1, .reusable = true}, SHIFT(2034), + [4763] = {.count = 1, .reusable = true}, SHIFT(2035), + [4765] = {.count = 1, .reusable = true}, SHIFT(2036), + [4767] = {.count = 1, .reusable = true}, SHIFT(2037), + [4769] = {.count = 1, .reusable = false}, SHIFT(2039), + [4771] = {.count = 1, .reusable = true}, SHIFT(2039), + [4773] = {.count = 1, .reusable = true}, SHIFT(2038), + [4775] = {.count = 1, .reusable = true}, SHIFT(2040), + [4777] = {.count = 1, .reusable = false}, SHIFT(2042), + [4779] = {.count = 1, .reusable = true}, SHIFT(2042), + [4781] = {.count = 1, .reusable = true}, SHIFT(2041), + [4783] = {.count = 1, .reusable = false}, SHIFT(2044), + [4785] = {.count = 1, .reusable = true}, SHIFT(2044), + [4787] = {.count = 1, .reusable = true}, SHIFT(2043), + [4789] = {.count = 1, .reusable = true}, SHIFT(2045), + [4791] = {.count = 1, .reusable = true}, SHIFT(2046), + [4793] = {.count = 1, .reusable = true}, SHIFT(2047), + [4795] = {.count = 1, .reusable = true}, SHIFT(2048), + [4797] = {.count = 1, .reusable = true}, SHIFT(2049), + [4799] = {.count = 1, .reusable = true}, SHIFT(2050), + [4801] = {.count = 1, .reusable = false}, SHIFT(2051), + [4803] = {.count = 1, .reusable = true}, SHIFT(2051), + [4805] = {.count = 1, .reusable = false}, SHIFT(2052), + [4807] = {.count = 1, .reusable = true}, SHIFT(2053), + [4809] = {.count = 1, .reusable = true}, SHIFT(2055), + [4811] = {.count = 1, .reusable = true}, SHIFT(2056), + [4813] = {.count = 1, .reusable = true}, SHIFT(2057), + [4815] = {.count = 1, .reusable = true}, SHIFT(2058), + [4817] = {.count = 1, .reusable = true}, SHIFT(2059), + [4819] = {.count = 1, .reusable = true}, SHIFT(2060), + [4821] = {.count = 1, .reusable = false}, SHIFT(2061), + [4823] = {.count = 1, .reusable = true}, SHIFT(2061), + [4825] = {.count = 1, .reusable = true}, SHIFT(2062), + [4827] = {.count = 1, .reusable = false}, SHIFT(2063), + [4829] = {.count = 1, .reusable = true}, SHIFT(2063), + [4831] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4833] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4835] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4837] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4839] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [4841] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [4843] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4845] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4847] = {.count = 1, .reusable = true}, SHIFT(2064), + [4849] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4851] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4853] = {.count = 1, .reusable = true}, SHIFT(2065), + [4855] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4857] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4859] = {.count = 1, .reusable = true}, SHIFT(2066), + [4861] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4863] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4865] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4867] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4869] = {.count = 1, .reusable = false}, SHIFT(2068), + [4871] = {.count = 1, .reusable = true}, SHIFT(2069), + [4873] = {.count = 1, .reusable = true}, SHIFT(2071), + [4875] = {.count = 1, .reusable = false}, SHIFT(2073), + [4877] = {.count = 1, .reusable = true}, SHIFT(2075), + [4879] = {.count = 1, .reusable = false}, SHIFT(2077), [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), + [4883] = {.count = 1, .reusable = true}, SHIFT(2081), + [4885] = {.count = 1, .reusable = true}, SHIFT(2084), + [4887] = {.count = 1, .reusable = true}, SHIFT(2085), + [4889] = {.count = 1, .reusable = true}, SHIFT(2087), + [4891] = {.count = 1, .reusable = false}, SHIFT(2089), + [4893] = {.count = 1, .reusable = false}, SHIFT(2090), + [4895] = {.count = 1, .reusable = true}, SHIFT(2092), + [4897] = {.count = 1, .reusable = true}, SHIFT(2093), + [4899] = {.count = 1, .reusable = false}, SHIFT(2094), + [4901] = {.count = 1, .reusable = false}, SHIFT(2092), + [4903] = {.count = 1, .reusable = true}, SHIFT(2095), + [4905] = {.count = 1, .reusable = true}, SHIFT(2096), + [4907] = {.count = 1, .reusable = true}, SHIFT(2097), + [4909] = {.count = 1, .reusable = false}, SHIFT(2098), + [4911] = {.count = 1, .reusable = false}, SHIFT(2096), + [4913] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1341), + [4916] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1342), + [4919] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1342), + [4922] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1343), + [4925] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1343), + [4928] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1344), + [4931] = {.count = 1, .reusable = true}, SHIFT(2106), + [4933] = {.count = 1, .reusable = true}, SHIFT(2107), + [4935] = {.count = 1, .reusable = true}, SHIFT(2108), + [4937] = {.count = 1, .reusable = true}, SHIFT(2109), + [4939] = {.count = 1, .reusable = false}, SHIFT(2110), + [4941] = {.count = 1, .reusable = true}, SHIFT(2110), + [4943] = {.count = 1, .reusable = false}, SHIFT(2111), + [4945] = {.count = 1, .reusable = true}, SHIFT(2112), + [4947] = {.count = 1, .reusable = true}, SHIFT(2114), + [4949] = {.count = 1, .reusable = true}, SHIFT(2115), + [4951] = {.count = 1, .reusable = true}, SHIFT(2116), + [4953] = {.count = 1, .reusable = true}, SHIFT(2117), + [4955] = {.count = 1, .reusable = true}, SHIFT(2118), + [4957] = {.count = 1, .reusable = true}, SHIFT(2119), + [4959] = {.count = 1, .reusable = false}, SHIFT(2120), + [4961] = {.count = 1, .reusable = true}, SHIFT(2120), + [4963] = {.count = 1, .reusable = true}, SHIFT(2121), + [4965] = {.count = 1, .reusable = false}, SHIFT(2122), + [4967] = {.count = 1, .reusable = true}, SHIFT(2122), + [4969] = {.count = 1, .reusable = true}, SHIFT(2123), + [4971] = {.count = 1, .reusable = true}, SHIFT(2124), + [4973] = {.count = 1, .reusable = true}, SHIFT(2125), + [4975] = {.count = 1, .reusable = false}, SHIFT(2126), + [4977] = {.count = 1, .reusable = true}, SHIFT(2126), + [4979] = {.count = 1, .reusable = false}, SHIFT(2127), + [4981] = {.count = 1, .reusable = true}, SHIFT(2128), + [4983] = {.count = 1, .reusable = true}, SHIFT(2130), + [4985] = {.count = 1, .reusable = true}, SHIFT(2131), + [4987] = {.count = 1, .reusable = true}, SHIFT(2132), + [4989] = {.count = 1, .reusable = true}, SHIFT(2133), + [4991] = {.count = 1, .reusable = true}, SHIFT(2134), + [4993] = {.count = 1, .reusable = true}, SHIFT(2135), + [4995] = {.count = 1, .reusable = false}, SHIFT(2136), + [4997] = {.count = 1, .reusable = true}, SHIFT(2136), + [4999] = {.count = 1, .reusable = true}, SHIFT(2137), + [5001] = {.count = 1, .reusable = false}, SHIFT(2138), + [5003] = {.count = 1, .reusable = true}, SHIFT(2138), + [5005] = {.count = 1, .reusable = true}, SHIFT(2139), + [5007] = {.count = 1, .reusable = true}, SHIFT(2140), + [5009] = {.count = 1, .reusable = true}, SHIFT(2141), + [5011] = {.count = 1, .reusable = true}, SHIFT(2142), + [5013] = {.count = 1, .reusable = false}, SHIFT(2143), + [5015] = {.count = 1, .reusable = true}, SHIFT(2143), + [5017] = {.count = 1, .reusable = true}, SHIFT(2144), + [5019] = {.count = 1, .reusable = false}, SHIFT(2145), + [5021] = {.count = 1, .reusable = true}, SHIFT(2145), + [5023] = {.count = 1, .reusable = true}, SHIFT(2146), + [5025] = {.count = 1, .reusable = false}, SHIFT(2147), + [5027] = {.count = 1, .reusable = true}, SHIFT(2147), + [5029] = {.count = 1, .reusable = true}, SHIFT(2148), + [5031] = {.count = 1, .reusable = true}, SHIFT(2149), + [5033] = {.count = 1, .reusable = true}, SHIFT(2150), + [5035] = {.count = 1, .reusable = true}, SHIFT(2151), + [5037] = {.count = 1, .reusable = true}, SHIFT(2153), + [5039] = {.count = 1, .reusable = true}, SHIFT(2154), + [5041] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1422), + [5044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1423), + [5047] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1423), + [5050] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1424), + [5053] = {.count = 1, .reusable = true}, SHIFT(2156), + [5055] = {.count = 1, .reusable = true}, SHIFT(2157), + [5057] = {.count = 1, .reusable = true}, SHIFT(2158), + [5059] = {.count = 1, .reusable = false}, SHIFT(2159), + [5061] = {.count = 1, .reusable = true}, SHIFT(2159), + [5063] = {.count = 1, .reusable = false}, SHIFT(2160), + [5065] = {.count = 1, .reusable = true}, SHIFT(2161), + [5067] = {.count = 1, .reusable = true}, SHIFT(2163), + [5069] = {.count = 1, .reusable = true}, SHIFT(2164), + [5071] = {.count = 1, .reusable = true}, SHIFT(2165), + [5073] = {.count = 1, .reusable = true}, SHIFT(2166), + [5075] = {.count = 1, .reusable = true}, SHIFT(2167), + [5077] = {.count = 1, .reusable = true}, SHIFT(2168), + [5079] = {.count = 1, .reusable = false}, SHIFT(2169), + [5081] = {.count = 1, .reusable = true}, SHIFT(2169), + [5083] = {.count = 1, .reusable = true}, SHIFT(2170), + [5085] = {.count = 1, .reusable = false}, SHIFT(2171), + [5087] = {.count = 1, .reusable = true}, SHIFT(2171), + [5089] = {.count = 1, .reusable = true}, SHIFT(2172), + [5091] = {.count = 1, .reusable = true}, SHIFT(2173), + [5093] = {.count = 1, .reusable = true}, SHIFT(2174), + [5095] = {.count = 1, .reusable = false}, SHIFT(2175), + [5097] = {.count = 1, .reusable = true}, SHIFT(2175), + [5099] = {.count = 1, .reusable = false}, SHIFT(2176), + [5101] = {.count = 1, .reusable = true}, SHIFT(2177), + [5103] = {.count = 1, .reusable = true}, SHIFT(2179), + [5105] = {.count = 1, .reusable = true}, SHIFT(2180), + [5107] = {.count = 1, .reusable = true}, SHIFT(2181), + [5109] = {.count = 1, .reusable = true}, SHIFT(2182), + [5111] = {.count = 1, .reusable = true}, SHIFT(2183), + [5113] = {.count = 1, .reusable = true}, SHIFT(2184), + [5115] = {.count = 1, .reusable = false}, SHIFT(2185), + [5117] = {.count = 1, .reusable = true}, SHIFT(2185), + [5119] = {.count = 1, .reusable = true}, SHIFT(2186), + [5121] = {.count = 1, .reusable = false}, SHIFT(2187), + [5123] = {.count = 1, .reusable = true}, SHIFT(2187), + [5125] = {.count = 1, .reusable = true}, SHIFT(2188), + [5127] = {.count = 1, .reusable = true}, SHIFT(2189), + [5129] = {.count = 1, .reusable = true}, SHIFT(2190), + [5131] = {.count = 1, .reusable = true}, SHIFT(2191), + [5133] = {.count = 1, .reusable = false}, SHIFT(2192), + [5135] = {.count = 1, .reusable = true}, SHIFT(2192), + [5137] = {.count = 1, .reusable = true}, SHIFT(2193), + [5139] = {.count = 1, .reusable = false}, SHIFT(2194), + [5141] = {.count = 1, .reusable = true}, SHIFT(2194), + [5143] = {.count = 1, .reusable = true}, SHIFT(2195), + [5145] = {.count = 1, .reusable = false}, SHIFT(2196), + [5147] = {.count = 1, .reusable = true}, SHIFT(2196), + [5149] = {.count = 1, .reusable = true}, SHIFT(2197), + [5151] = {.count = 1, .reusable = true}, SHIFT(2198), + [5153] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [5155] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [5157] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [5159] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [5161] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [5163] = {.count = 1, .reusable = true}, SHIFT(2199), + [5165] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [5167] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5169] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5171] = {.count = 1, .reusable = true}, SHIFT(2201), + [5173] = {.count = 1, .reusable = true}, SHIFT(2204), + [5175] = {.count = 1, .reusable = false}, SHIFT(2205), + [5177] = {.count = 1, .reusable = false}, SHIFT(2206), + [5179] = {.count = 1, .reusable = false}, SHIFT(2207), + [5181] = {.count = 1, .reusable = false}, SHIFT(2208), + [5183] = {.count = 1, .reusable = false}, SHIFT(2209), + [5185] = {.count = 1, .reusable = false}, SHIFT(2210), + [5187] = {.count = 1, .reusable = false}, SHIFT(2211), + [5189] = {.count = 1, .reusable = false}, SHIFT(2212), + [5191] = {.count = 1, .reusable = false}, SHIFT(2213), + [5193] = {.count = 1, .reusable = false}, SHIFT(2216), + [5195] = {.count = 1, .reusable = false}, SHIFT(2217), + [5197] = {.count = 1, .reusable = false}, SHIFT(2218), + [5199] = {.count = 1, .reusable = false}, SHIFT(2219), + [5201] = {.count = 1, .reusable = false}, SHIFT(2220), + [5203] = {.count = 1, .reusable = false}, SHIFT(2221), + [5205] = {.count = 1, .reusable = false}, SHIFT(2222), + [5207] = {.count = 1, .reusable = false}, SHIFT(2223), + [5209] = {.count = 1, .reusable = false}, SHIFT(2224), + [5211] = {.count = 1, .reusable = false}, SHIFT(2227), + [5213] = {.count = 1, .reusable = false}, SHIFT(2228), + [5215] = {.count = 1, .reusable = false}, SHIFT(2229), + [5217] = {.count = 1, .reusable = false}, SHIFT(2230), + [5219] = {.count = 1, .reusable = true}, SHIFT(2231), + [5221] = {.count = 1, .reusable = false}, SHIFT(2232), + [5223] = {.count = 1, .reusable = false}, SHIFT(2233), + [5225] = {.count = 1, .reusable = false}, SHIFT(2234), + [5227] = {.count = 1, .reusable = false}, SHIFT(2235), + [5229] = {.count = 1, .reusable = false}, SHIFT(2236), [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), + [5233] = {.count = 1, .reusable = true}, SHIFT(1899), + [5235] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1500), + [5238] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [5240] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [5242] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [5244] = {.count = 1, .reusable = false}, SHIFT(2245), + [5246] = {.count = 1, .reusable = true}, SHIFT(2246), + [5248] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5250] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5252] = {.count = 1, .reusable = true}, SHIFT(2250), + [5254] = {.count = 1, .reusable = true}, SHIFT(2252), + [5256] = {.count = 1, .reusable = true}, SHIFT(2254), + [5258] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5260] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5262] = {.count = 1, .reusable = true}, SHIFT(2255), + [5264] = {.count = 1, .reusable = true}, SHIFT(2256), + [5266] = {.count = 1, .reusable = true}, SHIFT(2257), + [5268] = {.count = 1, .reusable = true}, SHIFT(2258), + [5270] = {.count = 1, .reusable = true}, SHIFT(2261), + [5272] = {.count = 1, .reusable = true}, SHIFT(2262), + [5274] = {.count = 1, .reusable = true}, SHIFT(2263), + [5276] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1568), + [5279] = {.count = 1, .reusable = false}, SHIFT(2264), + [5281] = {.count = 1, .reusable = true}, SHIFT(2265), + [5283] = {.count = 1, .reusable = false}, SHIFT(2266), + [5285] = {.count = 1, .reusable = true}, SHIFT(2267), + [5287] = {.count = 1, .reusable = true}, SHIFT(2269), + [5289] = {.count = 1, .reusable = true}, SHIFT(2270), + [5291] = {.count = 1, .reusable = true}, SHIFT(2271), + [5293] = {.count = 1, .reusable = true}, SHIFT(2272), + [5295] = {.count = 1, .reusable = false}, SHIFT(2274), + [5297] = {.count = 1, .reusable = true}, SHIFT(2274), + [5299] = {.count = 1, .reusable = true}, SHIFT(2273), + [5301] = {.count = 1, .reusable = true}, SHIFT(2275), + [5303] = {.count = 1, .reusable = false}, SHIFT(2277), + [5305] = {.count = 1, .reusable = true}, SHIFT(2277), + [5307] = {.count = 1, .reusable = true}, SHIFT(2276), + [5309] = {.count = 1, .reusable = false}, SHIFT(2279), + [5311] = {.count = 1, .reusable = true}, SHIFT(2279), + [5313] = {.count = 1, .reusable = true}, SHIFT(2278), + [5315] = {.count = 1, .reusable = true}, SHIFT(2280), + [5317] = {.count = 1, .reusable = true}, SHIFT(2281), + [5319] = {.count = 1, .reusable = true}, SHIFT(2282), + [5321] = {.count = 1, .reusable = true}, SHIFT(2283), + [5323] = {.count = 1, .reusable = true}, SHIFT(2284), + [5325] = {.count = 1, .reusable = true}, SHIFT(2285), + [5327] = {.count = 1, .reusable = true}, SHIFT(2286), + [5329] = {.count = 1, .reusable = true}, SHIFT(2287), + [5331] = {.count = 1, .reusable = true}, SHIFT(2288), + [5333] = {.count = 1, .reusable = true}, SHIFT(2289), + [5335] = {.count = 1, .reusable = true}, SHIFT(2290), + [5337] = {.count = 1, .reusable = true}, SHIFT(2291), + [5339] = {.count = 1, .reusable = true}, SHIFT(2292), + [5341] = {.count = 1, .reusable = true}, SHIFT(2293), + [5343] = {.count = 1, .reusable = true}, SHIFT(2294), + [5345] = {.count = 1, .reusable = true}, SHIFT(2295), + [5347] = {.count = 1, .reusable = true}, SHIFT(2296), + [5349] = {.count = 1, .reusable = true}, SHIFT(2297), + [5351] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [5353] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [5355] = {.count = 1, .reusable = true}, SHIFT(2298), + [5357] = {.count = 1, .reusable = true}, SHIFT(2299), + [5359] = {.count = 1, .reusable = true}, SHIFT(2300), + [5361] = {.count = 1, .reusable = false}, SHIFT(2301), + [5363] = {.count = 1, .reusable = true}, SHIFT(2301), + [5365] = {.count = 1, .reusable = false}, SHIFT(2302), + [5367] = {.count = 1, .reusable = true}, SHIFT(2303), + [5369] = {.count = 1, .reusable = true}, SHIFT(2305), + [5371] = {.count = 1, .reusable = true}, SHIFT(2306), + [5373] = {.count = 1, .reusable = true}, SHIFT(2307), + [5375] = {.count = 1, .reusable = true}, SHIFT(2308), + [5377] = {.count = 1, .reusable = true}, SHIFT(2309), + [5379] = {.count = 1, .reusable = true}, SHIFT(2310), + [5381] = {.count = 1, .reusable = false}, SHIFT(2311), + [5383] = {.count = 1, .reusable = true}, SHIFT(2311), + [5385] = {.count = 1, .reusable = true}, SHIFT(2312), + [5387] = {.count = 1, .reusable = false}, SHIFT(2313), + [5389] = {.count = 1, .reusable = true}, SHIFT(2313), + [5391] = {.count = 1, .reusable = true}, SHIFT(2314), + [5393] = {.count = 1, .reusable = true}, SHIFT(2315), + [5395] = {.count = 1, .reusable = true}, SHIFT(2316), + [5397] = {.count = 1, .reusable = true}, SHIFT(2317), + [5399] = {.count = 1, .reusable = false}, SHIFT(2318), + [5401] = {.count = 1, .reusable = true}, SHIFT(2318), + [5403] = {.count = 1, .reusable = true}, SHIFT(2319), + [5405] = {.count = 1, .reusable = false}, SHIFT(2320), + [5407] = {.count = 1, .reusable = true}, SHIFT(2320), + [5409] = {.count = 1, .reusable = true}, SHIFT(2321), + [5411] = {.count = 1, .reusable = false}, SHIFT(2322), + [5413] = {.count = 1, .reusable = true}, SHIFT(2322), + [5415] = {.count = 1, .reusable = true}, SHIFT(2323), + [5417] = {.count = 1, .reusable = true}, SHIFT(2324), + [5419] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5421] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5423] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5425] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5427] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5429] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5431] = {.count = 1, .reusable = true}, SHIFT(2325), + [5433] = {.count = 1, .reusable = true}, SHIFT(2326), + [5435] = {.count = 1, .reusable = true}, SHIFT(2328), + [5437] = {.count = 1, .reusable = true}, SHIFT(2331), + [5439] = {.count = 1, .reusable = false}, SHIFT(2333), + [5441] = {.count = 1, .reusable = false}, SHIFT(2334), + [5443] = {.count = 1, .reusable = true}, SHIFT(2335), + [5445] = {.count = 1, .reusable = true}, SHIFT(2336), + [5447] = {.count = 1, .reusable = false}, SHIFT(2338), + [5449] = {.count = 1, .reusable = true}, SHIFT(2338), + [5451] = {.count = 1, .reusable = true}, SHIFT(2337), + [5453] = {.count = 1, .reusable = true}, SHIFT(2339), + [5455] = {.count = 1, .reusable = true}, SHIFT(2340), + [5457] = {.count = 1, .reusable = false}, SHIFT(2341), + [5459] = {.count = 1, .reusable = false}, SHIFT(2340), + [5461] = {.count = 1, .reusable = true}, SHIFT(2343), + [5463] = {.count = 1, .reusable = false}, SHIFT(2345), + [5465] = {.count = 1, .reusable = true}, SHIFT(2345), + [5467] = {.count = 1, .reusable = true}, SHIFT(2344), + [5469] = {.count = 1, .reusable = true}, SHIFT(2346), + [5471] = {.count = 1, .reusable = false}, SHIFT(2348), + [5473] = {.count = 1, .reusable = true}, SHIFT(2348), + [5475] = {.count = 1, .reusable = true}, SHIFT(2347), + [5477] = {.count = 1, .reusable = true}, SHIFT(2349), + [5479] = {.count = 1, .reusable = true}, SHIFT(2350), + [5481] = {.count = 1, .reusable = true}, SHIFT(2351), + [5483] = {.count = 1, .reusable = true}, SHIFT(2352), + [5485] = {.count = 1, .reusable = true}, SHIFT(2353), + [5487] = {.count = 1, .reusable = true}, SHIFT(2354), + [5489] = {.count = 1, .reusable = false}, SHIFT(2355), + [5491] = {.count = 1, .reusable = true}, SHIFT(2355), + [5493] = {.count = 1, .reusable = true}, SHIFT(2356), + [5495] = {.count = 1, .reusable = false}, SHIFT(2357), + [5497] = {.count = 1, .reusable = true}, SHIFT(2357), + [5499] = {.count = 1, .reusable = true}, SHIFT(2358), + [5501] = {.count = 1, .reusable = false}, SHIFT(2359), + [5503] = {.count = 1, .reusable = true}, SHIFT(2359), + [5505] = {.count = 1, .reusable = true}, SHIFT(2360), + [5507] = {.count = 1, .reusable = true}, SHIFT(2361), + [5509] = {.count = 1, .reusable = true}, SHIFT(2362), + [5511] = {.count = 1, .reusable = true}, SHIFT(2363), + [5513] = {.count = 1, .reusable = true}, SHIFT(2364), + [5515] = {.count = 1, .reusable = true}, SHIFT(2365), + [5517] = {.count = 1, .reusable = false}, SHIFT(2366), + [5519] = {.count = 1, .reusable = true}, SHIFT(2366), + [5521] = {.count = 1, .reusable = true}, SHIFT(2367), + [5523] = {.count = 1, .reusable = false}, SHIFT(2368), + [5525] = {.count = 1, .reusable = true}, SHIFT(2368), + [5527] = {.count = 1, .reusable = true}, SHIFT(2369), + [5529] = {.count = 1, .reusable = false}, SHIFT(2370), + [5531] = {.count = 1, .reusable = true}, SHIFT(2370), + [5533] = {.count = 1, .reusable = true}, SHIFT(2371), + [5535] = {.count = 1, .reusable = true}, SHIFT(2372), + [5537] = {.count = 1, .reusable = true}, SHIFT(2373), + [5539] = {.count = 1, .reusable = true}, SHIFT(2374), + [5541] = {.count = 1, .reusable = true}, SHIFT(2375), + [5543] = {.count = 1, .reusable = true}, SHIFT(2378), + [5545] = {.count = 1, .reusable = true}, SHIFT(2379), + [5547] = {.count = 1, .reusable = true}, SHIFT(2380), + [5549] = {.count = 1, .reusable = true}, SHIFT(2381), + [5551] = {.count = 1, .reusable = false}, SHIFT(2382), + [5553] = {.count = 1, .reusable = true}, SHIFT(2382), + [5555] = {.count = 1, .reusable = true}, SHIFT(2383), + [5557] = {.count = 1, .reusable = false}, SHIFT(2384), + [5559] = {.count = 1, .reusable = true}, SHIFT(2384), + [5561] = {.count = 1, .reusable = true}, SHIFT(2385), + [5563] = {.count = 1, .reusable = false}, SHIFT(2386), + [5565] = {.count = 1, .reusable = true}, SHIFT(2386), + [5567] = {.count = 1, .reusable = true}, SHIFT(2387), + [5569] = {.count = 1, .reusable = true}, SHIFT(2388), + [5571] = {.count = 1, .reusable = true}, SHIFT(2389), + [5573] = {.count = 1, .reusable = true}, SHIFT(2390), + [5575] = {.count = 1, .reusable = true}, SHIFT(2391), + [5577] = {.count = 1, .reusable = true}, SHIFT(2392), + [5579] = {.count = 1, .reusable = false}, SHIFT(2393), + [5581] = {.count = 1, .reusable = true}, SHIFT(2393), + [5583] = {.count = 1, .reusable = true}, SHIFT(2394), + [5585] = {.count = 1, .reusable = false}, SHIFT(2395), + [5587] = {.count = 1, .reusable = true}, SHIFT(2395), + [5589] = {.count = 1, .reusable = true}, SHIFT(2396), + [5591] = {.count = 1, .reusable = false}, SHIFT(2397), + [5593] = {.count = 1, .reusable = true}, SHIFT(2397), + [5595] = {.count = 1, .reusable = true}, SHIFT(2398), + [5597] = {.count = 1, .reusable = true}, SHIFT(2399), + [5599] = {.count = 1, .reusable = true}, SHIFT(2400), + [5601] = {.count = 1, .reusable = true}, SHIFT(2401), + [5603] = {.count = 1, .reusable = true}, SHIFT(2402), + [5605] = {.count = 1, .reusable = true}, SHIFT(2403), + [5607] = {.count = 1, .reusable = true}, SHIFT(2404), + [5609] = {.count = 1, .reusable = true}, SHIFT(2406), + [5611] = {.count = 1, .reusable = true}, SHIFT(2408), + [5613] = {.count = 1, .reusable = true}, SHIFT(2409), + [5615] = {.count = 1, .reusable = true}, SHIFT(2410), + [5617] = {.count = 1, .reusable = false}, SHIFT(2412), + [5619] = {.count = 1, .reusable = false}, SHIFT(2413), + [5621] = {.count = 1, .reusable = true}, SHIFT(2206), + [5623] = {.count = 1, .reusable = true}, SHIFT(2415), + [5625] = {.count = 1, .reusable = true}, SHIFT(2416), + [5627] = {.count = 1, .reusable = false}, SHIFT(2417), + [5629] = {.count = 1, .reusable = false}, SHIFT(2415), + [5631] = {.count = 1, .reusable = true}, SHIFT(2418), + [5633] = {.count = 1, .reusable = true}, SHIFT(2419), + [5635] = {.count = 1, .reusable = true}, SHIFT(2420), + [5637] = {.count = 1, .reusable = false}, SHIFT(2421), + [5639] = {.count = 1, .reusable = false}, SHIFT(2419), + [5641] = {.count = 1, .reusable = true}, SHIFT(2430), + [5643] = {.count = 1, .reusable = false}, SHIFT(2432), + [5645] = {.count = 1, .reusable = false}, SHIFT(2433), + [5647] = {.count = 1, .reusable = true}, SHIFT(2217), + [5649] = {.count = 1, .reusable = true}, SHIFT(2435), + [5651] = {.count = 1, .reusable = true}, SHIFT(2436), + [5653] = {.count = 1, .reusable = false}, SHIFT(2437), + [5655] = {.count = 1, .reusable = false}, SHIFT(2435), + [5657] = {.count = 1, .reusable = true}, SHIFT(2438), + [5659] = {.count = 1, .reusable = true}, SHIFT(2439), + [5661] = {.count = 1, .reusable = true}, SHIFT(2440), + [5663] = {.count = 1, .reusable = false}, SHIFT(2441), + [5665] = {.count = 1, .reusable = false}, SHIFT(2439), + [5667] = {.count = 1, .reusable = true}, SHIFT(2451), + [5669] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5671] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5673] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5675] = {.count = 1, .reusable = false}, SHIFT(2454), + [5677] = {.count = 1, .reusable = true}, SHIFT(2454), + [5679] = {.count = 1, .reusable = false}, SHIFT(2455), + [5681] = {.count = 1, .reusable = false}, SHIFT(2456), + [5683] = {.count = 1, .reusable = true}, SHIFT(2457), + [5685] = {.count = 1, .reusable = true}, SHIFT(2458), + [5687] = {.count = 1, .reusable = true}, SHIFT(2459), + [5689] = {.count = 1, .reusable = true}, SHIFT(2460), + [5691] = {.count = 1, .reusable = false}, SHIFT(2464), + [5693] = {.count = 1, .reusable = true}, SHIFT(2466), + [5695] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [5697] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [5699] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [5701] = {.count = 1, .reusable = false}, SHIFT(2469), + [5703] = {.count = 1, .reusable = true}, SHIFT(2470), + [5705] = {.count = 1, .reusable = true}, SHIFT(2473), + [5707] = {.count = 1, .reusable = true}, SHIFT(2477), + [5709] = {.count = 1, .reusable = true}, SHIFT(2478), + [5711] = {.count = 1, .reusable = true}, SHIFT(2482), + [5713] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5715] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5717] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5719] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5721] = {.count = 1, .reusable = true}, SHIFT(2483), + [5723] = {.count = 1, .reusable = true}, SHIFT(2484), + [5725] = {.count = 1, .reusable = true}, SHIFT(2485), + [5727] = {.count = 1, .reusable = false}, SHIFT(2486), + [5729] = {.count = 1, .reusable = true}, SHIFT(2486), + [5731] = {.count = 1, .reusable = false}, SHIFT(2487), + [5733] = {.count = 1, .reusable = true}, SHIFT(2488), + [5735] = {.count = 1, .reusable = true}, SHIFT(2490), + [5737] = {.count = 1, .reusable = true}, SHIFT(2491), + [5739] = {.count = 1, .reusable = true}, SHIFT(2492), + [5741] = {.count = 1, .reusable = true}, SHIFT(2493), + [5743] = {.count = 1, .reusable = true}, SHIFT(2494), + [5745] = {.count = 1, .reusable = true}, SHIFT(2495), + [5747] = {.count = 1, .reusable = false}, SHIFT(2496), + [5749] = {.count = 1, .reusable = true}, SHIFT(2496), + [5751] = {.count = 1, .reusable = true}, SHIFT(2497), + [5753] = {.count = 1, .reusable = false}, SHIFT(2498), + [5755] = {.count = 1, .reusable = true}, SHIFT(2498), + [5757] = {.count = 1, .reusable = true}, SHIFT(2499), + [5759] = {.count = 1, .reusable = true}, SHIFT(2500), + [5761] = {.count = 1, .reusable = true}, SHIFT(2501), + [5763] = {.count = 1, .reusable = true}, SHIFT(2502), + [5765] = {.count = 1, .reusable = false}, SHIFT(2503), + [5767] = {.count = 1, .reusable = true}, SHIFT(2503), + [5769] = {.count = 1, .reusable = true}, SHIFT(2504), + [5771] = {.count = 1, .reusable = false}, SHIFT(2505), + [5773] = {.count = 1, .reusable = true}, SHIFT(2505), + [5775] = {.count = 1, .reusable = true}, SHIFT(2506), + [5777] = {.count = 1, .reusable = false}, SHIFT(2507), + [5779] = {.count = 1, .reusable = true}, SHIFT(2507), + [5781] = {.count = 1, .reusable = true}, SHIFT(2508), + [5783] = {.count = 1, .reusable = true}, SHIFT(2509), + [5785] = {.count = 1, .reusable = true}, SHIFT(2510), + [5787] = {.count = 1, .reusable = true}, SHIFT(2511), + [5789] = {.count = 1, .reusable = true}, SHIFT(2512), + [5791] = {.count = 1, .reusable = true}, SHIFT(2513), + [5793] = {.count = 1, .reusable = true}, SHIFT(2514), + [5795] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2087), [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), + [5800] = {.count = 1, .reusable = true}, SHIFT(2516), + [5802] = {.count = 1, .reusable = false}, SHIFT(2517), + [5804] = {.count = 1, .reusable = true}, SHIFT(2518), + [5806] = {.count = 1, .reusable = true}, SHIFT(2520), + [5808] = {.count = 1, .reusable = true}, SHIFT(2521), + [5810] = {.count = 1, .reusable = true}, SHIFT(2522), + [5812] = {.count = 1, .reusable = true}, SHIFT(2523), + [5814] = {.count = 1, .reusable = false}, SHIFT(2525), + [5816] = {.count = 1, .reusable = true}, SHIFT(2525), + [5818] = {.count = 1, .reusable = true}, SHIFT(2524), + [5820] = {.count = 1, .reusable = true}, SHIFT(2526), + [5822] = {.count = 1, .reusable = false}, SHIFT(2528), + [5824] = {.count = 1, .reusable = true}, SHIFT(2528), + [5826] = {.count = 1, .reusable = true}, SHIFT(2527), + [5828] = {.count = 1, .reusable = false}, SHIFT(2530), + [5830] = {.count = 1, .reusable = true}, SHIFT(2530), + [5832] = {.count = 1, .reusable = true}, SHIFT(2529), + [5834] = {.count = 1, .reusable = true}, SHIFT(2531), + [5836] = {.count = 1, .reusable = true}, SHIFT(2532), + [5838] = {.count = 1, .reusable = true}, SHIFT(2533), + [5840] = {.count = 1, .reusable = true}, SHIFT(2534), + [5842] = {.count = 1, .reusable = true}, SHIFT(2535), + [5844] = {.count = 1, .reusable = true}, SHIFT(2536), + [5846] = {.count = 1, .reusable = true}, SHIFT(2537), + [5848] = {.count = 1, .reusable = true}, SHIFT(2538), + [5850] = {.count = 1, .reusable = true}, SHIFT(2539), + [5852] = {.count = 1, .reusable = true}, SHIFT(2540), + [5854] = {.count = 1, .reusable = true}, SHIFT(2541), + [5856] = {.count = 1, .reusable = true}, SHIFT(2542), + [5858] = {.count = 1, .reusable = true}, SHIFT(2543), + [5860] = {.count = 1, .reusable = true}, SHIFT(2544), + [5862] = {.count = 1, .reusable = true}, SHIFT(2545), + [5864] = {.count = 1, .reusable = true}, SHIFT(2548), + [5866] = {.count = 1, .reusable = true}, SHIFT(2549), + [5868] = {.count = 1, .reusable = false}, SHIFT(2550), + [5870] = {.count = 1, .reusable = true}, SHIFT(2551), + [5872] = {.count = 1, .reusable = false}, SHIFT(2552), + [5874] = {.count = 1, .reusable = false}, SHIFT(2553), + [5876] = {.count = 1, .reusable = true}, SHIFT(2555), + [5878] = {.count = 1, .reusable = true}, SHIFT(2556), + [5880] = {.count = 1, .reusable = true}, SHIFT(2557), + [5882] = {.count = 1, .reusable = true}, SHIFT(2558), + [5884] = {.count = 1, .reusable = true}, SHIFT(2209), + [5886] = {.count = 1, .reusable = true}, SHIFT(2210), + [5888] = {.count = 1, .reusable = true}, SHIFT(2211), + [5890] = {.count = 1, .reusable = true}, SHIFT(2212), + [5892] = {.count = 1, .reusable = true}, SHIFT(2559), + [5894] = {.count = 1, .reusable = false}, SHIFT(2561), + [5896] = {.count = 1, .reusable = false}, SHIFT(2562), + [5898] = {.count = 1, .reusable = true}, SHIFT(2563), + [5900] = {.count = 1, .reusable = true}, SHIFT(2564), + [5902] = {.count = 1, .reusable = false}, SHIFT(2566), + [5904] = {.count = 1, .reusable = true}, SHIFT(2566), + [5906] = {.count = 1, .reusable = true}, SHIFT(2565), + [5908] = {.count = 1, .reusable = true}, SHIFT(2567), + [5910] = {.count = 1, .reusable = true}, SHIFT(2568), + [5912] = {.count = 1, .reusable = false}, SHIFT(2569), + [5914] = {.count = 1, .reusable = false}, SHIFT(2568), + [5916] = {.count = 1, .reusable = true}, SHIFT(2571), + [5918] = {.count = 1, .reusable = false}, SHIFT(2573), + [5920] = {.count = 1, .reusable = true}, SHIFT(2573), + [5922] = {.count = 1, .reusable = true}, SHIFT(2572), + [5924] = {.count = 1, .reusable = true}, SHIFT(2574), + [5926] = {.count = 1, .reusable = false}, SHIFT(2576), + [5928] = {.count = 1, .reusable = true}, SHIFT(2576), + [5930] = {.count = 1, .reusable = true}, SHIFT(2575), + [5932] = {.count = 1, .reusable = true}, SHIFT(2577), + [5934] = {.count = 1, .reusable = true}, SHIFT(2578), + [5936] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2204), + [5939] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2205), + [5942] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2206), + [5945] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2207), + [5948] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2208), + [5951] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2209), + [5954] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2210), + [5957] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2211), + [5960] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2212), + [5963] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2213), + [5966] = {.count = 1, .reusable = true}, SHIFT(2579), + [5968] = {.count = 1, .reusable = true}, SHIFT(2220), + [5970] = {.count = 1, .reusable = true}, SHIFT(2221), + [5972] = {.count = 1, .reusable = true}, SHIFT(2222), + [5974] = {.count = 1, .reusable = true}, SHIFT(2223), + [5976] = {.count = 1, .reusable = false}, SHIFT(2581), + [5978] = {.count = 1, .reusable = false}, SHIFT(2582), + [5980] = {.count = 1, .reusable = true}, SHIFT(2583), + [5982] = {.count = 1, .reusable = true}, SHIFT(2584), + [5984] = {.count = 1, .reusable = false}, SHIFT(2586), + [5986] = {.count = 1, .reusable = true}, SHIFT(2586), + [5988] = {.count = 1, .reusable = true}, SHIFT(2585), + [5990] = {.count = 1, .reusable = true}, SHIFT(2587), + [5992] = {.count = 1, .reusable = true}, SHIFT(2588), + [5994] = {.count = 1, .reusable = false}, SHIFT(2589), + [5996] = {.count = 1, .reusable = false}, SHIFT(2588), + [5998] = {.count = 1, .reusable = true}, SHIFT(2591), + [6000] = {.count = 1, .reusable = false}, SHIFT(2593), + [6002] = {.count = 1, .reusable = true}, SHIFT(2593), + [6004] = {.count = 1, .reusable = true}, SHIFT(2592), + [6006] = {.count = 1, .reusable = true}, SHIFT(2594), + [6008] = {.count = 1, .reusable = false}, SHIFT(2596), + [6010] = {.count = 1, .reusable = true}, SHIFT(2596), + [6012] = {.count = 1, .reusable = true}, SHIFT(2595), + [6014] = {.count = 1, .reusable = true}, SHIFT(2597), + [6016] = {.count = 1, .reusable = true}, SHIFT(2598), + [6018] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2216), + [6021] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2217), + [6024] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2218), + [6027] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2219), + [6030] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2220), + [6033] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2221), + [6036] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2222), + [6039] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2223), + [6042] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2224), + [6045] = {.count = 1, .reusable = true}, SHIFT(2600), + [6047] = {.count = 1, .reusable = true}, SHIFT(2601), + [6049] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2231), + [6052] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2233), + [6055] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2234), + [6058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2232), + [6061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2235), + [6064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2236), + [6067] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [6069] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [6071] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [6073] = {.count = 1, .reusable = false}, SHIFT(2604), + [6075] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [6077] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [6079] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [6081] = {.count = 1, .reusable = false}, SHIFT(2605), + [6083] = {.count = 1, .reusable = false}, SHIFT(2606), + [6085] = {.count = 1, .reusable = true}, SHIFT(2607), + [6087] = {.count = 1, .reusable = false}, SHIFT(2612), + [6089] = {.count = 1, .reusable = true}, SHIFT(2613), + [6091] = {.count = 1, .reusable = true}, SHIFT(2617), + [6093] = {.count = 1, .reusable = true}, SHIFT(2618), + [6095] = {.count = 1, .reusable = true}, SHIFT(2619), + [6097] = {.count = 1, .reusable = true}, SHIFT(2620), + [6099] = {.count = 1, .reusable = false}, SHIFT(2621), + [6101] = {.count = 1, .reusable = true}, SHIFT(2621), + [6103] = {.count = 1, .reusable = true}, SHIFT(2622), + [6105] = {.count = 1, .reusable = false}, SHIFT(2623), + [6107] = {.count = 1, .reusable = true}, SHIFT(2623), + [6109] = {.count = 1, .reusable = true}, SHIFT(2624), + [6111] = {.count = 1, .reusable = false}, SHIFT(2625), + [6113] = {.count = 1, .reusable = true}, SHIFT(2625), + [6115] = {.count = 1, .reusable = true}, SHIFT(2626), + [6117] = {.count = 1, .reusable = true}, SHIFT(2627), + [6119] = {.count = 1, .reusable = true}, SHIFT(2628), + [6121] = {.count = 1, .reusable = true}, SHIFT(2629), + [6123] = {.count = 1, .reusable = true}, SHIFT(2630), + [6125] = {.count = 1, .reusable = true}, SHIFT(2631), + [6127] = {.count = 1, .reusable = true}, SHIFT(2632), + [6129] = {.count = 1, .reusable = true}, SHIFT(2633), + [6131] = {.count = 1, .reusable = false}, SHIFT(2634), + [6133] = {.count = 1, .reusable = true}, SHIFT(2634), + [6135] = {.count = 1, .reusable = false}, SHIFT(2635), + [6137] = {.count = 1, .reusable = true}, SHIFT(2636), + [6139] = {.count = 1, .reusable = true}, SHIFT(2638), + [6141] = {.count = 1, .reusable = true}, SHIFT(2639), + [6143] = {.count = 1, .reusable = true}, SHIFT(2640), + [6145] = {.count = 1, .reusable = true}, SHIFT(2641), + [6147] = {.count = 1, .reusable = true}, SHIFT(2642), + [6149] = {.count = 1, .reusable = true}, SHIFT(2643), + [6151] = {.count = 1, .reusable = false}, SHIFT(2644), + [6153] = {.count = 1, .reusable = true}, SHIFT(2644), + [6155] = {.count = 1, .reusable = true}, SHIFT(2645), + [6157] = {.count = 1, .reusable = false}, SHIFT(2646), + [6159] = {.count = 1, .reusable = true}, SHIFT(2646), + [6161] = {.count = 1, .reusable = false}, SHIFT(2649), + [6163] = {.count = 1, .reusable = true}, SHIFT(2649), + [6165] = {.count = 1, .reusable = true}, SHIFT(2650), + [6167] = {.count = 1, .reusable = true}, SHIFT(2651), + [6169] = {.count = 1, .reusable = false}, SHIFT(2652), + [6171] = {.count = 1, .reusable = true}, SHIFT(2653), + [6173] = {.count = 1, .reusable = true}, SHIFT(2654), + [6175] = {.count = 1, .reusable = true}, SHIFT(2655), + [6177] = {.count = 1, .reusable = true}, SHIFT(2656), + [6179] = {.count = 1, .reusable = true}, SHIFT(2657), + [6181] = {.count = 1, .reusable = false}, SHIFT(2658), + [6183] = {.count = 1, .reusable = true}, SHIFT(2658), + [6185] = {.count = 1, .reusable = true}, SHIFT(2659), + [6187] = {.count = 1, .reusable = true}, SHIFT(2660), + [6189] = {.count = 1, .reusable = true}, SHIFT(2661), + [6191] = {.count = 1, .reusable = true}, SHIFT(2662), + [6193] = {.count = 1, .reusable = true}, SHIFT(2664), + [6195] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2410), + [6198] = {.count = 1, .reusable = false}, SHIFT(2666), + [6200] = {.count = 1, .reusable = true}, SHIFT(2667), + [6202] = {.count = 1, .reusable = false}, SHIFT(2668), + [6204] = {.count = 1, .reusable = true}, SHIFT(2669), + [6206] = {.count = 1, .reusable = true}, SHIFT(2671), + [6208] = {.count = 1, .reusable = true}, SHIFT(2672), + [6210] = {.count = 1, .reusable = true}, SHIFT(2673), + [6212] = {.count = 1, .reusable = true}, SHIFT(2674), + [6214] = {.count = 1, .reusable = false}, SHIFT(2676), + [6216] = {.count = 1, .reusable = true}, SHIFT(2676), + [6218] = {.count = 1, .reusable = true}, SHIFT(2675), + [6220] = {.count = 1, .reusable = true}, SHIFT(2677), + [6222] = {.count = 1, .reusable = false}, SHIFT(2679), + [6224] = {.count = 1, .reusable = true}, SHIFT(2679), + [6226] = {.count = 1, .reusable = true}, SHIFT(2678), + [6228] = {.count = 1, .reusable = false}, SHIFT(2681), + [6230] = {.count = 1, .reusable = true}, SHIFT(2681), + [6232] = {.count = 1, .reusable = true}, SHIFT(2680), + [6234] = {.count = 1, .reusable = true}, SHIFT(2682), + [6236] = {.count = 1, .reusable = true}, SHIFT(2683), + [6238] = {.count = 1, .reusable = true}, SHIFT(2684), + [6240] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2430), + [6243] = {.count = 1, .reusable = false}, SHIFT(2685), + [6245] = {.count = 1, .reusable = true}, SHIFT(2686), + [6247] = {.count = 1, .reusable = false}, SHIFT(2687), + [6249] = {.count = 1, .reusable = true}, SHIFT(2688), + [6251] = {.count = 1, .reusable = true}, SHIFT(2690), + [6253] = {.count = 1, .reusable = true}, SHIFT(2691), + [6255] = {.count = 1, .reusable = true}, SHIFT(2692), + [6257] = {.count = 1, .reusable = true}, SHIFT(2693), + [6259] = {.count = 1, .reusable = false}, SHIFT(2695), + [6261] = {.count = 1, .reusable = true}, SHIFT(2695), + [6263] = {.count = 1, .reusable = true}, SHIFT(2694), + [6265] = {.count = 1, .reusable = true}, SHIFT(2696), + [6267] = {.count = 1, .reusable = false}, SHIFT(2698), + [6269] = {.count = 1, .reusable = true}, SHIFT(2698), + [6271] = {.count = 1, .reusable = true}, SHIFT(2697), + [6273] = {.count = 1, .reusable = false}, SHIFT(2700), + [6275] = {.count = 1, .reusable = true}, SHIFT(2700), + [6277] = {.count = 1, .reusable = true}, SHIFT(2699), + [6279] = {.count = 1, .reusable = true}, SHIFT(2701), + [6281] = {.count = 1, .reusable = true}, SHIFT(2702), + [6283] = {.count = 1, .reusable = true}, SHIFT(2703), + [6285] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [6287] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6289] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6291] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), + [6293] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), + [6295] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), + [6297] = {.count = 1, .reusable = false}, SHIFT(2705), + [6299] = {.count = 1, .reusable = true}, SHIFT(2706), + [6301] = {.count = 1, .reusable = false}, SHIFT(2709), + [6303] = {.count = 1, .reusable = true}, SHIFT(2710), + [6305] = {.count = 1, .reusable = true}, SHIFT(2713), + [6307] = {.count = 1, .reusable = true}, SHIFT(2714), + [6309] = {.count = 1, .reusable = true}, SHIFT(2715), + [6311] = {.count = 1, .reusable = true}, SHIFT(2716), + [6313] = {.count = 1, .reusable = true}, SHIFT(2717), + [6315] = {.count = 1, .reusable = true}, SHIFT(2718), + [6317] = {.count = 1, .reusable = true}, SHIFT(2719), + [6319] = {.count = 1, .reusable = false}, SHIFT(2720), + [6321] = {.count = 1, .reusable = true}, SHIFT(2720), + [6323] = {.count = 1, .reusable = true}, SHIFT(2721), + [6325] = {.count = 1, .reusable = false}, SHIFT(2722), + [6327] = {.count = 1, .reusable = true}, SHIFT(2722), + [6329] = {.count = 1, .reusable = true}, SHIFT(2723), + [6331] = {.count = 1, .reusable = false}, SHIFT(2724), + [6333] = {.count = 1, .reusable = true}, SHIFT(2724), + [6335] = {.count = 1, .reusable = true}, SHIFT(2725), + [6337] = {.count = 1, .reusable = true}, SHIFT(2726), + [6339] = {.count = 1, .reusable = true}, SHIFT(2727), + [6341] = {.count = 1, .reusable = true}, SHIFT(2728), + [6343] = {.count = 1, .reusable = true}, SHIFT(2729), + [6345] = {.count = 1, .reusable = false}, SHIFT(2731), + [6347] = {.count = 1, .reusable = false}, SHIFT(2732), + [6349] = {.count = 1, .reusable = true}, SHIFT(2734), + [6351] = {.count = 1, .reusable = true}, SHIFT(2735), + [6353] = {.count = 1, .reusable = false}, SHIFT(2736), + [6355] = {.count = 1, .reusable = false}, SHIFT(2734), + [6357] = {.count = 1, .reusable = true}, SHIFT(2737), + [6359] = {.count = 1, .reusable = true}, SHIFT(2738), + [6361] = {.count = 1, .reusable = true}, SHIFT(2739), + [6363] = {.count = 1, .reusable = false}, SHIFT(2740), + [6365] = {.count = 1, .reusable = false}, SHIFT(2738), + [6367] = {.count = 1, .reusable = true}, SHIFT(2748), + [6369] = {.count = 1, .reusable = true}, SHIFT(2749), + [6371] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2551), + [6374] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2552), + [6377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2553), + [6380] = {.count = 1, .reusable = true}, SHIFT(2751), + [6382] = {.count = 1, .reusable = true}, SHIFT(2752), + [6384] = {.count = 1, .reusable = true}, SHIFT(2753), + [6386] = {.count = 1, .reusable = true}, SHIFT(2754), + [6388] = {.count = 1, .reusable = false}, SHIFT(2755), + [6390] = {.count = 1, .reusable = true}, SHIFT(2755), + [6392] = {.count = 1, .reusable = false}, SHIFT(2756), + [6394] = {.count = 1, .reusable = true}, SHIFT(2757), + [6396] = {.count = 1, .reusable = true}, SHIFT(2759), + [6398] = {.count = 1, .reusable = true}, SHIFT(2760), + [6400] = {.count = 1, .reusable = true}, SHIFT(2761), + [6402] = {.count = 1, .reusable = true}, SHIFT(2762), + [6404] = {.count = 1, .reusable = true}, SHIFT(2763), + [6406] = {.count = 1, .reusable = true}, SHIFT(2764), + [6408] = {.count = 1, .reusable = false}, SHIFT(2765), + [6410] = {.count = 1, .reusable = true}, SHIFT(2765), + [6412] = {.count = 1, .reusable = true}, SHIFT(2766), + [6414] = {.count = 1, .reusable = false}, SHIFT(2767), + [6416] = {.count = 1, .reusable = true}, SHIFT(2767), + [6418] = {.count = 1, .reusable = true}, SHIFT(2768), + [6420] = {.count = 1, .reusable = true}, SHIFT(2769), + [6422] = {.count = 1, .reusable = true}, SHIFT(2770), + [6424] = {.count = 1, .reusable = false}, SHIFT(2771), + [6426] = {.count = 1, .reusable = true}, SHIFT(2771), + [6428] = {.count = 1, .reusable = false}, SHIFT(2772), + [6430] = {.count = 1, .reusable = true}, SHIFT(2773), + [6432] = {.count = 1, .reusable = true}, SHIFT(2775), + [6434] = {.count = 1, .reusable = true}, SHIFT(2776), + [6436] = {.count = 1, .reusable = true}, SHIFT(2777), + [6438] = {.count = 1, .reusable = true}, SHIFT(2778), + [6440] = {.count = 1, .reusable = true}, SHIFT(2779), + [6442] = {.count = 1, .reusable = true}, SHIFT(2780), + [6444] = {.count = 1, .reusable = false}, SHIFT(2781), + [6446] = {.count = 1, .reusable = true}, SHIFT(2781), + [6448] = {.count = 1, .reusable = true}, SHIFT(2782), + [6450] = {.count = 1, .reusable = false}, SHIFT(2783), + [6452] = {.count = 1, .reusable = true}, SHIFT(2783), + [6454] = {.count = 1, .reusable = false}, SHIFT(2784), + [6456] = {.count = 1, .reusable = false}, SHIFT(2785), + [6458] = {.count = 1, .reusable = true}, SHIFT(2786), + [6460] = {.count = 1, .reusable = true}, SHIFT(2787), + [6462] = {.count = 1, .reusable = true}, SHIFT(2788), + [6464] = {.count = 1, .reusable = true}, SHIFT(2789), + [6466] = {.count = 1, .reusable = false}, SHIFT(2791), + [6468] = {.count = 1, .reusable = false}, SHIFT(2792), + [6470] = {.count = 1, .reusable = true}, SHIFT(2793), + [6472] = {.count = 1, .reusable = true}, SHIFT(2794), + [6474] = {.count = 1, .reusable = false}, SHIFT(2796), + [6476] = {.count = 1, .reusable = true}, SHIFT(2796), + [6478] = {.count = 1, .reusable = true}, SHIFT(2795), + [6480] = {.count = 1, .reusable = true}, SHIFT(2797), + [6482] = {.count = 1, .reusable = true}, SHIFT(2798), + [6484] = {.count = 1, .reusable = false}, SHIFT(2799), + [6486] = {.count = 1, .reusable = false}, SHIFT(2798), + [6488] = {.count = 1, .reusable = true}, SHIFT(2801), + [6490] = {.count = 1, .reusable = false}, SHIFT(2803), + [6492] = {.count = 1, .reusable = true}, SHIFT(2803), + [6494] = {.count = 1, .reusable = true}, SHIFT(2802), + [6496] = {.count = 1, .reusable = true}, SHIFT(2804), + [6498] = {.count = 1, .reusable = false}, SHIFT(2806), + [6500] = {.count = 1, .reusable = true}, SHIFT(2806), + [6502] = {.count = 1, .reusable = true}, SHIFT(2805), + [6504] = {.count = 1, .reusable = true}, SHIFT(2807), + [6506] = {.count = 1, .reusable = true}, SHIFT(2808), + [6508] = {.count = 1, .reusable = true}, SHIFT(2810), + [6510] = {.count = 1, .reusable = true}, SHIFT(2811), + [6512] = {.count = 1, .reusable = true}, SHIFT(2812), + [6514] = {.count = 1, .reusable = true}, SHIFT(2813), + [6516] = {.count = 1, .reusable = false}, SHIFT(2814), + [6518] = {.count = 1, .reusable = true}, SHIFT(2814), + [6520] = {.count = 1, .reusable = true}, SHIFT(2815), + [6522] = {.count = 1, .reusable = false}, SHIFT(2816), + [6524] = {.count = 1, .reusable = true}, SHIFT(2816), + [6526] = {.count = 1, .reusable = true}, SHIFT(2817), + [6528] = {.count = 1, .reusable = false}, SHIFT(2818), + [6530] = {.count = 1, .reusable = true}, SHIFT(2818), + [6532] = {.count = 1, .reusable = true}, SHIFT(2819), + [6534] = {.count = 1, .reusable = true}, SHIFT(2820), + [6536] = {.count = 1, .reusable = true}, SHIFT(2821), + [6538] = {.count = 1, .reusable = true}, SHIFT(2822), + [6540] = {.count = 1, .reusable = true}, SHIFT(2823), + [6542] = {.count = 1, .reusable = true}, SHIFT(2824), + [6544] = {.count = 1, .reusable = false}, SHIFT(2825), + [6546] = {.count = 1, .reusable = true}, SHIFT(2825), + [6548] = {.count = 1, .reusable = true}, SHIFT(2826), + [6550] = {.count = 1, .reusable = false}, SHIFT(2827), + [6552] = {.count = 1, .reusable = true}, SHIFT(2827), + [6554] = {.count = 1, .reusable = true}, SHIFT(2828), + [6556] = {.count = 1, .reusable = false}, SHIFT(2829), + [6558] = {.count = 1, .reusable = true}, SHIFT(2829), + [6560] = {.count = 1, .reusable = true}, SHIFT(2830), + [6562] = {.count = 1, .reusable = true}, SHIFT(2831), + [6564] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2729), + [6567] = {.count = 1, .reusable = false}, SHIFT(2832), + [6569] = {.count = 1, .reusable = true}, SHIFT(2833), + [6571] = {.count = 1, .reusable = false}, SHIFT(2834), + [6573] = {.count = 1, .reusable = true}, SHIFT(2835), + [6575] = {.count = 1, .reusable = true}, SHIFT(2837), + [6577] = {.count = 1, .reusable = true}, SHIFT(2838), + [6579] = {.count = 1, .reusable = true}, SHIFT(2839), + [6581] = {.count = 1, .reusable = true}, SHIFT(2840), + [6583] = {.count = 1, .reusable = false}, SHIFT(2842), + [6585] = {.count = 1, .reusable = true}, SHIFT(2842), + [6587] = {.count = 1, .reusable = true}, SHIFT(2841), + [6589] = {.count = 1, .reusable = true}, SHIFT(2843), + [6591] = {.count = 1, .reusable = false}, SHIFT(2845), + [6593] = {.count = 1, .reusable = true}, SHIFT(2845), + [6595] = {.count = 1, .reusable = true}, SHIFT(2844), + [6597] = {.count = 1, .reusable = false}, SHIFT(2847), + [6599] = {.count = 1, .reusable = true}, SHIFT(2847), + [6601] = {.count = 1, .reusable = true}, SHIFT(2846), + [6603] = {.count = 1, .reusable = true}, SHIFT(2848), + [6605] = {.count = 1, .reusable = true}, SHIFT(2849), + [6607] = {.count = 1, .reusable = true}, SHIFT(2850), + [6609] = {.count = 1, .reusable = true}, SHIFT(2851), + [6611] = {.count = 1, .reusable = true}, SHIFT(2852), + [6613] = {.count = 1, .reusable = true}, SHIFT(2853), + [6615] = {.count = 1, .reusable = true}, SHIFT(2854), + [6617] = {.count = 1, .reusable = true}, SHIFT(2855), + [6619] = {.count = 1, .reusable = true}, SHIFT(2856), + [6621] = {.count = 1, .reusable = true}, SHIFT(2857), + [6623] = {.count = 1, .reusable = true}, SHIFT(2858), + [6625] = {.count = 1, .reusable = true}, SHIFT(2859), + [6627] = {.count = 1, .reusable = false}, SHIFT(2860), + [6629] = {.count = 1, .reusable = true}, SHIFT(2860), + [6631] = {.count = 1, .reusable = false}, SHIFT(2861), + [6633] = {.count = 1, .reusable = true}, SHIFT(2862), + [6635] = {.count = 1, .reusable = true}, SHIFT(2864), + [6637] = {.count = 1, .reusable = true}, SHIFT(2865), + [6639] = {.count = 1, .reusable = true}, SHIFT(2866), + [6641] = {.count = 1, .reusable = true}, SHIFT(2867), + [6643] = {.count = 1, .reusable = true}, SHIFT(2868), + [6645] = {.count = 1, .reusable = true}, SHIFT(2869), + [6647] = {.count = 1, .reusable = false}, SHIFT(2870), + [6649] = {.count = 1, .reusable = true}, SHIFT(2870), + [6651] = {.count = 1, .reusable = true}, SHIFT(2871), + [6653] = {.count = 1, .reusable = false}, SHIFT(2872), + [6655] = {.count = 1, .reusable = true}, SHIFT(2872), + [6657] = {.count = 1, .reusable = true}, SHIFT(2873), + [6659] = {.count = 1, .reusable = true}, SHIFT(2874), + [6661] = {.count = 1, .reusable = true}, SHIFT(2875), + [6663] = {.count = 1, .reusable = true}, SHIFT(2876), + [6665] = {.count = 1, .reusable = false}, SHIFT(2877), + [6667] = {.count = 1, .reusable = true}, SHIFT(2877), + [6669] = {.count = 1, .reusable = true}, SHIFT(2878), + [6671] = {.count = 1, .reusable = false}, SHIFT(2879), + [6673] = {.count = 1, .reusable = true}, SHIFT(2879), + [6675] = {.count = 1, .reusable = true}, SHIFT(2880), + [6677] = {.count = 1, .reusable = false}, SHIFT(2881), + [6679] = {.count = 1, .reusable = true}, SHIFT(2881), + [6681] = {.count = 1, .reusable = true}, SHIFT(2882), + [6683] = {.count = 1, .reusable = true}, SHIFT(2883), + [6685] = {.count = 1, .reusable = true}, SHIFT(2884), + [6687] = {.count = 1, .reusable = true}, SHIFT(2885), + [6689] = {.count = 1, .reusable = true}, SHIFT(2886), }; void *tree_sitter_bash_external_scanner_create();