diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 04817b9..e12a13a 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -28,12 +28,17 @@ Variable expansions echo ${abc} echo ${abc:-def} +echo ${abc:- } +echo ${abc: +} --- (program (command (command_name (word)) (expansion (variable_name))) - (command (command_name (word)) (expansion (variable_name) (word)))) + (command (command_name (word)) (expansion (variable_name) (word))) + (command (command_name (word)) (expansion (variable_name))) + (command (command_name (word)) (expansion (variable_name)))) =================================== Other variable expansion operators diff --git a/grammar.js b/grammar.js index b9c7dfb..c4798be 100644 --- a/grammar.js +++ b/grammar.js @@ -295,7 +295,7 @@ module.exports = grammar({ seq( $._variable_name, choice(':', ':?', '=', ':-', '%', '/'), - $._expression + optional($._expression) ) ), '}' diff --git a/src/grammar.json b/src/grammar.json index 28af4b1..7981c1e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1084,8 +1084,16 @@ ] }, { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] } ] } diff --git a/src/parser.c b/src/parser.c index b511aff..839b789 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 5 -#define STATE_COUNT 1384 +#define STATE_COUNT 1401 #define SYMBOL_COUNT 115 #define ALIAS_COUNT 1 #define TOKEN_COUNT 74 @@ -2976,6 +2976,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(178); if (lookahead == '`') ADVANCE(47); + if (lookahead == '}') + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2985,8 +2987,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && - lookahead != '{' && - lookahead != '}') + lookahead != '{') ADVANCE(60); END_STATE(); case 178: @@ -3661,6 +3662,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 217: + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(132); + if (lookahead == '>') + ADVANCE(133); + if (lookahead == '\\') + ADVANCE(218); + if (lookahead == '`') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(217); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 218: + if (lookahead == '\n') + SKIP(217); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(60); + END_STATE(); + case 219: if (lookahead == '\n') ADVANCE(112); if (lookahead == '\"') @@ -3679,70 +3722,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(132); if (lookahead == '>') ADVANCE(133); - if (lookahead == '\\') - ADVANCE(218); - if (lookahead == '`') - ADVANCE(47); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(217); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != '{' && - lookahead != '}') - ADVANCE(60); - END_STATE(); - case 218: - if (lookahead == '\n') - SKIP(217); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(60); - END_STATE(); - case 219: - if (lookahead == '\"') - ADVANCE(3); - if (lookahead == '#') - ADVANCE(54); - if (lookahead == '$') - ADVANCE(5); - if (lookahead == '&') - ADVANCE(55); - if (lookahead == '\'') - ADVANCE(13); - if (lookahead == '(') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(56); - if (lookahead == '>') - ADVANCE(35); - if (lookahead == '[') - ADVANCE(57); if (lookahead == '\\') ADVANCE(220); if (lookahead == '`') ADVANCE(47); - if (lookahead == 'c') - ADVANCE(62); - if (lookahead == 'f') - ADVANCE(193); - if (lookahead == 'i') - ADVANCE(76); - if (lookahead == 'w') - ADVANCE(78); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(219); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && lookahead != '{' && lookahead != '}') ADVANCE(60); @@ -3764,18 +3753,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(54); if (lookahead == '$') ADVANCE(5); + if (lookahead == '&') + ADVANCE(55); if (lookahead == '\'') ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); if (lookahead == '<') - ADVANCE(132); + ADVANCE(56); if (lookahead == '>') - ADVANCE(133); + ADVANCE(35); + if (lookahead == '[') + ADVANCE(57); if (lookahead == '\\') ADVANCE(222); if (lookahead == '`') ADVANCE(47); - if (lookahead == 'e') - ADVANCE(223); + if (lookahead == 'c') + ADVANCE(62); + if (lookahead == 'f') + ADVANCE(193); + if (lookahead == 'i') + ADVANCE(76); + if (lookahead == 'w') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3800,53 +3801,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(60); END_STATE(); case 223: - ACCEPT_TOKEN(sym_word); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '<') + ADVANCE(132); + if (lookahead == '>') + ADVANCE(133); if (lookahead == '\\') - ADVANCE(59); - if (lookahead == 's') ADVANCE(224); + if (lookahead == '`') + ADVANCE(47); + if (lookahead == 'e') + ADVANCE(225); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(223); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && - lookahead != '>' && - lookahead != '`' && lookahead != '{' && lookahead != '}') ADVANCE(60); END_STATE(); case 224: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(59); - if (lookahead == 'a') - ADVANCE(225); + if (lookahead == '\n') + SKIP(223); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != 'a' && - lookahead != '{' && - lookahead != '}') + lookahead != ' ') ADVANCE(60); END_STATE(); case 225: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(59); - if (lookahead == 'c') + if (lookahead == 's') ADVANCE(226); if (lookahead != 0 && lookahead != '\t' && @@ -3864,6 +3864,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(60); END_STATE(); case 226: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead == 'a') + ADVANCE(227); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != 'a' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(59); + if (lookahead == 'c') + ADVANCE(228); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(60); + END_STATE(); + case 228: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(59); @@ -3882,40 +3925,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(60); END_STATE(); - case 227: - if (lookahead == '#') - ADVANCE(54); - if (lookahead == '\\') - SKIP(228); - if (lookahead == '}') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(227); - END_STATE(); - case 228: - if (lookahead == '\n') - SKIP(227); - END_STATE(); case 229: if (lookahead == '#') ADVANCE(54); - if (lookahead == '&') - ADVANCE(150); - if (lookahead == ')') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(165); - if (lookahead == '>') - ADVANCE(166); if (lookahead == '\\') SKIP(230); - if (lookahead == '`') - ADVANCE(47); - if (lookahead == '|') - ADVANCE(49); + if (lookahead == '}') + ADVANCE(52); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3927,19 +3943,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(229); END_STATE(); case 231: - if (lookahead == '\n') - ADVANCE(112); if (lookahead == '#') ADVANCE(54); if (lookahead == '&') - ADVANCE(125); - if (lookahead == ';') - ADVANCE(27); + ADVANCE(150); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(165); + if (lookahead == '>') + ADVANCE(166); if (lookahead == '\\') SKIP(232); + if (lookahead == '`') + ADVANCE(47); if (lookahead == '|') ADVANCE(49); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(231); @@ -3949,16 +3970,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(231); END_STATE(); case 233: + if (lookahead == '\n') + ADVANCE(112); if (lookahead == '#') ADVANCE(54); - if (lookahead == ')') - ADVANCE(16); + if (lookahead == '&') + ADVANCE(125); + if (lookahead == ';') + ADVANCE(27); if (lookahead == '\\') SKIP(234); if (lookahead == '|') - ADVANCE(216); + ADVANCE(49); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(233); @@ -3970,14 +3994,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 235: if (lookahead == '#') ADVANCE(54); - if (lookahead == '&') - ADVANCE(84); if (lookahead == ')') ADVANCE(16); if (lookahead == '\\') SKIP(236); if (lookahead == '|') - ADVANCE(49); + ADVANCE(216); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3993,10 +4015,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(54); if (lookahead == '&') ADVANCE(84); + if (lookahead == ')') + ADVANCE(16); if (lookahead == '\\') SKIP(238); - if (lookahead == '`') - ADVANCE(47); if (lookahead == '|') ADVANCE(49); if (lookahead == '\t' || @@ -4010,6 +4032,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(237); END_STATE(); case 239: + if (lookahead == '#') + ADVANCE(54); + if (lookahead == '&') + ADVANCE(84); + if (lookahead == '\\') + SKIP(240); + if (lookahead == '`') + ADVANCE(47); + if (lookahead == '|') + ADVANCE(49); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(239); + END_STATE(); + case 240: + if (lookahead == '\n') + SKIP(239); + END_STATE(); + case 241: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') @@ -4031,7 +4074,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(57); if (lookahead == '\\') - ADVANCE(240); + ADVANCE(242); if (lookahead == '`') ADVANCE(47); if (lookahead == 'c') @@ -4046,16 +4089,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(239); + SKIP(241); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != '{' && lookahead != '}') ADVANCE(60); END_STATE(); - case 240: + case 242: if (lookahead == '\n') - SKIP(239); + SKIP(241); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4063,7 +4106,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(60); END_STATE(); - case 241: + case 243: if (lookahead == '#') ADVANCE(54); if (lookahead == '&') @@ -4071,7 +4114,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(16); if (lookahead == '\\') - SKIP(242); + SKIP(244); if (lookahead == '`') ADVANCE(47); if (lookahead == '|') @@ -4080,11 +4123,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(241); + SKIP(243); END_STATE(); - case 242: + case 244: if (lookahead == '\n') - SKIP(241); + SKIP(243); END_STATE(); default: return false; @@ -4376,10 +4419,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [281] = {.lex_state = 83}, [282] = {.lex_state = 129, .external_lex_state = 3}, [283] = {.lex_state = 83}, - [284] = {.lex_state = 104}, + [284] = {.lex_state = 177}, [285] = {.lex_state = 129, .external_lex_state = 3}, [286] = {.lex_state = 83}, - [287] = {.lex_state = 104}, + [287] = {.lex_state = 177}, [288] = {.lex_state = 131, .external_lex_state = 7}, [289] = {.lex_state = 83}, [290] = {.lex_state = 83}, @@ -4483,7 +4526,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [388] = {.lex_state = 154, .external_lex_state = 2}, [389] = {.lex_state = 140, .external_lex_state = 6}, [390] = {.lex_state = 106}, - [391] = {.lex_state = 177, .external_lex_state = 9}, + [391] = {.lex_state = 217, .external_lex_state = 9}, [392] = {.lex_state = 116}, [393] = {.lex_state = 116}, [394] = {.lex_state = 53, .external_lex_state = 2}, @@ -4508,14 +4551,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [413] = {.lex_state = 83}, [414] = {.lex_state = 154, .external_lex_state = 2}, [415] = {.lex_state = 106}, - [416] = {.lex_state = 217, .external_lex_state = 8}, + [416] = {.lex_state = 219, .external_lex_state = 8}, [417] = {.lex_state = 116}, [418] = {.lex_state = 116}, [419] = {.lex_state = 53, .external_lex_state = 2}, [420] = {.lex_state = 53, .external_lex_state = 2}, [421] = {.lex_state = 53, .external_lex_state = 2}, - [422] = {.lex_state = 217, .external_lex_state = 4}, - [423] = {.lex_state = 217, .external_lex_state = 4}, + [422] = {.lex_state = 219, .external_lex_state = 4}, + [423] = {.lex_state = 219, .external_lex_state = 4}, [424] = {.lex_state = 124, .external_lex_state = 4}, [425] = {.lex_state = 179, .external_lex_state = 2}, [426] = {.lex_state = 124, .external_lex_state = 4}, @@ -4523,7 +4566,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [428] = {.lex_state = 179, .external_lex_state = 2}, [429] = {.lex_state = 124, .external_lex_state = 4}, [430] = {.lex_state = 53, .external_lex_state = 2}, - [431] = {.lex_state = 219, .external_lex_state = 2}, + [431] = {.lex_state = 221, .external_lex_state = 2}, [432] = {.lex_state = 185, .external_lex_state = 2}, [433] = {.lex_state = 124, .external_lex_state = 4}, [434] = {.lex_state = 83}, @@ -4533,17 +4576,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [438] = {.lex_state = 83}, [439] = {.lex_state = 135, .external_lex_state = 8}, [440] = {.lex_state = 135, .external_lex_state = 8}, - [441] = {.lex_state = 221}, + [441] = {.lex_state = 223}, [442] = {.lex_state = 135, .external_lex_state = 4}, [443] = {.lex_state = 135, .external_lex_state = 8}, [444] = {.lex_state = 83}, [445] = {.lex_state = 83}, [446] = {.lex_state = 135, .external_lex_state = 8}, [447] = {.lex_state = 83}, - [448] = {.lex_state = 104}, + [448] = {.lex_state = 177}, [449] = {.lex_state = 135, .external_lex_state = 8}, [450] = {.lex_state = 83}, - [451] = {.lex_state = 104}, + [451] = {.lex_state = 177}, [452] = {.lex_state = 135, .external_lex_state = 8}, [453] = {.lex_state = 135, .external_lex_state = 8}, [454] = {.lex_state = 83}, @@ -4572,10 +4615,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [477] = {.lex_state = 83}, [478] = {.lex_state = 199, .external_lex_state = 9}, [479] = {.lex_state = 83}, - [480] = {.lex_state = 104}, + [480] = {.lex_state = 177}, [481] = {.lex_state = 199, .external_lex_state = 9}, [482] = {.lex_state = 83}, - [483] = {.lex_state = 104}, + [483] = {.lex_state = 177}, [484] = {.lex_state = 199, .external_lex_state = 9}, [485] = {.lex_state = 199, .external_lex_state = 9}, [486] = {.lex_state = 145, .external_lex_state = 9}, @@ -4585,10 +4628,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [490] = {.lex_state = 83}, [491] = {.lex_state = 145, .external_lex_state = 9}, [492] = {.lex_state = 83}, - [493] = {.lex_state = 104}, + [493] = {.lex_state = 177}, [494] = {.lex_state = 145, .external_lex_state = 9}, [495] = {.lex_state = 83}, - [496] = {.lex_state = 104}, + [496] = {.lex_state = 177}, [497] = {.lex_state = 145, .external_lex_state = 9}, [498] = {.lex_state = 145, .external_lex_state = 9}, [499] = {.lex_state = 104, .external_lex_state = 10}, @@ -4598,884 +4641,901 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [503] = {.lex_state = 83}, [504] = {.lex_state = 104, .external_lex_state = 10}, [505] = {.lex_state = 83}, - [506] = {.lex_state = 104}, + [506] = {.lex_state = 177}, [507] = {.lex_state = 104, .external_lex_state = 10}, [508] = {.lex_state = 83}, - [509] = {.lex_state = 104}, + [509] = {.lex_state = 177}, [510] = {.lex_state = 104, .external_lex_state = 10}, [511] = {.lex_state = 104, .external_lex_state = 10}, [512] = {.lex_state = 83}, [513] = {.lex_state = 83}, [514] = {.lex_state = 106}, [515] = {.lex_state = 83}, - [516] = {.lex_state = 104}, + [516] = {.lex_state = 177}, [517] = {.lex_state = 106}, [518] = {.lex_state = 83}, - [519] = {.lex_state = 104}, + [519] = {.lex_state = 177}, [520] = {.lex_state = 106}, [521] = {.lex_state = 129, .external_lex_state = 3}, [522] = {.lex_state = 83}, [523] = {.lex_state = 129, .external_lex_state = 3}, [524] = {.lex_state = 83}, [525] = {.lex_state = 83}, - [526] = {.lex_state = 227, .external_lex_state = 9}, - [527] = {.lex_state = 83}, + [526] = {.lex_state = 129, .external_lex_state = 3}, + [527] = {.lex_state = 229, .external_lex_state = 9}, [528] = {.lex_state = 83}, - [529] = {.lex_state = 227, .external_lex_state = 9}, - [530] = {.lex_state = 83}, - [531] = {.lex_state = 154, .external_lex_state = 2}, - [532] = {.lex_state = 177}, - [533] = {.lex_state = 106}, - [534] = {.lex_state = 154, .external_lex_state = 10}, - [535] = {.lex_state = 116}, + [529] = {.lex_state = 83}, + [530] = {.lex_state = 229, .external_lex_state = 9}, + [531] = {.lex_state = 83}, + [532] = {.lex_state = 154, .external_lex_state = 2}, + [533] = {.lex_state = 177}, + [534] = {.lex_state = 106}, + [535] = {.lex_state = 154, .external_lex_state = 10}, [536] = {.lex_state = 116}, - [537] = {.lex_state = 53, .external_lex_state = 2}, + [537] = {.lex_state = 116}, [538] = {.lex_state = 53, .external_lex_state = 2}, [539] = {.lex_state = 53, .external_lex_state = 2}, - [540] = {.lex_state = 104}, - [541] = {.lex_state = 179, .external_lex_state = 2}, - [542] = {.lex_state = 83}, - [543] = {.lex_state = 185, .external_lex_state = 2}, - [544] = {.lex_state = 135, .external_lex_state = 4}, - [545] = {.lex_state = 83}, + [540] = {.lex_state = 53, .external_lex_state = 2}, + [541] = {.lex_state = 104}, + [542] = {.lex_state = 179, .external_lex_state = 2}, + [543] = {.lex_state = 83}, + [544] = {.lex_state = 185, .external_lex_state = 2}, + [545] = {.lex_state = 135, .external_lex_state = 4}, [546] = {.lex_state = 83}, - [547] = {.lex_state = 201, .external_lex_state = 12}, - [548] = {.lex_state = 83}, - [549] = {.lex_state = 197, .external_lex_state = 2}, - [550] = {.lex_state = 124, .external_lex_state = 4}, - [551] = {.lex_state = 140, .external_lex_state = 6}, - [552] = {.lex_state = 83}, - [553] = {.lex_state = 149, .external_lex_state = 11}, + [547] = {.lex_state = 83}, + [548] = {.lex_state = 201, .external_lex_state = 12}, + [549] = {.lex_state = 83}, + [550] = {.lex_state = 197, .external_lex_state = 2}, + [551] = {.lex_state = 124, .external_lex_state = 4}, + [552] = {.lex_state = 140, .external_lex_state = 6}, + [553] = {.lex_state = 83}, [554] = {.lex_state = 149, .external_lex_state = 11}, [555] = {.lex_state = 149, .external_lex_state = 11}, - [556] = {.lex_state = 83}, + [556] = {.lex_state = 149, .external_lex_state = 11}, [557] = {.lex_state = 83}, - [558] = {.lex_state = 149, .external_lex_state = 11}, - [559] = {.lex_state = 83}, - [560] = {.lex_state = 104}, - [561] = {.lex_state = 149, .external_lex_state = 11}, - [562] = {.lex_state = 83}, - [563] = {.lex_state = 104}, - [564] = {.lex_state = 149, .external_lex_state = 11}, + [558] = {.lex_state = 83}, + [559] = {.lex_state = 149, .external_lex_state = 11}, + [560] = {.lex_state = 83}, + [561] = {.lex_state = 177}, + [562] = {.lex_state = 149, .external_lex_state = 11}, + [563] = {.lex_state = 83}, + [564] = {.lex_state = 177}, [565] = {.lex_state = 149, .external_lex_state = 11}, - [566] = {.lex_state = 83}, - [567] = {.lex_state = 229, .external_lex_state = 12}, - [568] = {.lex_state = 162, .external_lex_state = 2}, - [569] = {.lex_state = 53}, - [570] = {.lex_state = 104}, - [571] = {.lex_state = 83}, + [566] = {.lex_state = 149, .external_lex_state = 11}, + [567] = {.lex_state = 83}, + [568] = {.lex_state = 231, .external_lex_state = 12}, + [569] = {.lex_state = 162, .external_lex_state = 2}, + [570] = {.lex_state = 53}, + [571] = {.lex_state = 104}, [572] = {.lex_state = 83}, - [573] = {.lex_state = 154, .external_lex_state = 2}, - [574] = {.lex_state = 83}, - [575] = {.lex_state = 154, .external_lex_state = 2}, - [576] = {.lex_state = 104}, - [577] = {.lex_state = 106}, - [578] = {.lex_state = 205, .external_lex_state = 11}, - [579] = {.lex_state = 116}, + [573] = {.lex_state = 83}, + [574] = {.lex_state = 154, .external_lex_state = 2}, + [575] = {.lex_state = 83}, + [576] = {.lex_state = 154, .external_lex_state = 2}, + [577] = {.lex_state = 104}, + [578] = {.lex_state = 106}, + [579] = {.lex_state = 205, .external_lex_state = 11}, [580] = {.lex_state = 116}, - [581] = {.lex_state = 53, .external_lex_state = 2}, + [581] = {.lex_state = 116}, [582] = {.lex_state = 53, .external_lex_state = 2}, [583] = {.lex_state = 53, .external_lex_state = 2}, - [584] = {.lex_state = 203, .external_lex_state = 12}, + [584] = {.lex_state = 53, .external_lex_state = 2}, [585] = {.lex_state = 203, .external_lex_state = 12}, - [586] = {.lex_state = 211, .external_lex_state = 15}, - [587] = {.lex_state = 203, .external_lex_state = 12}, - [588] = {.lex_state = 149, .external_lex_state = 12}, - [589] = {.lex_state = 205, .external_lex_state = 12}, + [586] = {.lex_state = 203, .external_lex_state = 12}, + [587] = {.lex_state = 211, .external_lex_state = 15}, + [588] = {.lex_state = 203, .external_lex_state = 12}, + [589] = {.lex_state = 149, .external_lex_state = 12}, [590] = {.lex_state = 205, .external_lex_state = 12}, - [591] = {.lex_state = 149, .external_lex_state = 12}, - [592] = {.lex_state = 160, .external_lex_state = 10}, - [593] = {.lex_state = 83}, - [594] = {.lex_state = 207, .external_lex_state = 12}, - [595] = {.lex_state = 156, .external_lex_state = 11}, - [596] = {.lex_state = 83}, - [597] = {.lex_state = 53}, - [598] = {.lex_state = 104}, - [599] = {.lex_state = 160, .external_lex_state = 2}, - [600] = {.lex_state = 83}, - [601] = {.lex_state = 160, .external_lex_state = 2}, - [602] = {.lex_state = 104}, - [603] = {.lex_state = 209, .external_lex_state = 11}, - [604] = {.lex_state = 156, .external_lex_state = 12}, - [605] = {.lex_state = 209, .external_lex_state = 12}, + [591] = {.lex_state = 205, .external_lex_state = 12}, + [592] = {.lex_state = 149, .external_lex_state = 12}, + [593] = {.lex_state = 160, .external_lex_state = 10}, + [594] = {.lex_state = 83}, + [595] = {.lex_state = 207, .external_lex_state = 12}, + [596] = {.lex_state = 156, .external_lex_state = 11}, + [597] = {.lex_state = 83}, + [598] = {.lex_state = 53}, + [599] = {.lex_state = 104}, + [600] = {.lex_state = 160, .external_lex_state = 2}, + [601] = {.lex_state = 83}, + [602] = {.lex_state = 160, .external_lex_state = 2}, + [603] = {.lex_state = 104}, + [604] = {.lex_state = 209, .external_lex_state = 11}, + [605] = {.lex_state = 156, .external_lex_state = 12}, [606] = {.lex_state = 209, .external_lex_state = 12}, - [607] = {.lex_state = 156, .external_lex_state = 12}, - [608] = {.lex_state = 164, .external_lex_state = 5}, - [609] = {.lex_state = 195, .external_lex_state = 5}, - [610] = {.lex_state = 162, .external_lex_state = 2}, - [611] = {.lex_state = 104}, - [612] = {.lex_state = 106}, - [613] = {.lex_state = 231, .external_lex_state = 8}, - [614] = {.lex_state = 116}, + [607] = {.lex_state = 209, .external_lex_state = 12}, + [608] = {.lex_state = 156, .external_lex_state = 12}, + [609] = {.lex_state = 164, .external_lex_state = 5}, + [610] = {.lex_state = 195, .external_lex_state = 5}, + [611] = {.lex_state = 162, .external_lex_state = 2}, + [612] = {.lex_state = 104}, + [613] = {.lex_state = 106}, + [614] = {.lex_state = 233, .external_lex_state = 8}, [615] = {.lex_state = 116}, - [616] = {.lex_state = 53, .external_lex_state = 2}, + [616] = {.lex_state = 116}, [617] = {.lex_state = 53, .external_lex_state = 2}, [618] = {.lex_state = 53, .external_lex_state = 2}, - [619] = {.lex_state = 124, .external_lex_state = 4}, - [620] = {.lex_state = 173, .external_lex_state = 3}, - [621] = {.lex_state = 170, .external_lex_state = 5}, - [622] = {.lex_state = 170, .external_lex_state = 3}, - [623] = {.lex_state = 106}, - [624] = {.lex_state = 104}, - [625] = {.lex_state = 173, .external_lex_state = 3}, - [626] = {.lex_state = 170, .external_lex_state = 3}, + [619] = {.lex_state = 53, .external_lex_state = 2}, + [620] = {.lex_state = 124, .external_lex_state = 4}, + [621] = {.lex_state = 173, .external_lex_state = 3}, + [622] = {.lex_state = 170, .external_lex_state = 5}, + [623] = {.lex_state = 170, .external_lex_state = 3}, + [624] = {.lex_state = 106}, + [625] = {.lex_state = 104}, + [626] = {.lex_state = 173, .external_lex_state = 3}, [627] = {.lex_state = 170, .external_lex_state = 3}, [628] = {.lex_state = 170, .external_lex_state = 3}, - [629] = {.lex_state = 116}, - [630] = {.lex_state = 83}, + [629] = {.lex_state = 170, .external_lex_state = 3}, + [630] = {.lex_state = 116}, [631] = {.lex_state = 83}, [632] = {.lex_state = 83}, - [633] = {.lex_state = 154, .external_lex_state = 2}, - [634] = {.lex_state = 83}, - [635] = {.lex_state = 160, .external_lex_state = 2}, - [636] = {.lex_state = 83}, - [637] = {.lex_state = 154, .external_lex_state = 2}, - [638] = {.lex_state = 211, .external_lex_state = 15}, - [639] = {.lex_state = 170, .external_lex_state = 5}, - [640] = {.lex_state = 116}, + [633] = {.lex_state = 83}, + [634] = {.lex_state = 154, .external_lex_state = 2}, + [635] = {.lex_state = 83}, + [636] = {.lex_state = 160, .external_lex_state = 2}, + [637] = {.lex_state = 83}, + [638] = {.lex_state = 154, .external_lex_state = 2}, + [639] = {.lex_state = 211, .external_lex_state = 15}, + [640] = {.lex_state = 170, .external_lex_state = 5}, [641] = {.lex_state = 116}, - [642] = {.lex_state = 211, .external_lex_state = 15}, - [643] = {.lex_state = 104, .external_lex_state = 2}, - [644] = {.lex_state = 177}, - [645] = {.lex_state = 104, .external_lex_state = 10}, - [646] = {.lex_state = 173, .external_lex_state = 5}, - [647] = {.lex_state = 214, .external_lex_state = 9}, + [642] = {.lex_state = 116}, + [643] = {.lex_state = 211, .external_lex_state = 15}, + [644] = {.lex_state = 104, .external_lex_state = 2}, + [645] = {.lex_state = 177}, + [646] = {.lex_state = 104, .external_lex_state = 10}, + [647] = {.lex_state = 173, .external_lex_state = 5}, [648] = {.lex_state = 214, .external_lex_state = 9}, - [649] = {.lex_state = 175, .external_lex_state = 9}, - [650] = {.lex_state = 83}, + [649] = {.lex_state = 214, .external_lex_state = 9}, + [650] = {.lex_state = 175, .external_lex_state = 9}, [651] = {.lex_state = 83}, - [652] = {.lex_state = 214, .external_lex_state = 9}, - [653] = {.lex_state = 83}, - [654] = {.lex_state = 104}, - [655] = {.lex_state = 214, .external_lex_state = 9}, - [656] = {.lex_state = 83}, - [657] = {.lex_state = 104}, - [658] = {.lex_state = 214, .external_lex_state = 9}, + [652] = {.lex_state = 83}, + [653] = {.lex_state = 214, .external_lex_state = 9}, + [654] = {.lex_state = 83}, + [655] = {.lex_state = 177}, + [656] = {.lex_state = 214, .external_lex_state = 9}, + [657] = {.lex_state = 83}, + [658] = {.lex_state = 177}, [659] = {.lex_state = 214, .external_lex_state = 9}, - [660] = {.lex_state = 177, .external_lex_state = 9}, - [661] = {.lex_state = 106}, - [662] = {.lex_state = 104}, - [663] = {.lex_state = 177, .external_lex_state = 9}, - [664] = {.lex_state = 177, .external_lex_state = 9}, - [665] = {.lex_state = 177, .external_lex_state = 9}, - [666] = {.lex_state = 177, .external_lex_state = 9}, - [667] = {.lex_state = 116}, - [668] = {.lex_state = 83}, + [660] = {.lex_state = 214, .external_lex_state = 9}, + [661] = {.lex_state = 217, .external_lex_state = 9}, + [662] = {.lex_state = 106}, + [663] = {.lex_state = 104}, + [664] = {.lex_state = 217, .external_lex_state = 9}, + [665] = {.lex_state = 217, .external_lex_state = 9}, + [666] = {.lex_state = 217, .external_lex_state = 9}, + [667] = {.lex_state = 217, .external_lex_state = 9}, + [668] = {.lex_state = 116}, [669] = {.lex_state = 83}, [670] = {.lex_state = 83}, - [671] = {.lex_state = 154, .external_lex_state = 2}, - [672] = {.lex_state = 83}, - [673] = {.lex_state = 160, .external_lex_state = 2}, - [674] = {.lex_state = 83}, - [675] = {.lex_state = 154, .external_lex_state = 2}, - [676] = {.lex_state = 140, .external_lex_state = 6}, - [677] = {.lex_state = 177}, - [678] = {.lex_state = 140, .external_lex_state = 14}, + [671] = {.lex_state = 83}, + [672] = {.lex_state = 154, .external_lex_state = 2}, + [673] = {.lex_state = 83}, + [674] = {.lex_state = 160, .external_lex_state = 2}, + [675] = {.lex_state = 83}, + [676] = {.lex_state = 154, .external_lex_state = 2}, + [677] = {.lex_state = 140, .external_lex_state = 6}, + [678] = {.lex_state = 177}, [679] = {.lex_state = 140, .external_lex_state = 14}, - [680] = {.lex_state = 127, .external_lex_state = 14}, - [681] = {.lex_state = 83}, + [680] = {.lex_state = 140, .external_lex_state = 14}, + [681] = {.lex_state = 127, .external_lex_state = 14}, [682] = {.lex_state = 83}, - [683] = {.lex_state = 140, .external_lex_state = 14}, - [684] = {.lex_state = 83}, - [685] = {.lex_state = 104}, - [686] = {.lex_state = 140, .external_lex_state = 14}, - [687] = {.lex_state = 83}, - [688] = {.lex_state = 104}, - [689] = {.lex_state = 140, .external_lex_state = 14}, + [683] = {.lex_state = 83}, + [684] = {.lex_state = 140, .external_lex_state = 14}, + [685] = {.lex_state = 83}, + [686] = {.lex_state = 177}, + [687] = {.lex_state = 140, .external_lex_state = 14}, + [688] = {.lex_state = 83}, + [689] = {.lex_state = 177}, [690] = {.lex_state = 140, .external_lex_state = 14}, - [691] = {.lex_state = 217, .external_lex_state = 8}, - [692] = {.lex_state = 106}, - [693] = {.lex_state = 104}, - [694] = {.lex_state = 217, .external_lex_state = 8}, - [695] = {.lex_state = 217, .external_lex_state = 8}, - [696] = {.lex_state = 217, .external_lex_state = 8}, - [697] = {.lex_state = 217, .external_lex_state = 8}, - [698] = {.lex_state = 116}, - [699] = {.lex_state = 83}, + [691] = {.lex_state = 140, .external_lex_state = 14}, + [692] = {.lex_state = 219, .external_lex_state = 8}, + [693] = {.lex_state = 106}, + [694] = {.lex_state = 104}, + [695] = {.lex_state = 219, .external_lex_state = 8}, + [696] = {.lex_state = 219, .external_lex_state = 8}, + [697] = {.lex_state = 219, .external_lex_state = 8}, + [698] = {.lex_state = 219, .external_lex_state = 8}, + [699] = {.lex_state = 116}, [700] = {.lex_state = 83}, [701] = {.lex_state = 83}, - [702] = {.lex_state = 154, .external_lex_state = 2}, - [703] = {.lex_state = 83}, - [704] = {.lex_state = 160, .external_lex_state = 2}, - [705] = {.lex_state = 83}, - [706] = {.lex_state = 154, .external_lex_state = 2}, - [707] = {.lex_state = 83}, - [708] = {.lex_state = 217, .external_lex_state = 4}, - [709] = {.lex_state = 179, .external_lex_state = 2}, - [710] = {.lex_state = 124, .external_lex_state = 4}, - [711] = {.lex_state = 179, .external_lex_state = 2}, - [712] = {.lex_state = 83}, - [713] = {.lex_state = 219, .external_lex_state = 2}, - [714] = {.lex_state = 124, .external_lex_state = 4}, - [715] = {.lex_state = 127, .external_lex_state = 6}, - [716] = {.lex_state = 219, .external_lex_state = 2}, - [717] = {.lex_state = 185, .external_lex_state = 2}, - [718] = {.lex_state = 124, .external_lex_state = 4}, - [719] = {.lex_state = 83}, - [720] = {.lex_state = 185, .external_lex_state = 2}, - [721] = {.lex_state = 83}, + [702] = {.lex_state = 83}, + [703] = {.lex_state = 154, .external_lex_state = 2}, + [704] = {.lex_state = 83}, + [705] = {.lex_state = 160, .external_lex_state = 2}, + [706] = {.lex_state = 83}, + [707] = {.lex_state = 154, .external_lex_state = 2}, + [708] = {.lex_state = 83}, + [709] = {.lex_state = 219, .external_lex_state = 4}, + [710] = {.lex_state = 179, .external_lex_state = 2}, + [711] = {.lex_state = 124, .external_lex_state = 4}, + [712] = {.lex_state = 179, .external_lex_state = 2}, + [713] = {.lex_state = 83}, + [714] = {.lex_state = 221, .external_lex_state = 2}, + [715] = {.lex_state = 124, .external_lex_state = 4}, + [716] = {.lex_state = 127, .external_lex_state = 6}, + [717] = {.lex_state = 221, .external_lex_state = 2}, + [718] = {.lex_state = 185, .external_lex_state = 2}, + [719] = {.lex_state = 124, .external_lex_state = 4}, + [720] = {.lex_state = 83}, + [721] = {.lex_state = 185, .external_lex_state = 2}, [722] = {.lex_state = 83}, - [723] = {.lex_state = 124, .external_lex_state = 4}, - [724] = {.lex_state = 233, .external_lex_state = 9}, - [725] = {.lex_state = 221}, - [726] = {.lex_state = 214}, - [727] = {.lex_state = 221}, - [728] = {.lex_state = 221}, - [729] = {.lex_state = 135, .external_lex_state = 8}, - [730] = {.lex_state = 83}, - [731] = {.lex_state = 135, .external_lex_state = 8}, - [732] = {.lex_state = 83}, + [723] = {.lex_state = 83}, + [724] = {.lex_state = 124, .external_lex_state = 4}, + [725] = {.lex_state = 235, .external_lex_state = 9}, + [726] = {.lex_state = 223}, + [727] = {.lex_state = 214}, + [728] = {.lex_state = 223}, + [729] = {.lex_state = 223}, + [730] = {.lex_state = 135, .external_lex_state = 8}, + [731] = {.lex_state = 83}, + [732] = {.lex_state = 135, .external_lex_state = 8}, [733] = {.lex_state = 83}, - [734] = {.lex_state = 227, .external_lex_state = 9}, - [735] = {.lex_state = 83}, - [736] = {.lex_state = 83}, - [737] = {.lex_state = 227, .external_lex_state = 9}, + [734] = {.lex_state = 83}, + [735] = {.lex_state = 135, .external_lex_state = 8}, + [736] = {.lex_state = 229, .external_lex_state = 9}, + [737] = {.lex_state = 83}, [738] = {.lex_state = 83}, - [739] = {.lex_state = 164, .external_lex_state = 5}, - [740] = {.lex_state = 140, .external_lex_state = 14}, - [741] = {.lex_state = 83}, - [742] = {.lex_state = 195, .external_lex_state = 5}, - [743] = {.lex_state = 104}, - [744] = {.lex_state = 124, .external_lex_state = 8}, - [745] = {.lex_state = 170, .external_lex_state = 3}, - [746] = {.lex_state = 170, .external_lex_state = 3}, - [747] = {.lex_state = 124, .external_lex_state = 4}, - [748] = {.lex_state = 170, .external_lex_state = 5}, - [749] = {.lex_state = 199, .external_lex_state = 9}, - [750] = {.lex_state = 83}, + [739] = {.lex_state = 229, .external_lex_state = 9}, + [740] = {.lex_state = 83}, + [741] = {.lex_state = 164, .external_lex_state = 5}, + [742] = {.lex_state = 140, .external_lex_state = 14}, + [743] = {.lex_state = 83}, + [744] = {.lex_state = 195, .external_lex_state = 5}, + [745] = {.lex_state = 104}, + [746] = {.lex_state = 124, .external_lex_state = 8}, + [747] = {.lex_state = 170, .external_lex_state = 3}, + [748] = {.lex_state = 170, .external_lex_state = 3}, + [749] = {.lex_state = 124, .external_lex_state = 4}, + [750] = {.lex_state = 170, .external_lex_state = 5}, [751] = {.lex_state = 199, .external_lex_state = 9}, [752] = {.lex_state = 83}, - [753] = {.lex_state = 83}, - [754] = {.lex_state = 227, .external_lex_state = 9}, + [753] = {.lex_state = 199, .external_lex_state = 9}, + [754] = {.lex_state = 83}, [755] = {.lex_state = 83}, - [756] = {.lex_state = 83}, - [757] = {.lex_state = 227, .external_lex_state = 9}, + [756] = {.lex_state = 199, .external_lex_state = 9}, + [757] = {.lex_state = 229, .external_lex_state = 9}, [758] = {.lex_state = 83}, - [759] = {.lex_state = 145, .external_lex_state = 9}, - [760] = {.lex_state = 83}, - [761] = {.lex_state = 145, .external_lex_state = 9}, - [762] = {.lex_state = 83}, + [759] = {.lex_state = 83}, + [760] = {.lex_state = 229, .external_lex_state = 9}, + [761] = {.lex_state = 83}, + [762] = {.lex_state = 145, .external_lex_state = 9}, [763] = {.lex_state = 83}, - [764] = {.lex_state = 227, .external_lex_state = 9}, + [764] = {.lex_state = 145, .external_lex_state = 9}, [765] = {.lex_state = 83}, [766] = {.lex_state = 83}, - [767] = {.lex_state = 227, .external_lex_state = 9}, - [768] = {.lex_state = 83}, - [769] = {.lex_state = 104, .external_lex_state = 10}, + [767] = {.lex_state = 145, .external_lex_state = 9}, + [768] = {.lex_state = 229, .external_lex_state = 9}, + [769] = {.lex_state = 83}, [770] = {.lex_state = 83}, - [771] = {.lex_state = 104, .external_lex_state = 10}, + [771] = {.lex_state = 229, .external_lex_state = 9}, [772] = {.lex_state = 83}, - [773] = {.lex_state = 83}, - [774] = {.lex_state = 227, .external_lex_state = 9}, - [775] = {.lex_state = 83}, + [773] = {.lex_state = 104, .external_lex_state = 10}, + [774] = {.lex_state = 83}, + [775] = {.lex_state = 104, .external_lex_state = 10}, [776] = {.lex_state = 83}, - [777] = {.lex_state = 227, .external_lex_state = 9}, - [778] = {.lex_state = 83}, - [779] = {.lex_state = 106}, + [777] = {.lex_state = 83}, + [778] = {.lex_state = 104, .external_lex_state = 10}, + [779] = {.lex_state = 229, .external_lex_state = 9}, [780] = {.lex_state = 83}, - [781] = {.lex_state = 106}, - [782] = {.lex_state = 83}, + [781] = {.lex_state = 83}, + [782] = {.lex_state = 229, .external_lex_state = 9}, [783] = {.lex_state = 83}, - [784] = {.lex_state = 227, .external_lex_state = 9}, + [784] = {.lex_state = 106}, [785] = {.lex_state = 83}, - [786] = {.lex_state = 83}, - [787] = {.lex_state = 227, .external_lex_state = 9}, + [786] = {.lex_state = 106}, + [787] = {.lex_state = 83}, [788] = {.lex_state = 83}, - [789] = {.lex_state = 83}, - [790] = {.lex_state = 83}, + [789] = {.lex_state = 106}, + [790] = {.lex_state = 229, .external_lex_state = 9}, [791] = {.lex_state = 83}, - [792] = {.lex_state = 129, .external_lex_state = 3}, - [793] = {.lex_state = 227, .external_lex_state = 9}, + [792] = {.lex_state = 83}, + [793] = {.lex_state = 229, .external_lex_state = 9}, [794] = {.lex_state = 83}, - [795] = {.lex_state = 129, .external_lex_state = 3}, - [796] = {.lex_state = 154, .external_lex_state = 2}, - [797] = {.lex_state = 177}, - [798] = {.lex_state = 154, .external_lex_state = 10}, - [799] = {.lex_state = 106}, - [800] = {.lex_state = 104}, - [801] = {.lex_state = 154, .external_lex_state = 10}, - [802] = {.lex_state = 154, .external_lex_state = 10}, - [803] = {.lex_state = 154, .external_lex_state = 10}, + [795] = {.lex_state = 83}, + [796] = {.lex_state = 83}, + [797] = {.lex_state = 83}, + [798] = {.lex_state = 129, .external_lex_state = 3}, + [799] = {.lex_state = 229, .external_lex_state = 9}, + [800] = {.lex_state = 83}, + [801] = {.lex_state = 129, .external_lex_state = 3}, + [802] = {.lex_state = 154, .external_lex_state = 2}, + [803] = {.lex_state = 177}, [804] = {.lex_state = 154, .external_lex_state = 10}, - [805] = {.lex_state = 116}, - [806] = {.lex_state = 83}, - [807] = {.lex_state = 83}, - [808] = {.lex_state = 83}, - [809] = {.lex_state = 154, .external_lex_state = 2}, - [810] = {.lex_state = 83}, - [811] = {.lex_state = 160, .external_lex_state = 2}, + [805] = {.lex_state = 106}, + [806] = {.lex_state = 104}, + [807] = {.lex_state = 154, .external_lex_state = 10}, + [808] = {.lex_state = 154, .external_lex_state = 10}, + [809] = {.lex_state = 154, .external_lex_state = 10}, + [810] = {.lex_state = 154, .external_lex_state = 10}, + [811] = {.lex_state = 116}, [812] = {.lex_state = 83}, - [813] = {.lex_state = 154, .external_lex_state = 2}, - [814] = {.lex_state = 217, .external_lex_state = 4}, - [815] = {.lex_state = 83}, - [816] = {.lex_state = 179, .external_lex_state = 2}, - [817] = {.lex_state = 83}, + [813] = {.lex_state = 83}, + [814] = {.lex_state = 83}, + [815] = {.lex_state = 154, .external_lex_state = 2}, + [816] = {.lex_state = 83}, + [817] = {.lex_state = 160, .external_lex_state = 2}, [818] = {.lex_state = 83}, - [819] = {.lex_state = 185, .external_lex_state = 2}, - [820] = {.lex_state = 83}, - [821] = {.lex_state = 221}, - [822] = {.lex_state = 135, .external_lex_state = 4}, + [819] = {.lex_state = 154, .external_lex_state = 2}, + [820] = {.lex_state = 219, .external_lex_state = 4}, + [821] = {.lex_state = 83}, + [822] = {.lex_state = 179, .external_lex_state = 2}, [823] = {.lex_state = 83}, [824] = {.lex_state = 83}, - [825] = {.lex_state = 83}, - [826] = {.lex_state = 197, .external_lex_state = 2}, - [827] = {.lex_state = 149, .external_lex_state = 11}, - [828] = {.lex_state = 83}, - [829] = {.lex_state = 149, .external_lex_state = 11}, + [825] = {.lex_state = 185, .external_lex_state = 2}, + [826] = {.lex_state = 83}, + [827] = {.lex_state = 223}, + [828] = {.lex_state = 135, .external_lex_state = 4}, + [829] = {.lex_state = 83}, [830] = {.lex_state = 83}, [831] = {.lex_state = 83}, - [832] = {.lex_state = 227, .external_lex_state = 9}, - [833] = {.lex_state = 83}, + [832] = {.lex_state = 197, .external_lex_state = 2}, + [833] = {.lex_state = 149, .external_lex_state = 11}, [834] = {.lex_state = 83}, - [835] = {.lex_state = 227, .external_lex_state = 9}, + [835] = {.lex_state = 149, .external_lex_state = 11}, [836] = {.lex_state = 83}, - [837] = {.lex_state = 201, .external_lex_state = 12}, - [838] = {.lex_state = 229, .external_lex_state = 12}, - [839] = {.lex_state = 104}, - [840] = {.lex_state = 106}, - [841] = {.lex_state = 235, .external_lex_state = 9}, - [842] = {.lex_state = 116}, - [843] = {.lex_state = 116}, - [844] = {.lex_state = 53, .external_lex_state = 2}, - [845] = {.lex_state = 53, .external_lex_state = 2}, - [846] = {.lex_state = 53, .external_lex_state = 2}, - [847] = {.lex_state = 83}, - [848] = {.lex_state = 205, .external_lex_state = 11}, - [849] = {.lex_state = 203, .external_lex_state = 12}, - [850] = {.lex_state = 203, .external_lex_state = 11}, - [851] = {.lex_state = 106}, - [852] = {.lex_state = 104}, - [853] = {.lex_state = 205, .external_lex_state = 11}, - [854] = {.lex_state = 203, .external_lex_state = 11}, - [855] = {.lex_state = 203, .external_lex_state = 11}, - [856] = {.lex_state = 203, .external_lex_state = 11}, - [857] = {.lex_state = 116}, - [858] = {.lex_state = 83}, - [859] = {.lex_state = 83}, - [860] = {.lex_state = 83}, - [861] = {.lex_state = 154, .external_lex_state = 2}, - [862] = {.lex_state = 83}, - [863] = {.lex_state = 160, .external_lex_state = 2}, - [864] = {.lex_state = 83}, - [865] = {.lex_state = 154, .external_lex_state = 2}, - [866] = {.lex_state = 203, .external_lex_state = 12}, - [867] = {.lex_state = 211, .external_lex_state = 15}, - [868] = {.lex_state = 205, .external_lex_state = 12}, - [869] = {.lex_state = 160, .external_lex_state = 10}, - [870] = {.lex_state = 83}, - [871] = {.lex_state = 207, .external_lex_state = 12}, - [872] = {.lex_state = 104}, - [873] = {.lex_state = 237, .external_lex_state = 9}, - [874] = {.lex_state = 209, .external_lex_state = 11}, - [875] = {.lex_state = 209, .external_lex_state = 11}, - [876] = {.lex_state = 209, .external_lex_state = 12}, - [877] = {.lex_state = 124, .external_lex_state = 4}, - [878] = {.lex_state = 231, .external_lex_state = 8}, - [879] = {.lex_state = 124, .external_lex_state = 4}, - [880] = {.lex_state = 124, .external_lex_state = 8}, - [881] = {.lex_state = 106}, - [882] = {.lex_state = 104}, - [883] = {.lex_state = 231, .external_lex_state = 8}, - [884] = {.lex_state = 124, .external_lex_state = 8}, - [885] = {.lex_state = 124, .external_lex_state = 8}, - [886] = {.lex_state = 124, .external_lex_state = 8}, - [887] = {.lex_state = 116}, - [888] = {.lex_state = 83}, - [889] = {.lex_state = 83}, - [890] = {.lex_state = 83}, - [891] = {.lex_state = 154, .external_lex_state = 2}, - [892] = {.lex_state = 83}, - [893] = {.lex_state = 160, .external_lex_state = 2}, - [894] = {.lex_state = 83}, - [895] = {.lex_state = 154, .external_lex_state = 2}, - [896] = {.lex_state = 170, .external_lex_state = 3}, - [897] = {.lex_state = 170, .external_lex_state = 3}, - [898] = {.lex_state = 173, .external_lex_state = 3}, + [837] = {.lex_state = 83}, + [838] = {.lex_state = 149, .external_lex_state = 11}, + [839] = {.lex_state = 229, .external_lex_state = 9}, + [840] = {.lex_state = 83}, + [841] = {.lex_state = 83}, + [842] = {.lex_state = 229, .external_lex_state = 9}, + [843] = {.lex_state = 83}, + [844] = {.lex_state = 201, .external_lex_state = 12}, + [845] = {.lex_state = 231, .external_lex_state = 12}, + [846] = {.lex_state = 104}, + [847] = {.lex_state = 106}, + [848] = {.lex_state = 237, .external_lex_state = 9}, + [849] = {.lex_state = 116}, + [850] = {.lex_state = 116}, + [851] = {.lex_state = 53, .external_lex_state = 2}, + [852] = {.lex_state = 53, .external_lex_state = 2}, + [853] = {.lex_state = 53, .external_lex_state = 2}, + [854] = {.lex_state = 83}, + [855] = {.lex_state = 205, .external_lex_state = 11}, + [856] = {.lex_state = 203, .external_lex_state = 12}, + [857] = {.lex_state = 203, .external_lex_state = 11}, + [858] = {.lex_state = 106}, + [859] = {.lex_state = 104}, + [860] = {.lex_state = 205, .external_lex_state = 11}, + [861] = {.lex_state = 203, .external_lex_state = 11}, + [862] = {.lex_state = 203, .external_lex_state = 11}, + [863] = {.lex_state = 203, .external_lex_state = 11}, + [864] = {.lex_state = 116}, + [865] = {.lex_state = 83}, + [866] = {.lex_state = 83}, + [867] = {.lex_state = 83}, + [868] = {.lex_state = 154, .external_lex_state = 2}, + [869] = {.lex_state = 83}, + [870] = {.lex_state = 160, .external_lex_state = 2}, + [871] = {.lex_state = 83}, + [872] = {.lex_state = 154, .external_lex_state = 2}, + [873] = {.lex_state = 203, .external_lex_state = 12}, + [874] = {.lex_state = 211, .external_lex_state = 15}, + [875] = {.lex_state = 205, .external_lex_state = 12}, + [876] = {.lex_state = 160, .external_lex_state = 10}, + [877] = {.lex_state = 83}, + [878] = {.lex_state = 207, .external_lex_state = 12}, + [879] = {.lex_state = 104}, + [880] = {.lex_state = 239, .external_lex_state = 9}, + [881] = {.lex_state = 209, .external_lex_state = 11}, + [882] = {.lex_state = 209, .external_lex_state = 11}, + [883] = {.lex_state = 209, .external_lex_state = 12}, + [884] = {.lex_state = 124, .external_lex_state = 4}, + [885] = {.lex_state = 233, .external_lex_state = 8}, + [886] = {.lex_state = 124, .external_lex_state = 4}, + [887] = {.lex_state = 124, .external_lex_state = 8}, + [888] = {.lex_state = 106}, + [889] = {.lex_state = 104}, + [890] = {.lex_state = 233, .external_lex_state = 8}, + [891] = {.lex_state = 124, .external_lex_state = 8}, + [892] = {.lex_state = 124, .external_lex_state = 8}, + [893] = {.lex_state = 124, .external_lex_state = 8}, + [894] = {.lex_state = 116}, + [895] = {.lex_state = 83}, + [896] = {.lex_state = 83}, + [897] = {.lex_state = 83}, + [898] = {.lex_state = 154, .external_lex_state = 2}, [899] = {.lex_state = 83}, - [900] = {.lex_state = 83}, - [901] = {.lex_state = 170, .external_lex_state = 3}, - [902] = {.lex_state = 83}, - [903] = {.lex_state = 104}, + [900] = {.lex_state = 160, .external_lex_state = 2}, + [901] = {.lex_state = 83}, + [902] = {.lex_state = 154, .external_lex_state = 2}, + [903] = {.lex_state = 170, .external_lex_state = 3}, [904] = {.lex_state = 170, .external_lex_state = 3}, - [905] = {.lex_state = 83}, - [906] = {.lex_state = 104}, - [907] = {.lex_state = 170, .external_lex_state = 3}, + [905] = {.lex_state = 173, .external_lex_state = 3}, + [906] = {.lex_state = 83}, + [907] = {.lex_state = 83}, [908] = {.lex_state = 170, .external_lex_state = 3}, - [909] = {.lex_state = 211, .external_lex_state = 15}, - [910] = {.lex_state = 211, .external_lex_state = 15}, - [911] = {.lex_state = 211, .external_lex_state = 15}, - [912] = {.lex_state = 116}, - [913] = {.lex_state = 83}, - [914] = {.lex_state = 83}, - [915] = {.lex_state = 170, .external_lex_state = 5}, + [909] = {.lex_state = 83}, + [910] = {.lex_state = 177}, + [911] = {.lex_state = 170, .external_lex_state = 3}, + [912] = {.lex_state = 83}, + [913] = {.lex_state = 177}, + [914] = {.lex_state = 170, .external_lex_state = 3}, + [915] = {.lex_state = 170, .external_lex_state = 3}, [916] = {.lex_state = 211, .external_lex_state = 15}, - [917] = {.lex_state = 104, .external_lex_state = 2}, - [918] = {.lex_state = 177}, - [919] = {.lex_state = 214, .external_lex_state = 9}, + [917] = {.lex_state = 211, .external_lex_state = 15}, + [918] = {.lex_state = 211, .external_lex_state = 15}, + [919] = {.lex_state = 116}, [920] = {.lex_state = 83}, - [921] = {.lex_state = 214, .external_lex_state = 9}, - [922] = {.lex_state = 83}, - [923] = {.lex_state = 83}, - [924] = {.lex_state = 227, .external_lex_state = 9}, - [925] = {.lex_state = 83}, - [926] = {.lex_state = 83}, - [927] = {.lex_state = 227, .external_lex_state = 9}, - [928] = {.lex_state = 83}, - [929] = {.lex_state = 177, .external_lex_state = 9}, - [930] = {.lex_state = 177, .external_lex_state = 9}, - [931] = {.lex_state = 177, .external_lex_state = 9}, - [932] = {.lex_state = 83}, + [921] = {.lex_state = 83}, + [922] = {.lex_state = 170, .external_lex_state = 5}, + [923] = {.lex_state = 211, .external_lex_state = 15}, + [924] = {.lex_state = 104, .external_lex_state = 2}, + [925] = {.lex_state = 177}, + [926] = {.lex_state = 214, .external_lex_state = 9}, + [927] = {.lex_state = 83}, + [928] = {.lex_state = 214, .external_lex_state = 9}, + [929] = {.lex_state = 83}, + [930] = {.lex_state = 83}, + [931] = {.lex_state = 214, .external_lex_state = 9}, + [932] = {.lex_state = 229, .external_lex_state = 9}, [933] = {.lex_state = 83}, - [934] = {.lex_state = 177, .external_lex_state = 9}, - [935] = {.lex_state = 83}, - [936] = {.lex_state = 104}, - [937] = {.lex_state = 177, .external_lex_state = 9}, - [938] = {.lex_state = 83}, - [939] = {.lex_state = 104}, - [940] = {.lex_state = 177, .external_lex_state = 9}, - [941] = {.lex_state = 177, .external_lex_state = 9}, - [942] = {.lex_state = 140, .external_lex_state = 14}, + [934] = {.lex_state = 83}, + [935] = {.lex_state = 229, .external_lex_state = 9}, + [936] = {.lex_state = 83}, + [937] = {.lex_state = 217, .external_lex_state = 9}, + [938] = {.lex_state = 217, .external_lex_state = 9}, + [939] = {.lex_state = 217, .external_lex_state = 9}, + [940] = {.lex_state = 83}, + [941] = {.lex_state = 83}, + [942] = {.lex_state = 217, .external_lex_state = 9}, [943] = {.lex_state = 83}, - [944] = {.lex_state = 140, .external_lex_state = 14}, - [945] = {.lex_state = 83}, + [944] = {.lex_state = 177}, + [945] = {.lex_state = 217, .external_lex_state = 9}, [946] = {.lex_state = 83}, - [947] = {.lex_state = 227, .external_lex_state = 9}, - [948] = {.lex_state = 83}, - [949] = {.lex_state = 83}, - [950] = {.lex_state = 227, .external_lex_state = 9}, + [947] = {.lex_state = 177}, + [948] = {.lex_state = 217, .external_lex_state = 9}, + [949] = {.lex_state = 217, .external_lex_state = 9}, + [950] = {.lex_state = 140, .external_lex_state = 14}, [951] = {.lex_state = 83}, - [952] = {.lex_state = 217, .external_lex_state = 8}, - [953] = {.lex_state = 217, .external_lex_state = 8}, - [954] = {.lex_state = 217, .external_lex_state = 8}, - [955] = {.lex_state = 83}, - [956] = {.lex_state = 83}, - [957] = {.lex_state = 217, .external_lex_state = 8}, + [952] = {.lex_state = 140, .external_lex_state = 14}, + [953] = {.lex_state = 83}, + [954] = {.lex_state = 83}, + [955] = {.lex_state = 140, .external_lex_state = 14}, + [956] = {.lex_state = 229, .external_lex_state = 9}, + [957] = {.lex_state = 83}, [958] = {.lex_state = 83}, - [959] = {.lex_state = 104}, - [960] = {.lex_state = 217, .external_lex_state = 8}, - [961] = {.lex_state = 83}, - [962] = {.lex_state = 104}, - [963] = {.lex_state = 217, .external_lex_state = 8}, - [964] = {.lex_state = 217, .external_lex_state = 8}, - [965] = {.lex_state = 124, .external_lex_state = 4}, - [966] = {.lex_state = 185, .external_lex_state = 2}, - [967] = {.lex_state = 219, .external_lex_state = 2}, - [968] = {.lex_state = 219, .external_lex_state = 2}, - [969] = {.lex_state = 124, .external_lex_state = 4}, + [959] = {.lex_state = 229, .external_lex_state = 9}, + [960] = {.lex_state = 83}, + [961] = {.lex_state = 219, .external_lex_state = 8}, + [962] = {.lex_state = 219, .external_lex_state = 8}, + [963] = {.lex_state = 219, .external_lex_state = 8}, + [964] = {.lex_state = 83}, + [965] = {.lex_state = 83}, + [966] = {.lex_state = 219, .external_lex_state = 8}, + [967] = {.lex_state = 83}, + [968] = {.lex_state = 177}, + [969] = {.lex_state = 219, .external_lex_state = 8}, [970] = {.lex_state = 83}, - [971] = {.lex_state = 104}, - [972] = {.lex_state = 239, .external_lex_state = 2}, - [973] = {.lex_state = 214}, - [974] = {.lex_state = 233, .external_lex_state = 9}, - [975] = {.lex_state = 124, .external_lex_state = 4}, - [976] = {.lex_state = 221}, - [977] = {.lex_state = 221}, - [978] = {.lex_state = 83}, + [971] = {.lex_state = 177}, + [972] = {.lex_state = 219, .external_lex_state = 8}, + [973] = {.lex_state = 219, .external_lex_state = 8}, + [974] = {.lex_state = 124, .external_lex_state = 4}, + [975] = {.lex_state = 185, .external_lex_state = 2}, + [976] = {.lex_state = 221, .external_lex_state = 2}, + [977] = {.lex_state = 221, .external_lex_state = 2}, + [978] = {.lex_state = 124, .external_lex_state = 4}, [979] = {.lex_state = 83}, - [980] = {.lex_state = 83}, - [981] = {.lex_state = 135, .external_lex_state = 8}, - [982] = {.lex_state = 83}, - [983] = {.lex_state = 135, .external_lex_state = 8}, + [980] = {.lex_state = 104}, + [981] = {.lex_state = 241, .external_lex_state = 2}, + [982] = {.lex_state = 214}, + [983] = {.lex_state = 235, .external_lex_state = 9}, [984] = {.lex_state = 124, .external_lex_state = 4}, - [985] = {.lex_state = 140, .external_lex_state = 14}, - [986] = {.lex_state = 195, .external_lex_state = 5}, - [987] = {.lex_state = 124, .external_lex_state = 8}, - [988] = {.lex_state = 124, .external_lex_state = 8}, - [989] = {.lex_state = 170, .external_lex_state = 3}, - [990] = {.lex_state = 83}, + [985] = {.lex_state = 223}, + [986] = {.lex_state = 223}, + [987] = {.lex_state = 83}, + [988] = {.lex_state = 83}, + [989] = {.lex_state = 83}, + [990] = {.lex_state = 135, .external_lex_state = 8}, [991] = {.lex_state = 83}, - [992] = {.lex_state = 83}, - [993] = {.lex_state = 199, .external_lex_state = 9}, - [994] = {.lex_state = 83}, - [995] = {.lex_state = 199, .external_lex_state = 9}, - [996] = {.lex_state = 83}, - [997] = {.lex_state = 83}, - [998] = {.lex_state = 83}, - [999] = {.lex_state = 145, .external_lex_state = 9}, + [992] = {.lex_state = 135, .external_lex_state = 8}, + [993] = {.lex_state = 124, .external_lex_state = 4}, + [994] = {.lex_state = 140, .external_lex_state = 14}, + [995] = {.lex_state = 195, .external_lex_state = 5}, + [996] = {.lex_state = 124, .external_lex_state = 8}, + [997] = {.lex_state = 124, .external_lex_state = 8}, + [998] = {.lex_state = 170, .external_lex_state = 3}, + [999] = {.lex_state = 83}, [1000] = {.lex_state = 83}, - [1001] = {.lex_state = 145, .external_lex_state = 9}, - [1002] = {.lex_state = 83}, + [1001] = {.lex_state = 83}, + [1002] = {.lex_state = 199, .external_lex_state = 9}, [1003] = {.lex_state = 83}, - [1004] = {.lex_state = 83}, - [1005] = {.lex_state = 104, .external_lex_state = 10}, + [1004] = {.lex_state = 199, .external_lex_state = 9}, + [1005] = {.lex_state = 83}, [1006] = {.lex_state = 83}, - [1007] = {.lex_state = 104, .external_lex_state = 10}, - [1008] = {.lex_state = 83}, + [1007] = {.lex_state = 83}, + [1008] = {.lex_state = 145, .external_lex_state = 9}, [1009] = {.lex_state = 83}, - [1010] = {.lex_state = 83}, - [1011] = {.lex_state = 106}, + [1010] = {.lex_state = 145, .external_lex_state = 9}, + [1011] = {.lex_state = 83}, [1012] = {.lex_state = 83}, - [1013] = {.lex_state = 106}, - [1014] = {.lex_state = 83}, + [1013] = {.lex_state = 83}, + [1014] = {.lex_state = 104, .external_lex_state = 10}, [1015] = {.lex_state = 83}, - [1016] = {.lex_state = 129, .external_lex_state = 3}, - [1017] = {.lex_state = 227, .external_lex_state = 9}, - [1018] = {.lex_state = 129, .external_lex_state = 3}, - [1019] = {.lex_state = 154, .external_lex_state = 2}, - [1020] = {.lex_state = 154, .external_lex_state = 10}, - [1021] = {.lex_state = 154, .external_lex_state = 10}, - [1022] = {.lex_state = 154, .external_lex_state = 10}, + [1016] = {.lex_state = 104, .external_lex_state = 10}, + [1017] = {.lex_state = 83}, + [1018] = {.lex_state = 83}, + [1019] = {.lex_state = 83}, + [1020] = {.lex_state = 106}, + [1021] = {.lex_state = 83}, + [1022] = {.lex_state = 106}, [1023] = {.lex_state = 83}, [1024] = {.lex_state = 83}, - [1025] = {.lex_state = 154, .external_lex_state = 10}, - [1026] = {.lex_state = 83}, - [1027] = {.lex_state = 104}, - [1028] = {.lex_state = 154, .external_lex_state = 10}, - [1029] = {.lex_state = 83}, - [1030] = {.lex_state = 104}, + [1025] = {.lex_state = 129, .external_lex_state = 3}, + [1026] = {.lex_state = 229, .external_lex_state = 9}, + [1027] = {.lex_state = 129, .external_lex_state = 3}, + [1028] = {.lex_state = 154, .external_lex_state = 2}, + [1029] = {.lex_state = 154, .external_lex_state = 10}, + [1030] = {.lex_state = 154, .external_lex_state = 10}, [1031] = {.lex_state = 154, .external_lex_state = 10}, - [1032] = {.lex_state = 154, .external_lex_state = 10}, + [1032] = {.lex_state = 83}, [1033] = {.lex_state = 83}, - [1034] = {.lex_state = 83}, + [1034] = {.lex_state = 154, .external_lex_state = 10}, [1035] = {.lex_state = 83}, - [1036] = {.lex_state = 83}, - [1037] = {.lex_state = 83}, + [1036] = {.lex_state = 177}, + [1037] = {.lex_state = 154, .external_lex_state = 10}, [1038] = {.lex_state = 83}, - [1039] = {.lex_state = 221}, - [1040] = {.lex_state = 221}, - [1041] = {.lex_state = 201, .external_lex_state = 12}, + [1039] = {.lex_state = 177}, + [1040] = {.lex_state = 154, .external_lex_state = 10}, + [1041] = {.lex_state = 154, .external_lex_state = 10}, [1042] = {.lex_state = 83}, [1043] = {.lex_state = 83}, [1044] = {.lex_state = 83}, [1045] = {.lex_state = 83}, - [1046] = {.lex_state = 149, .external_lex_state = 11}, + [1046] = {.lex_state = 83}, [1047] = {.lex_state = 83}, - [1048] = {.lex_state = 149, .external_lex_state = 11}, - [1049] = {.lex_state = 83}, - [1050] = {.lex_state = 235, .external_lex_state = 9}, + [1048] = {.lex_state = 223}, + [1049] = {.lex_state = 223}, + [1050] = {.lex_state = 201, .external_lex_state = 12}, [1051] = {.lex_state = 83}, - [1052] = {.lex_state = 241, .external_lex_state = 9}, - [1053] = {.lex_state = 106}, - [1054] = {.lex_state = 104}, - [1055] = {.lex_state = 235, .external_lex_state = 9}, - [1056] = {.lex_state = 241, .external_lex_state = 9}, - [1057] = {.lex_state = 241, .external_lex_state = 9}, - [1058] = {.lex_state = 241, .external_lex_state = 9}, - [1059] = {.lex_state = 116}, + [1052] = {.lex_state = 83}, + [1053] = {.lex_state = 83}, + [1054] = {.lex_state = 83}, + [1055] = {.lex_state = 149, .external_lex_state = 11}, + [1056] = {.lex_state = 83}, + [1057] = {.lex_state = 149, .external_lex_state = 11}, + [1058] = {.lex_state = 83}, + [1059] = {.lex_state = 237, .external_lex_state = 9}, [1060] = {.lex_state = 83}, - [1061] = {.lex_state = 83}, - [1062] = {.lex_state = 83}, - [1063] = {.lex_state = 154, .external_lex_state = 2}, - [1064] = {.lex_state = 83}, - [1065] = {.lex_state = 160, .external_lex_state = 2}, - [1066] = {.lex_state = 83}, - [1067] = {.lex_state = 154, .external_lex_state = 2}, - [1068] = {.lex_state = 203, .external_lex_state = 11}, - [1069] = {.lex_state = 203, .external_lex_state = 11}, - [1070] = {.lex_state = 205, .external_lex_state = 11}, + [1061] = {.lex_state = 243, .external_lex_state = 9}, + [1062] = {.lex_state = 106}, + [1063] = {.lex_state = 104}, + [1064] = {.lex_state = 237, .external_lex_state = 9}, + [1065] = {.lex_state = 243, .external_lex_state = 9}, + [1066] = {.lex_state = 243, .external_lex_state = 9}, + [1067] = {.lex_state = 243, .external_lex_state = 9}, + [1068] = {.lex_state = 116}, + [1069] = {.lex_state = 83}, + [1070] = {.lex_state = 83}, [1071] = {.lex_state = 83}, - [1072] = {.lex_state = 83}, - [1073] = {.lex_state = 203, .external_lex_state = 11}, - [1074] = {.lex_state = 83}, - [1075] = {.lex_state = 104}, - [1076] = {.lex_state = 203, .external_lex_state = 11}, - [1077] = {.lex_state = 83}, - [1078] = {.lex_state = 104}, - [1079] = {.lex_state = 203, .external_lex_state = 11}, - [1080] = {.lex_state = 203, .external_lex_state = 11}, - [1081] = {.lex_state = 203, .external_lex_state = 12}, - [1082] = {.lex_state = 160, .external_lex_state = 10}, - [1083] = {.lex_state = 207, .external_lex_state = 12}, - [1084] = {.lex_state = 237, .external_lex_state = 9}, - [1085] = {.lex_state = 237, .external_lex_state = 9}, - [1086] = {.lex_state = 209, .external_lex_state = 11}, - [1087] = {.lex_state = 124, .external_lex_state = 8}, - [1088] = {.lex_state = 124, .external_lex_state = 8}, - [1089] = {.lex_state = 231, .external_lex_state = 8}, - [1090] = {.lex_state = 83}, - [1091] = {.lex_state = 83}, - [1092] = {.lex_state = 124, .external_lex_state = 8}, - [1093] = {.lex_state = 83}, - [1094] = {.lex_state = 104}, - [1095] = {.lex_state = 124, .external_lex_state = 8}, - [1096] = {.lex_state = 83}, - [1097] = {.lex_state = 104}, - [1098] = {.lex_state = 124, .external_lex_state = 8}, - [1099] = {.lex_state = 124, .external_lex_state = 8}, - [1100] = {.lex_state = 170, .external_lex_state = 3}, - [1101] = {.lex_state = 83}, - [1102] = {.lex_state = 170, .external_lex_state = 3}, - [1103] = {.lex_state = 83}, - [1104] = {.lex_state = 83}, - [1105] = {.lex_state = 227, .external_lex_state = 9}, - [1106] = {.lex_state = 83}, - [1107] = {.lex_state = 83}, - [1108] = {.lex_state = 227, .external_lex_state = 9}, - [1109] = {.lex_state = 83}, + [1072] = {.lex_state = 154, .external_lex_state = 2}, + [1073] = {.lex_state = 83}, + [1074] = {.lex_state = 160, .external_lex_state = 2}, + [1075] = {.lex_state = 83}, + [1076] = {.lex_state = 154, .external_lex_state = 2}, + [1077] = {.lex_state = 203, .external_lex_state = 11}, + [1078] = {.lex_state = 203, .external_lex_state = 11}, + [1079] = {.lex_state = 205, .external_lex_state = 11}, + [1080] = {.lex_state = 83}, + [1081] = {.lex_state = 83}, + [1082] = {.lex_state = 203, .external_lex_state = 11}, + [1083] = {.lex_state = 83}, + [1084] = {.lex_state = 177}, + [1085] = {.lex_state = 203, .external_lex_state = 11}, + [1086] = {.lex_state = 83}, + [1087] = {.lex_state = 177}, + [1088] = {.lex_state = 203, .external_lex_state = 11}, + [1089] = {.lex_state = 203, .external_lex_state = 11}, + [1090] = {.lex_state = 203, .external_lex_state = 12}, + [1091] = {.lex_state = 160, .external_lex_state = 10}, + [1092] = {.lex_state = 207, .external_lex_state = 12}, + [1093] = {.lex_state = 239, .external_lex_state = 9}, + [1094] = {.lex_state = 239, .external_lex_state = 9}, + [1095] = {.lex_state = 209, .external_lex_state = 11}, + [1096] = {.lex_state = 124, .external_lex_state = 8}, + [1097] = {.lex_state = 124, .external_lex_state = 8}, + [1098] = {.lex_state = 233, .external_lex_state = 8}, + [1099] = {.lex_state = 83}, + [1100] = {.lex_state = 83}, + [1101] = {.lex_state = 124, .external_lex_state = 8}, + [1102] = {.lex_state = 83}, + [1103] = {.lex_state = 177}, + [1104] = {.lex_state = 124, .external_lex_state = 8}, + [1105] = {.lex_state = 83}, + [1106] = {.lex_state = 177}, + [1107] = {.lex_state = 124, .external_lex_state = 8}, + [1108] = {.lex_state = 124, .external_lex_state = 8}, + [1109] = {.lex_state = 170, .external_lex_state = 3}, [1110] = {.lex_state = 83}, - [1111] = {.lex_state = 83}, - [1112] = {.lex_state = 211, .external_lex_state = 15}, + [1111] = {.lex_state = 170, .external_lex_state = 3}, + [1112] = {.lex_state = 83}, [1113] = {.lex_state = 83}, - [1114] = {.lex_state = 104}, - [1115] = {.lex_state = 211, .external_lex_state = 15}, + [1114] = {.lex_state = 170, .external_lex_state = 3}, + [1115] = {.lex_state = 229, .external_lex_state = 9}, [1116] = {.lex_state = 83}, - [1117] = {.lex_state = 104}, - [1118] = {.lex_state = 104, .external_lex_state = 2}, + [1117] = {.lex_state = 83}, + [1118] = {.lex_state = 229, .external_lex_state = 9}, [1119] = {.lex_state = 83}, [1120] = {.lex_state = 83}, [1121] = {.lex_state = 83}, - [1122] = {.lex_state = 214, .external_lex_state = 9}, + [1122] = {.lex_state = 211, .external_lex_state = 15}, [1123] = {.lex_state = 83}, - [1124] = {.lex_state = 214, .external_lex_state = 9}, - [1125] = {.lex_state = 177, .external_lex_state = 9}, + [1124] = {.lex_state = 177}, + [1125] = {.lex_state = 211, .external_lex_state = 15}, [1126] = {.lex_state = 83}, - [1127] = {.lex_state = 177, .external_lex_state = 9}, - [1128] = {.lex_state = 83}, + [1127] = {.lex_state = 177}, + [1128] = {.lex_state = 104, .external_lex_state = 2}, [1129] = {.lex_state = 83}, - [1130] = {.lex_state = 227, .external_lex_state = 9}, + [1130] = {.lex_state = 83}, [1131] = {.lex_state = 83}, - [1132] = {.lex_state = 83}, - [1133] = {.lex_state = 227, .external_lex_state = 9}, - [1134] = {.lex_state = 83}, - [1135] = {.lex_state = 83}, + [1132] = {.lex_state = 214, .external_lex_state = 9}, + [1133] = {.lex_state = 83}, + [1134] = {.lex_state = 214, .external_lex_state = 9}, + [1135] = {.lex_state = 217, .external_lex_state = 9}, [1136] = {.lex_state = 83}, - [1137] = {.lex_state = 83}, - [1138] = {.lex_state = 140, .external_lex_state = 14}, + [1137] = {.lex_state = 217, .external_lex_state = 9}, + [1138] = {.lex_state = 83}, [1139] = {.lex_state = 83}, - [1140] = {.lex_state = 140, .external_lex_state = 14}, - [1141] = {.lex_state = 217, .external_lex_state = 8}, + [1140] = {.lex_state = 217, .external_lex_state = 9}, + [1141] = {.lex_state = 229, .external_lex_state = 9}, [1142] = {.lex_state = 83}, - [1143] = {.lex_state = 217, .external_lex_state = 8}, - [1144] = {.lex_state = 83}, + [1143] = {.lex_state = 83}, + [1144] = {.lex_state = 229, .external_lex_state = 9}, [1145] = {.lex_state = 83}, - [1146] = {.lex_state = 227, .external_lex_state = 9}, + [1146] = {.lex_state = 83}, [1147] = {.lex_state = 83}, [1148] = {.lex_state = 83}, - [1149] = {.lex_state = 227, .external_lex_state = 9}, + [1149] = {.lex_state = 140, .external_lex_state = 14}, [1150] = {.lex_state = 83}, - [1151] = {.lex_state = 185, .external_lex_state = 2}, - [1152] = {.lex_state = 124, .external_lex_state = 4}, - [1153] = {.lex_state = 233, .external_lex_state = 9}, - [1154] = {.lex_state = 214}, - [1155] = {.lex_state = 221}, - [1156] = {.lex_state = 239, .external_lex_state = 2}, - [1157] = {.lex_state = 239, .external_lex_state = 2}, - [1158] = {.lex_state = 214}, - [1159] = {.lex_state = 233, .external_lex_state = 9}, - [1160] = {.lex_state = 124, .external_lex_state = 4}, - [1161] = {.lex_state = 83}, + [1151] = {.lex_state = 140, .external_lex_state = 14}, + [1152] = {.lex_state = 219, .external_lex_state = 8}, + [1153] = {.lex_state = 83}, + [1154] = {.lex_state = 219, .external_lex_state = 8}, + [1155] = {.lex_state = 83}, + [1156] = {.lex_state = 83}, + [1157] = {.lex_state = 219, .external_lex_state = 8}, + [1158] = {.lex_state = 229, .external_lex_state = 9}, + [1159] = {.lex_state = 83}, + [1160] = {.lex_state = 83}, + [1161] = {.lex_state = 229, .external_lex_state = 9}, [1162] = {.lex_state = 83}, - [1163] = {.lex_state = 135, .external_lex_state = 8}, - [1164] = {.lex_state = 135, .external_lex_state = 8}, - [1165] = {.lex_state = 124, .external_lex_state = 8}, - [1166] = {.lex_state = 83}, - [1167] = {.lex_state = 83}, - [1168] = {.lex_state = 199, .external_lex_state = 9}, - [1169] = {.lex_state = 199, .external_lex_state = 9}, - [1170] = {.lex_state = 83}, - [1171] = {.lex_state = 83}, - [1172] = {.lex_state = 145, .external_lex_state = 9}, - [1173] = {.lex_state = 145, .external_lex_state = 9}, + [1163] = {.lex_state = 185, .external_lex_state = 2}, + [1164] = {.lex_state = 124, .external_lex_state = 4}, + [1165] = {.lex_state = 235, .external_lex_state = 9}, + [1166] = {.lex_state = 214}, + [1167] = {.lex_state = 223}, + [1168] = {.lex_state = 241, .external_lex_state = 2}, + [1169] = {.lex_state = 241, .external_lex_state = 2}, + [1170] = {.lex_state = 214}, + [1171] = {.lex_state = 235, .external_lex_state = 9}, + [1172] = {.lex_state = 124, .external_lex_state = 4}, + [1173] = {.lex_state = 83}, [1174] = {.lex_state = 83}, - [1175] = {.lex_state = 83}, - [1176] = {.lex_state = 104, .external_lex_state = 10}, - [1177] = {.lex_state = 104, .external_lex_state = 10}, + [1175] = {.lex_state = 135, .external_lex_state = 8}, + [1176] = {.lex_state = 135, .external_lex_state = 8}, + [1177] = {.lex_state = 124, .external_lex_state = 8}, [1178] = {.lex_state = 83}, [1179] = {.lex_state = 83}, - [1180] = {.lex_state = 106}, - [1181] = {.lex_state = 106}, - [1182] = {.lex_state = 129, .external_lex_state = 3}, - [1183] = {.lex_state = 129, .external_lex_state = 3}, - [1184] = {.lex_state = 154, .external_lex_state = 10}, - [1185] = {.lex_state = 83}, - [1186] = {.lex_state = 154, .external_lex_state = 10}, + [1180] = {.lex_state = 199, .external_lex_state = 9}, + [1181] = {.lex_state = 199, .external_lex_state = 9}, + [1182] = {.lex_state = 83}, + [1183] = {.lex_state = 83}, + [1184] = {.lex_state = 145, .external_lex_state = 9}, + [1185] = {.lex_state = 145, .external_lex_state = 9}, + [1186] = {.lex_state = 83}, [1187] = {.lex_state = 83}, - [1188] = {.lex_state = 83}, - [1189] = {.lex_state = 227, .external_lex_state = 9}, + [1188] = {.lex_state = 104, .external_lex_state = 10}, + [1189] = {.lex_state = 104, .external_lex_state = 10}, [1190] = {.lex_state = 83}, [1191] = {.lex_state = 83}, - [1192] = {.lex_state = 227, .external_lex_state = 9}, - [1193] = {.lex_state = 83}, - [1194] = {.lex_state = 83}, - [1195] = {.lex_state = 83}, - [1196] = {.lex_state = 83}, + [1192] = {.lex_state = 106}, + [1193] = {.lex_state = 106}, + [1194] = {.lex_state = 129, .external_lex_state = 3}, + [1195] = {.lex_state = 129, .external_lex_state = 3}, + [1196] = {.lex_state = 154, .external_lex_state = 10}, [1197] = {.lex_state = 83}, - [1198] = {.lex_state = 221}, + [1198] = {.lex_state = 154, .external_lex_state = 10}, [1199] = {.lex_state = 83}, [1200] = {.lex_state = 83}, - [1201] = {.lex_state = 83}, - [1202] = {.lex_state = 149, .external_lex_state = 11}, - [1203] = {.lex_state = 149, .external_lex_state = 11}, - [1204] = {.lex_state = 241, .external_lex_state = 9}, - [1205] = {.lex_state = 241, .external_lex_state = 9}, - [1206] = {.lex_state = 235, .external_lex_state = 9}, + [1201] = {.lex_state = 154, .external_lex_state = 10}, + [1202] = {.lex_state = 229, .external_lex_state = 9}, + [1203] = {.lex_state = 83}, + [1204] = {.lex_state = 83}, + [1205] = {.lex_state = 229, .external_lex_state = 9}, + [1206] = {.lex_state = 83}, [1207] = {.lex_state = 83}, [1208] = {.lex_state = 83}, - [1209] = {.lex_state = 241, .external_lex_state = 9}, + [1209] = {.lex_state = 83}, [1210] = {.lex_state = 83}, - [1211] = {.lex_state = 104}, - [1212] = {.lex_state = 241, .external_lex_state = 9}, + [1211] = {.lex_state = 223}, + [1212] = {.lex_state = 83}, [1213] = {.lex_state = 83}, - [1214] = {.lex_state = 104}, - [1215] = {.lex_state = 241, .external_lex_state = 9}, - [1216] = {.lex_state = 241, .external_lex_state = 9}, - [1217] = {.lex_state = 203, .external_lex_state = 11}, - [1218] = {.lex_state = 83}, - [1219] = {.lex_state = 203, .external_lex_state = 11}, + [1214] = {.lex_state = 83}, + [1215] = {.lex_state = 149, .external_lex_state = 11}, + [1216] = {.lex_state = 149, .external_lex_state = 11}, + [1217] = {.lex_state = 243, .external_lex_state = 9}, + [1218] = {.lex_state = 243, .external_lex_state = 9}, + [1219] = {.lex_state = 237, .external_lex_state = 9}, [1220] = {.lex_state = 83}, [1221] = {.lex_state = 83}, - [1222] = {.lex_state = 227, .external_lex_state = 9}, + [1222] = {.lex_state = 243, .external_lex_state = 9}, [1223] = {.lex_state = 83}, - [1224] = {.lex_state = 83}, - [1225] = {.lex_state = 227, .external_lex_state = 9}, + [1224] = {.lex_state = 177}, + [1225] = {.lex_state = 243, .external_lex_state = 9}, [1226] = {.lex_state = 83}, - [1227] = {.lex_state = 237, .external_lex_state = 9}, - [1228] = {.lex_state = 124, .external_lex_state = 8}, - [1229] = {.lex_state = 83}, - [1230] = {.lex_state = 124, .external_lex_state = 8}, + [1227] = {.lex_state = 177}, + [1228] = {.lex_state = 243, .external_lex_state = 9}, + [1229] = {.lex_state = 243, .external_lex_state = 9}, + [1230] = {.lex_state = 203, .external_lex_state = 11}, [1231] = {.lex_state = 83}, - [1232] = {.lex_state = 83}, - [1233] = {.lex_state = 227, .external_lex_state = 9}, + [1232] = {.lex_state = 203, .external_lex_state = 11}, + [1233] = {.lex_state = 83}, [1234] = {.lex_state = 83}, - [1235] = {.lex_state = 83}, - [1236] = {.lex_state = 227, .external_lex_state = 9}, + [1235] = {.lex_state = 203, .external_lex_state = 11}, + [1236] = {.lex_state = 229, .external_lex_state = 9}, [1237] = {.lex_state = 83}, [1238] = {.lex_state = 83}, - [1239] = {.lex_state = 83}, + [1239] = {.lex_state = 229, .external_lex_state = 9}, [1240] = {.lex_state = 83}, - [1241] = {.lex_state = 170, .external_lex_state = 3}, - [1242] = {.lex_state = 83}, - [1243] = {.lex_state = 170, .external_lex_state = 3}, - [1244] = {.lex_state = 211, .external_lex_state = 15}, + [1241] = {.lex_state = 239, .external_lex_state = 9}, + [1242] = {.lex_state = 124, .external_lex_state = 8}, + [1243] = {.lex_state = 83}, + [1244] = {.lex_state = 124, .external_lex_state = 8}, [1245] = {.lex_state = 83}, - [1246] = {.lex_state = 211, .external_lex_state = 15}, - [1247] = {.lex_state = 83}, - [1248] = {.lex_state = 83}, - [1249] = {.lex_state = 227, .external_lex_state = 9}, + [1246] = {.lex_state = 83}, + [1247] = {.lex_state = 124, .external_lex_state = 8}, + [1248] = {.lex_state = 229, .external_lex_state = 9}, + [1249] = {.lex_state = 83}, [1250] = {.lex_state = 83}, - [1251] = {.lex_state = 83}, - [1252] = {.lex_state = 227, .external_lex_state = 9}, + [1251] = {.lex_state = 229, .external_lex_state = 9}, + [1252] = {.lex_state = 83}, [1253] = {.lex_state = 83}, [1254] = {.lex_state = 83}, [1255] = {.lex_state = 83}, - [1256] = {.lex_state = 214, .external_lex_state = 9}, - [1257] = {.lex_state = 214, .external_lex_state = 9}, - [1258] = {.lex_state = 83}, - [1259] = {.lex_state = 83}, + [1256] = {.lex_state = 170, .external_lex_state = 3}, + [1257] = {.lex_state = 83}, + [1258] = {.lex_state = 170, .external_lex_state = 3}, + [1259] = {.lex_state = 211, .external_lex_state = 15}, [1260] = {.lex_state = 83}, - [1261] = {.lex_state = 177, .external_lex_state = 9}, + [1261] = {.lex_state = 211, .external_lex_state = 15}, [1262] = {.lex_state = 83}, - [1263] = {.lex_state = 177, .external_lex_state = 9}, - [1264] = {.lex_state = 83}, - [1265] = {.lex_state = 83}, - [1266] = {.lex_state = 140, .external_lex_state = 14}, - [1267] = {.lex_state = 140, .external_lex_state = 14}, - [1268] = {.lex_state = 83}, + [1263] = {.lex_state = 83}, + [1264] = {.lex_state = 211, .external_lex_state = 15}, + [1265] = {.lex_state = 229, .external_lex_state = 9}, + [1266] = {.lex_state = 83}, + [1267] = {.lex_state = 83}, + [1268] = {.lex_state = 229, .external_lex_state = 9}, [1269] = {.lex_state = 83}, [1270] = {.lex_state = 83}, - [1271] = {.lex_state = 217, .external_lex_state = 8}, - [1272] = {.lex_state = 83}, - [1273] = {.lex_state = 217, .external_lex_state = 8}, - [1274] = {.lex_state = 221}, - [1275] = {.lex_state = 239, .external_lex_state = 2}, - [1276] = {.lex_state = 239, .external_lex_state = 2}, - [1277] = {.lex_state = 135, .external_lex_state = 8}, - [1278] = {.lex_state = 135, .external_lex_state = 8}, - [1279] = {.lex_state = 199, .external_lex_state = 9}, - [1280] = {.lex_state = 199, .external_lex_state = 9}, - [1281] = {.lex_state = 145, .external_lex_state = 9}, - [1282] = {.lex_state = 145, .external_lex_state = 9}, - [1283] = {.lex_state = 104, .external_lex_state = 10}, - [1284] = {.lex_state = 104, .external_lex_state = 10}, - [1285] = {.lex_state = 106}, - [1286] = {.lex_state = 106}, - [1287] = {.lex_state = 83}, + [1271] = {.lex_state = 83}, + [1272] = {.lex_state = 214, .external_lex_state = 9}, + [1273] = {.lex_state = 214, .external_lex_state = 9}, + [1274] = {.lex_state = 83}, + [1275] = {.lex_state = 83}, + [1276] = {.lex_state = 83}, + [1277] = {.lex_state = 217, .external_lex_state = 9}, + [1278] = {.lex_state = 83}, + [1279] = {.lex_state = 217, .external_lex_state = 9}, + [1280] = {.lex_state = 83}, + [1281] = {.lex_state = 83}, + [1282] = {.lex_state = 140, .external_lex_state = 14}, + [1283] = {.lex_state = 140, .external_lex_state = 14}, + [1284] = {.lex_state = 83}, + [1285] = {.lex_state = 83}, + [1286] = {.lex_state = 83}, + [1287] = {.lex_state = 219, .external_lex_state = 8}, [1288] = {.lex_state = 83}, - [1289] = {.lex_state = 83}, - [1290] = {.lex_state = 154, .external_lex_state = 10}, - [1291] = {.lex_state = 83}, - [1292] = {.lex_state = 154, .external_lex_state = 10}, - [1293] = {.lex_state = 83}, - [1294] = {.lex_state = 83}, - [1295] = {.lex_state = 149, .external_lex_state = 11}, - [1296] = {.lex_state = 149, .external_lex_state = 11}, - [1297] = {.lex_state = 241, .external_lex_state = 9}, - [1298] = {.lex_state = 83}, - [1299] = {.lex_state = 241, .external_lex_state = 9}, - [1300] = {.lex_state = 83}, - [1301] = {.lex_state = 83}, - [1302] = {.lex_state = 227, .external_lex_state = 9}, + [1289] = {.lex_state = 219, .external_lex_state = 8}, + [1290] = {.lex_state = 223}, + [1291] = {.lex_state = 241, .external_lex_state = 2}, + [1292] = {.lex_state = 241, .external_lex_state = 2}, + [1293] = {.lex_state = 135, .external_lex_state = 8}, + [1294] = {.lex_state = 135, .external_lex_state = 8}, + [1295] = {.lex_state = 199, .external_lex_state = 9}, + [1296] = {.lex_state = 199, .external_lex_state = 9}, + [1297] = {.lex_state = 145, .external_lex_state = 9}, + [1298] = {.lex_state = 145, .external_lex_state = 9}, + [1299] = {.lex_state = 104, .external_lex_state = 10}, + [1300] = {.lex_state = 104, .external_lex_state = 10}, + [1301] = {.lex_state = 106}, + [1302] = {.lex_state = 106}, [1303] = {.lex_state = 83}, [1304] = {.lex_state = 83}, - [1305] = {.lex_state = 227, .external_lex_state = 9}, - [1306] = {.lex_state = 83}, + [1305] = {.lex_state = 83}, + [1306] = {.lex_state = 154, .external_lex_state = 10}, [1307] = {.lex_state = 83}, - [1308] = {.lex_state = 83}, + [1308] = {.lex_state = 154, .external_lex_state = 10}, [1309] = {.lex_state = 83}, - [1310] = {.lex_state = 203, .external_lex_state = 11}, - [1311] = {.lex_state = 83}, - [1312] = {.lex_state = 203, .external_lex_state = 11}, - [1313] = {.lex_state = 83}, + [1310] = {.lex_state = 83}, + [1311] = {.lex_state = 149, .external_lex_state = 11}, + [1312] = {.lex_state = 149, .external_lex_state = 11}, + [1313] = {.lex_state = 243, .external_lex_state = 9}, [1314] = {.lex_state = 83}, - [1315] = {.lex_state = 83}, - [1316] = {.lex_state = 124, .external_lex_state = 8}, + [1315] = {.lex_state = 243, .external_lex_state = 9}, + [1316] = {.lex_state = 83}, [1317] = {.lex_state = 83}, - [1318] = {.lex_state = 124, .external_lex_state = 8}, - [1319] = {.lex_state = 83}, + [1318] = {.lex_state = 243, .external_lex_state = 9}, + [1319] = {.lex_state = 229, .external_lex_state = 9}, [1320] = {.lex_state = 83}, - [1321] = {.lex_state = 170, .external_lex_state = 3}, - [1322] = {.lex_state = 170, .external_lex_state = 3}, + [1321] = {.lex_state = 83}, + [1322] = {.lex_state = 229, .external_lex_state = 9}, [1323] = {.lex_state = 83}, [1324] = {.lex_state = 83}, [1325] = {.lex_state = 83}, - [1326] = {.lex_state = 211, .external_lex_state = 15}, - [1327] = {.lex_state = 83}, - [1328] = {.lex_state = 211, .external_lex_state = 15}, - [1329] = {.lex_state = 214, .external_lex_state = 9}, - [1330] = {.lex_state = 214, .external_lex_state = 9}, + [1326] = {.lex_state = 83}, + [1327] = {.lex_state = 203, .external_lex_state = 11}, + [1328] = {.lex_state = 83}, + [1329] = {.lex_state = 203, .external_lex_state = 11}, + [1330] = {.lex_state = 83}, [1331] = {.lex_state = 83}, [1332] = {.lex_state = 83}, - [1333] = {.lex_state = 177, .external_lex_state = 9}, - [1334] = {.lex_state = 177, .external_lex_state = 9}, - [1335] = {.lex_state = 140, .external_lex_state = 14}, - [1336] = {.lex_state = 140, .external_lex_state = 14}, + [1333] = {.lex_state = 124, .external_lex_state = 8}, + [1334] = {.lex_state = 83}, + [1335] = {.lex_state = 124, .external_lex_state = 8}, + [1336] = {.lex_state = 83}, [1337] = {.lex_state = 83}, - [1338] = {.lex_state = 83}, - [1339] = {.lex_state = 217, .external_lex_state = 8}, - [1340] = {.lex_state = 217, .external_lex_state = 8}, - [1341] = {.lex_state = 221}, + [1338] = {.lex_state = 170, .external_lex_state = 3}, + [1339] = {.lex_state = 170, .external_lex_state = 3}, + [1340] = {.lex_state = 83}, + [1341] = {.lex_state = 83}, [1342] = {.lex_state = 83}, - [1343] = {.lex_state = 83}, - [1344] = {.lex_state = 154, .external_lex_state = 10}, - [1345] = {.lex_state = 154, .external_lex_state = 10}, - [1346] = {.lex_state = 83}, - [1347] = {.lex_state = 83}, + [1343] = {.lex_state = 211, .external_lex_state = 15}, + [1344] = {.lex_state = 83}, + [1345] = {.lex_state = 211, .external_lex_state = 15}, + [1346] = {.lex_state = 214, .external_lex_state = 9}, + [1347] = {.lex_state = 214, .external_lex_state = 9}, [1348] = {.lex_state = 83}, - [1349] = {.lex_state = 241, .external_lex_state = 9}, - [1350] = {.lex_state = 83}, - [1351] = {.lex_state = 241, .external_lex_state = 9}, - [1352] = {.lex_state = 83}, - [1353] = {.lex_state = 83}, - [1354] = {.lex_state = 203, .external_lex_state = 11}, - [1355] = {.lex_state = 203, .external_lex_state = 11}, - [1356] = {.lex_state = 83}, - [1357] = {.lex_state = 83}, - [1358] = {.lex_state = 124, .external_lex_state = 8}, - [1359] = {.lex_state = 124, .external_lex_state = 8}, - [1360] = {.lex_state = 170, .external_lex_state = 3}, - [1361] = {.lex_state = 170, .external_lex_state = 3}, - [1362] = {.lex_state = 83}, + [1349] = {.lex_state = 83}, + [1350] = {.lex_state = 217, .external_lex_state = 9}, + [1351] = {.lex_state = 217, .external_lex_state = 9}, + [1352] = {.lex_state = 140, .external_lex_state = 14}, + [1353] = {.lex_state = 140, .external_lex_state = 14}, + [1354] = {.lex_state = 83}, + [1355] = {.lex_state = 83}, + [1356] = {.lex_state = 219, .external_lex_state = 8}, + [1357] = {.lex_state = 219, .external_lex_state = 8}, + [1358] = {.lex_state = 223}, + [1359] = {.lex_state = 83}, + [1360] = {.lex_state = 83}, + [1361] = {.lex_state = 154, .external_lex_state = 10}, + [1362] = {.lex_state = 154, .external_lex_state = 10}, [1363] = {.lex_state = 83}, - [1364] = {.lex_state = 211, .external_lex_state = 15}, - [1365] = {.lex_state = 211, .external_lex_state = 15}, - [1366] = {.lex_state = 177, .external_lex_state = 9}, - [1367] = {.lex_state = 177, .external_lex_state = 9}, - [1368] = {.lex_state = 217, .external_lex_state = 8}, - [1369] = {.lex_state = 217, .external_lex_state = 8}, - [1370] = {.lex_state = 154, .external_lex_state = 10}, - [1371] = {.lex_state = 154, .external_lex_state = 10}, - [1372] = {.lex_state = 83}, + [1364] = {.lex_state = 83}, + [1365] = {.lex_state = 83}, + [1366] = {.lex_state = 243, .external_lex_state = 9}, + [1367] = {.lex_state = 83}, + [1368] = {.lex_state = 243, .external_lex_state = 9}, + [1369] = {.lex_state = 83}, + [1370] = {.lex_state = 83}, + [1371] = {.lex_state = 203, .external_lex_state = 11}, + [1372] = {.lex_state = 203, .external_lex_state = 11}, [1373] = {.lex_state = 83}, - [1374] = {.lex_state = 241, .external_lex_state = 9}, - [1375] = {.lex_state = 241, .external_lex_state = 9}, - [1376] = {.lex_state = 203, .external_lex_state = 11}, - [1377] = {.lex_state = 203, .external_lex_state = 11}, - [1378] = {.lex_state = 124, .external_lex_state = 8}, - [1379] = {.lex_state = 124, .external_lex_state = 8}, - [1380] = {.lex_state = 211, .external_lex_state = 15}, + [1374] = {.lex_state = 83}, + [1375] = {.lex_state = 124, .external_lex_state = 8}, + [1376] = {.lex_state = 124, .external_lex_state = 8}, + [1377] = {.lex_state = 170, .external_lex_state = 3}, + [1378] = {.lex_state = 170, .external_lex_state = 3}, + [1379] = {.lex_state = 83}, + [1380] = {.lex_state = 83}, [1381] = {.lex_state = 211, .external_lex_state = 15}, - [1382] = {.lex_state = 241, .external_lex_state = 9}, - [1383] = {.lex_state = 241, .external_lex_state = 9}, + [1382] = {.lex_state = 211, .external_lex_state = 15}, + [1383] = {.lex_state = 217, .external_lex_state = 9}, + [1384] = {.lex_state = 217, .external_lex_state = 9}, + [1385] = {.lex_state = 219, .external_lex_state = 8}, + [1386] = {.lex_state = 219, .external_lex_state = 8}, + [1387] = {.lex_state = 154, .external_lex_state = 10}, + [1388] = {.lex_state = 154, .external_lex_state = 10}, + [1389] = {.lex_state = 83}, + [1390] = {.lex_state = 83}, + [1391] = {.lex_state = 243, .external_lex_state = 9}, + [1392] = {.lex_state = 243, .external_lex_state = 9}, + [1393] = {.lex_state = 203, .external_lex_state = 11}, + [1394] = {.lex_state = 203, .external_lex_state = 11}, + [1395] = {.lex_state = 124, .external_lex_state = 8}, + [1396] = {.lex_state = 124, .external_lex_state = 8}, + [1397] = {.lex_state = 211, .external_lex_state = 15}, + [1398] = {.lex_state = 211, .external_lex_state = 15}, + [1399] = {.lex_state = 243, .external_lex_state = 9}, + [1400] = {.lex_state = 243, .external_lex_state = 9}, }; enum { @@ -12004,153 +12064,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [284] = { - [sym_concatenation] = STATE(527), - [sym_string] = STATE(526), - [sym_simple_expansion] = STATE(526), - [sym_expansion] = STATE(526), - [sym_command_substitution] = STATE(526), - [sym_process_substitution] = STATE(526), + [sym_concatenation] = STATE(528), + [sym_string] = STATE(527), + [sym_simple_expansion] = STATE(527), + [sym_expansion] = STATE(527), + [sym_command_substitution] = STATE(527), + [sym_process_substitution] = STATE(527), + [anon_sym_RBRACE] = ACTIONS(1042), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1042), + [sym_raw_string] = ACTIONS(1044), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1044), + [sym_word] = ACTIONS(1046), [sym_comment] = ACTIONS(52), }, [285] = { - [sym_file_descriptor] = ACTIONS(1046), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_SEMI_SEMI] = ACTIONS(1048), - [anon_sym_PIPE_AMP] = ACTIONS(1048), - [anon_sym_AMP_AMP] = ACTIONS(1048), - [anon_sym_PIPE_PIPE] = ACTIONS(1048), - [anon_sym_LT] = ACTIONS(1048), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_AMP_GT] = ACTIONS(1048), - [anon_sym_AMP_GT_GT] = ACTIONS(1048), - [anon_sym_LT_AMP] = ACTIONS(1048), - [anon_sym_GT_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1048), - [anon_sym_LT_LT_DASH] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym_raw_string] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), - [anon_sym_BQUOTE] = ACTIONS(1048), - [anon_sym_LT_LPAREN] = ACTIONS(1048), - [anon_sym_GT_LPAREN] = ACTIONS(1048), - [sym_word] = ACTIONS(1048), + [sym_file_descriptor] = ACTIONS(1048), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [sym_word] = ACTIONS(1050), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_LF] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), }, [286] = { - [anon_sym_AT] = ACTIONS(1050), + [anon_sym_AT] = ACTIONS(1052), [sym_comment] = ACTIONS(52), }, [287] = { - [sym_concatenation] = STATE(530), - [sym_string] = STATE(529), - [sym_simple_expansion] = STATE(529), - [sym_expansion] = STATE(529), - [sym_command_substitution] = STATE(529), - [sym_process_substitution] = STATE(529), + [sym_concatenation] = STATE(531), + [sym_string] = STATE(530), + [sym_simple_expansion] = STATE(530), + [sym_expansion] = STATE(530), + [sym_command_substitution] = STATE(530), + [sym_process_substitution] = STATE(530), + [anon_sym_RBRACE] = ACTIONS(1032), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1052), + [sym_raw_string] = ACTIONS(1054), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1054), + [sym_word] = ACTIONS(1056), [sym_comment] = ACTIONS(52), }, [288] = { - [sym_concatenation] = STATE(531), - [sym_string] = STATE(534), - [sym_array] = STATE(531), - [sym_simple_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [sym__empty_value] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1070), - [anon_sym_LT_LPAREN] = ACTIONS(1072), - [anon_sym_GT_LPAREN] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), + [sym_concatenation] = STATE(532), + [sym_string] = STATE(535), + [sym_array] = STATE(532), + [sym_simple_expansion] = STATE(535), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), + [sym_process_substitution] = STATE(535), + [sym__empty_value] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_raw_string] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1070), + [anon_sym_BQUOTE] = ACTIONS(1072), + [anon_sym_LT_LPAREN] = ACTIONS(1074), + [anon_sym_GT_LPAREN] = ACTIONS(1074), + [sym_word] = ACTIONS(1076), [sym_comment] = ACTIONS(52), }, [289] = { - [anon_sym_in] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1078), [sym_comment] = ACTIONS(52), }, [290] = { - [sym_do_group] = STATE(542), - [anon_sym_do] = ACTIONS(1078), + [sym_do_group] = STATE(543), + [anon_sym_do] = ACTIONS(1080), [sym_comment] = ACTIONS(52), }, [291] = { - [anon_sym_then] = ACTIONS(1080), + [anon_sym_then] = ACTIONS(1082), [sym_comment] = ACTIONS(52), }, [292] = { [aux_sym_concatenation_repeat1] = STATE(182), [sym__concat] = ACTIONS(316), - [anon_sym_in] = ACTIONS(1082), - [anon_sym_SEMI_SEMI] = ACTIONS(1084), + [anon_sym_in] = ACTIONS(1084), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_LF] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), }, [293] = { - [anon_sym_in] = ACTIONS(1082), - [anon_sym_SEMI_SEMI] = ACTIONS(1084), + [anon_sym_in] = ACTIONS(1084), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_LF] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), }, [294] = { - [sym_compound_statement] = STATE(547), - [anon_sym_LPAREN] = ACTIONS(1086), + [sym_compound_statement] = STATE(548), + [anon_sym_LPAREN] = ACTIONS(1088), [anon_sym_LBRACE] = ACTIONS(504), [sym_comment] = ACTIONS(52), }, [295] = { [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_SEMI_SEMI] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), [anon_sym_PIPE_AMP] = ACTIONS(342), [anon_sym_AMP_AMP] = ACTIONS(348), [anon_sym_PIPE_PIPE] = ACTIONS(348), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_LF] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), }, [296] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_SEMI_SEMI] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), [anon_sym_PIPE_AMP] = ACTIONS(342), [anon_sym_AMP_AMP] = ACTIONS(348), [anon_sym_PIPE_PIPE] = ACTIONS(348), @@ -12171,24 +12233,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(256), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_LF] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), }, [297] = { [sym__terminated_statement] = STATE(22), - [sym_for_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_function_definition] = STATE(550), - [sym_subshell] = STATE(550), - [sym_pipeline] = STATE(550), - [sym_list] = STATE(550), - [sym_bracket_command] = STATE(550), - [sym_command] = STATE(550), + [sym_for_statement] = STATE(551), + [sym_while_statement] = STATE(551), + [sym_if_statement] = STATE(551), + [sym_case_statement] = STATE(551), + [sym_function_definition] = STATE(551), + [sym_subshell] = STATE(551), + [sym_pipeline] = STATE(551), + [sym_list] = STATE(551), + [sym_bracket_command] = STATE(551), + [sym_command] = STATE(551), [sym_command_name] = STATE(53), - [sym_environment_variable_assignment] = STATE(551), + [sym_environment_variable_assignment] = STATE(552), [sym_subscript] = STATE(55), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -12235,7 +12297,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(59), [sym_process_substitution] = STATE(59), [aux_sym_for_statement_repeat1] = STATE(232), - [anon_sym_RBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(90), [sym_raw_string] = ACTIONS(92), [anon_sym_DOLLAR] = ACTIONS(94), @@ -12255,7 +12317,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(68), [sym_process_substitution] = STATE(68), [aux_sym_for_statement_repeat1] = STATE(249), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1092), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(106), [sym_raw_string] = ACTIONS(108), [anon_sym_DOLLAR] = ACTIONS(110), @@ -12300,7 +12362,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1096), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -12309,24 +12371,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(150), }, [302] = { - [sym_string] = STATE(554), - [sym_simple_expansion] = STATE(554), - [sym_expansion] = STATE(554), - [sym_command_substitution] = STATE(554), - [sym_process_substitution] = STATE(554), + [sym_string] = STATE(555), + [sym_simple_expansion] = STATE(555), + [sym_expansion] = STATE(555), + [sym_command_substitution] = STATE(555), + [sym_process_substitution] = STATE(555), [anon_sym_DQUOTE] = ACTIONS(190), - [sym_raw_string] = ACTIONS(1096), + [sym_raw_string] = ACTIONS(1098), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), [anon_sym_BQUOTE] = ACTIONS(200), [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), - [sym_word] = ACTIONS(1098), + [sym_word] = ACTIONS(1100), [sym_comment] = ACTIONS(52), }, [303] = { - [aux_sym_concatenation_repeat1] = STATE(555), + [aux_sym_concatenation_repeat1] = STATE(556), [sym_file_descriptor] = ACTIONS(440), [sym__concat] = ACTIONS(488), [anon_sym_PIPE] = ACTIONS(844), @@ -12439,7 +12501,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [307] = { - [sym_special_variable_name] = STATE(557), + [sym_special_variable_name] = STATE(558), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -12452,7 +12514,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1100), + [sym_simple_variable_name] = ACTIONS(1102), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -12461,30 +12523,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), }, [308] = { - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_EQ] = ACTIONS(1106), - [anon_sym_COLON] = ACTIONS(1108), - [anon_sym_COLON_QMARK] = ACTIONS(1106), - [anon_sym_COLON_DASH] = ACTIONS(1106), - [anon_sym_PERCENT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_COLON_QMARK] = ACTIONS(1108), + [anon_sym_COLON_DASH] = ACTIONS(1108), + [anon_sym_PERCENT] = ACTIONS(1108), + [anon_sym_SLASH] = ACTIONS(1108), [sym_comment] = ACTIONS(52), }, [309] = { - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1112), - [anon_sym_EQ] = ACTIONS(1114), - [anon_sym_COLON] = ACTIONS(1116), - [anon_sym_COLON_QMARK] = ACTIONS(1114), - [anon_sym_COLON_DASH] = ACTIONS(1114), - [anon_sym_PERCENT] = ACTIONS(1114), - [anon_sym_SLASH] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(1116), + [anon_sym_COLON] = ACTIONS(1118), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_DASH] = ACTIONS(1116), + [anon_sym_PERCENT] = ACTIONS(1116), + [anon_sym_SLASH] = ACTIONS(1116), [sym_comment] = ACTIONS(52), }, [310] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1118), + [anon_sym_RPAREN] = ACTIONS(1120), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), @@ -12494,7 +12556,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1118), + [anon_sym_RPAREN] = ACTIONS(1120), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -12521,7 +12583,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(1118), + [anon_sym_BQUOTE] = ACTIONS(1120), [sym_comment] = ACTIONS(52), }, [313] = { @@ -12543,7 +12605,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(1118), + [anon_sym_BQUOTE] = ACTIONS(1120), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), @@ -12551,7 +12613,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [314] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1122), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), @@ -12561,7 +12623,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1122), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -12584,7 +12646,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [316] = { - [anon_sym_RPAREN] = ACTIONS(1122), + [anon_sym_RPAREN] = ACTIONS(1124), [sym_comment] = ACTIONS(52), }, [317] = { @@ -12609,7 +12671,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(568), + [aux_sym_program_repeat1] = STATE(569), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -12619,7 +12681,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1126), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_LT] = ACTIONS(32), @@ -12641,35 +12703,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [318] = { - [sym_file_redirect] = STATE(571), - [sym_file_descriptor] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_PIPE_AMP] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_GT] = ACTIONS(1134), - [anon_sym_AMP_GT] = ACTIONS(1132), - [anon_sym_AMP_GT_GT] = ACTIONS(1134), - [anon_sym_LT_AMP] = ACTIONS(1134), - [anon_sym_GT_AMP] = ACTIONS(1134), + [sym_file_redirect] = STATE(572), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_PIPE_AMP] = ACTIONS(1132), + [anon_sym_AMP_AMP] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_AMP_GT] = ACTIONS(1134), + [anon_sym_AMP_GT_GT] = ACTIONS(1136), + [anon_sym_LT_AMP] = ACTIONS(1136), + [anon_sym_GT_AMP] = ACTIONS(1136), [sym_comment] = ACTIONS(52), }, [319] = { - [sym_for_statement] = STATE(572), - [sym_while_statement] = STATE(572), - [sym_if_statement] = STATE(572), - [sym_case_statement] = STATE(572), - [sym_function_definition] = STATE(572), - [sym_subshell] = STATE(572), - [sym_pipeline] = STATE(572), - [sym_list] = STATE(572), - [sym_bracket_command] = STATE(572), - [sym_command] = STATE(572), + [sym_for_statement] = STATE(573), + [sym_while_statement] = STATE(573), + [sym_if_statement] = STATE(573), + [sym_case_statement] = STATE(573), + [sym_function_definition] = STATE(573), + [sym_subshell] = STATE(573), + [sym_pipeline] = STATE(573), + [sym_list] = STATE(573), + [sym_bracket_command] = STATE(573), + [sym_command] = STATE(573), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(573), + [sym_environment_variable_assignment] = STATE(574), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -12708,50 +12770,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [320] = { - [sym_file_descriptor] = ACTIONS(1136), - [sym__concat] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_RPAREN] = ACTIONS(1138), - [anon_sym_SEMI_SEMI] = ACTIONS(1138), - [anon_sym_PIPE_AMP] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1138), - [anon_sym_GT] = ACTIONS(1138), - [anon_sym_GT_GT] = ACTIONS(1138), - [anon_sym_AMP_GT] = ACTIONS(1138), - [anon_sym_AMP_GT_GT] = ACTIONS(1138), - [anon_sym_LT_AMP] = ACTIONS(1138), - [anon_sym_GT_AMP] = ACTIONS(1138), - [anon_sym_LT_LT] = ACTIONS(1138), - [anon_sym_LT_LT_DASH] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_raw_string] = ACTIONS(1138), - [anon_sym_DOLLAR] = ACTIONS(1138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), - [anon_sym_BQUOTE] = ACTIONS(1138), - [anon_sym_LT_LPAREN] = ACTIONS(1138), - [anon_sym_GT_LPAREN] = ACTIONS(1138), - [sym_word] = ACTIONS(1138), + [sym_file_descriptor] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_SEMI_SEMI] = ACTIONS(1140), + [anon_sym_PIPE_AMP] = ACTIONS(1140), + [anon_sym_AMP_AMP] = ACTIONS(1140), + [anon_sym_PIPE_PIPE] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_GT] = ACTIONS(1140), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_AMP_GT] = ACTIONS(1140), + [anon_sym_AMP_GT_GT] = ACTIONS(1140), + [anon_sym_LT_AMP] = ACTIONS(1140), + [anon_sym_GT_AMP] = ACTIONS(1140), + [anon_sym_LT_LT] = ACTIONS(1140), + [anon_sym_LT_LT_DASH] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_raw_string] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1140), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1140), + [anon_sym_BQUOTE] = ACTIONS(1140), + [anon_sym_LT_LPAREN] = ACTIONS(1140), + [anon_sym_GT_LPAREN] = ACTIONS(1140), + [sym_word] = ACTIONS(1140), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LF] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_LF] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), }, [321] = { - [sym_for_statement] = STATE(574), - [sym_while_statement] = STATE(574), - [sym_if_statement] = STATE(574), - [sym_case_statement] = STATE(574), - [sym_function_definition] = STATE(574), - [sym_subshell] = STATE(574), - [sym_pipeline] = STATE(574), - [sym_list] = STATE(574), - [sym_bracket_command] = STATE(574), - [sym_command] = STATE(574), + [sym_for_statement] = STATE(575), + [sym_while_statement] = STATE(575), + [sym_if_statement] = STATE(575), + [sym_case_statement] = STATE(575), + [sym_function_definition] = STATE(575), + [sym_subshell] = STATE(575), + [sym_pipeline] = STATE(575), + [sym_list] = STATE(575), + [sym_bracket_command] = STATE(575), + [sym_command] = STATE(575), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(575), + [sym_environment_variable_assignment] = STATE(576), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -12790,37 +12852,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [322] = { - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_GT_GT] = ACTIONS(1142), - [anon_sym_AMP_GT] = ACTIONS(1140), - [anon_sym_AMP_GT_GT] = ACTIONS(1142), - [anon_sym_LT_AMP] = ACTIONS(1142), - [anon_sym_GT_AMP] = ACTIONS(1142), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_GT] = ACTIONS(1142), + [anon_sym_GT_GT] = ACTIONS(1144), + [anon_sym_AMP_GT] = ACTIONS(1142), + [anon_sym_AMP_GT_GT] = ACTIONS(1144), + [anon_sym_LT_AMP] = ACTIONS(1144), + [anon_sym_GT_AMP] = ACTIONS(1144), [sym_comment] = ACTIONS(52), }, [323] = { - [sym_concatenation] = STATE(584), - [sym_string] = STATE(578), - [sym_simple_expansion] = STATE(578), - [sym_expansion] = STATE(578), - [sym_command_substitution] = STATE(578), - [sym_process_substitution] = STATE(578), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_raw_string] = ACTIONS(1146), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1150), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1154), - [anon_sym_LT_LPAREN] = ACTIONS(1156), - [anon_sym_GT_LPAREN] = ACTIONS(1156), - [sym_word] = ACTIONS(1158), + [sym_concatenation] = STATE(585), + [sym_string] = STATE(579), + [sym_simple_expansion] = STATE(579), + [sym_expansion] = STATE(579), + [sym_command_substitution] = STATE(579), + [sym_process_substitution] = STATE(579), + [anon_sym_DQUOTE] = ACTIONS(1146), + [sym_raw_string] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_LT_LPAREN] = ACTIONS(1158), + [anon_sym_GT_LPAREN] = ACTIONS(1158), + [sym_word] = ACTIONS(1160), [sym_comment] = ACTIONS(52), }, [324] = { - [sym_heredoc] = STATE(587), - [sym__simple_heredoc] = ACTIONS(1160), - [sym__heredoc_beginning] = ACTIONS(1162), + [sym_heredoc] = STATE(588), + [sym__simple_heredoc] = ACTIONS(1162), + [sym__heredoc_beginning] = ACTIONS(1164), [sym_comment] = ACTIONS(52), }, [325] = { @@ -12854,19 +12916,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [326] = { [sym_file_descriptor] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1166), [anon_sym_RPAREN] = ACTIONS(604), [anon_sym_PIPE_AMP] = ACTIONS(604), [anon_sym_AMP_AMP] = ACTIONS(604), [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_GT] = ACTIONS(1166), [anon_sym_GT_GT] = ACTIONS(604), - [anon_sym_AMP_GT] = ACTIONS(1164), + [anon_sym_AMP_GT] = ACTIONS(1166), [anon_sym_AMP_GT_GT] = ACTIONS(604), [anon_sym_LT_AMP] = ACTIONS(604), [anon_sym_GT_AMP] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), [anon_sym_LT_LT_DASH] = ACTIONS(604), [anon_sym_BQUOTE] = ACTIONS(604), [sym_comment] = ACTIONS(52), @@ -12907,14 +12969,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(325), [sym_command_substitution] = STATE(325), [sym_process_substitution] = STATE(325), - [aux_sym_for_statement_repeat1] = STATE(588), - [aux_sym_command_repeat2] = STATE(589), + [aux_sym_for_statement_repeat1] = STATE(589), + [aux_sym_command_repeat2] = STATE(590), [sym_file_descriptor] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(1170), + [anon_sym_PIPE_AMP] = ACTIONS(1170), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1168), [anon_sym_LT] = ACTIONS(520), [anon_sym_GT] = ACTIONS(520), [anon_sym_GT_GT] = ACTIONS(522), @@ -12938,13 +13000,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [329] = { [sym_file_redirect] = STATE(326), [sym_heredoc_redirect] = STATE(326), - [aux_sym_command_repeat2] = STATE(590), + [aux_sym_command_repeat2] = STATE(591), [sym_file_descriptor] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1168), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(1170), + [anon_sym_PIPE_AMP] = ACTIONS(1170), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1170), [anon_sym_LT] = ACTIONS(520), [anon_sym_GT] = ACTIONS(520), [anon_sym_GT_GT] = ACTIONS(522), @@ -12965,14 +13027,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(325), [sym_command_substitution] = STATE(325), [sym_process_substitution] = STATE(325), - [aux_sym_for_statement_repeat1] = STATE(591), - [aux_sym_command_repeat2] = STATE(589), + [aux_sym_for_statement_repeat1] = STATE(592), + [aux_sym_command_repeat2] = STATE(590), [sym_file_descriptor] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(1170), + [anon_sym_PIPE_AMP] = ACTIONS(1170), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1168), [anon_sym_LT] = ACTIONS(520), [anon_sym_GT] = ACTIONS(520), [anon_sym_GT_GT] = ACTIONS(522), @@ -12994,34 +13056,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [331] = { - [sym_concatenation] = STATE(531), - [sym_string] = STATE(592), - [sym_array] = STATE(531), - [sym_simple_expansion] = STATE(592), - [sym_expansion] = STATE(592), - [sym_command_substitution] = STATE(592), - [sym_process_substitution] = STATE(592), - [sym__empty_value] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1070), - [anon_sym_LT_LPAREN] = ACTIONS(1072), - [anon_sym_GT_LPAREN] = ACTIONS(1072), - [sym_word] = ACTIONS(1172), + [sym_concatenation] = STATE(532), + [sym_string] = STATE(593), + [sym_array] = STATE(532), + [sym_simple_expansion] = STATE(593), + [sym_expansion] = STATE(593), + [sym_command_substitution] = STATE(593), + [sym_process_substitution] = STATE(593), + [sym__empty_value] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_raw_string] = ACTIONS(1172), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1070), + [anon_sym_BQUOTE] = ACTIONS(1072), + [anon_sym_LT_LPAREN] = ACTIONS(1074), + [anon_sym_GT_LPAREN] = ACTIONS(1074), + [sym_word] = ACTIONS(1174), [sym_comment] = ACTIONS(52), }, [332] = { - [sym_compound_statement] = STATE(594), - [anon_sym_LPAREN] = ACTIONS(1174), + [sym_compound_statement] = STATE(595), + [anon_sym_LPAREN] = ACTIONS(1176), [anon_sym_LBRACE] = ACTIONS(504), [sym_comment] = ACTIONS(52), }, [333] = { - [aux_sym_concatenation_repeat1] = STATE(595), + [aux_sym_concatenation_repeat1] = STATE(596), [sym_file_descriptor] = ACTIONS(440), [sym__concat] = ACTIONS(488), [anon_sym_PIPE] = ACTIONS(844), @@ -13049,39 +13111,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [334] = { - [anon_sym_RPAREN] = ACTIONS(1176), + [anon_sym_RPAREN] = ACTIONS(1178), [sym_comment] = ACTIONS(52), }, [335] = { - [sym_file_redirect] = STATE(571), - [sym_file_descriptor] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1182), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(1182), - [anon_sym_LT_AMP] = ACTIONS(1182), - [anon_sym_GT_AMP] = ACTIONS(1182), - [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_file_redirect] = STATE(572), + [sym_file_descriptor] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1132), + [anon_sym_AMP_AMP] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_AMP_GT] = ACTIONS(1182), + [anon_sym_AMP_GT_GT] = ACTIONS(1184), + [anon_sym_LT_AMP] = ACTIONS(1184), + [anon_sym_GT_AMP] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(1132), [sym_comment] = ACTIONS(52), }, [336] = { - [sym_for_statement] = STATE(572), - [sym_while_statement] = STATE(572), - [sym_if_statement] = STATE(572), - [sym_case_statement] = STATE(572), - [sym_function_definition] = STATE(572), - [sym_subshell] = STATE(572), - [sym_pipeline] = STATE(572), - [sym_list] = STATE(572), - [sym_bracket_command] = STATE(572), - [sym_command] = STATE(572), + [sym_for_statement] = STATE(573), + [sym_while_statement] = STATE(573), + [sym_if_statement] = STATE(573), + [sym_case_statement] = STATE(573), + [sym_function_definition] = STATE(573), + [sym_subshell] = STATE(573), + [sym_pipeline] = STATE(573), + [sym_list] = STATE(573), + [sym_bracket_command] = STATE(573), + [sym_command] = STATE(573), [sym_command_name] = STATE(128), - [sym_environment_variable_assignment] = STATE(599), + [sym_environment_variable_assignment] = STATE(600), [sym_subscript] = STATE(130), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -13120,18 +13182,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [337] = { - [sym_for_statement] = STATE(600), - [sym_while_statement] = STATE(600), - [sym_if_statement] = STATE(600), - [sym_case_statement] = STATE(600), - [sym_function_definition] = STATE(600), - [sym_subshell] = STATE(600), - [sym_pipeline] = STATE(600), - [sym_list] = STATE(600), - [sym_bracket_command] = STATE(600), - [sym_command] = STATE(600), + [sym_for_statement] = STATE(601), + [sym_while_statement] = STATE(601), + [sym_if_statement] = STATE(601), + [sym_case_statement] = STATE(601), + [sym_function_definition] = STATE(601), + [sym_subshell] = STATE(601), + [sym_pipeline] = STATE(601), + [sym_list] = STATE(601), + [sym_bracket_command] = STATE(601), + [sym_command] = STATE(601), [sym_command_name] = STATE(128), - [sym_environment_variable_assignment] = STATE(601), + [sym_environment_variable_assignment] = STATE(602), [sym_subscript] = STATE(130), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -13170,31 +13232,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [338] = { - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_AMP_GT] = ACTIONS(1184), - [anon_sym_AMP_GT_GT] = ACTIONS(1186), - [anon_sym_LT_AMP] = ACTIONS(1186), - [anon_sym_GT_AMP] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1186), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), [sym_comment] = ACTIONS(52), }, [339] = { - [sym_concatenation] = STATE(584), - [sym_string] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_raw_string] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1150), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1154), - [anon_sym_LT_LPAREN] = ACTIONS(1156), - [anon_sym_GT_LPAREN] = ACTIONS(1156), - [sym_word] = ACTIONS(1190), + [sym_concatenation] = STATE(585), + [sym_string] = STATE(604), + [sym_simple_expansion] = STATE(604), + [sym_expansion] = STATE(604), + [sym_command_substitution] = STATE(604), + [sym_process_substitution] = STATE(604), + [anon_sym_DQUOTE] = ACTIONS(1146), + [sym_raw_string] = ACTIONS(1190), + [anon_sym_DOLLAR] = ACTIONS(1150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_LT_LPAREN] = ACTIONS(1158), + [anon_sym_GT_LPAREN] = ACTIONS(1158), + [sym_word] = ACTIONS(1192), [sym_comment] = ACTIONS(52), }, [340] = { @@ -13234,13 +13296,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(340), [sym_command_substitution] = STATE(340), [sym_process_substitution] = STATE(340), - [aux_sym_for_statement_repeat1] = STATE(604), - [aux_sym_command_repeat2] = STATE(605), + [aux_sym_for_statement_repeat1] = STATE(605), + [aux_sym_command_repeat2] = STATE(606), [sym_file_descriptor] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_PIPE_AMP] = ACTIONS(1170), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1168), [anon_sym_LT] = ACTIONS(550), [anon_sym_GT] = ACTIONS(550), [anon_sym_GT_GT] = ACTIONS(552), @@ -13255,7 +13317,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), - [anon_sym_BQUOTE] = ACTIONS(1168), + [anon_sym_BQUOTE] = ACTIONS(1170), [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_word] = ACTIONS(556), @@ -13264,12 +13326,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [342] = { [sym_file_redirect] = STATE(326), [sym_heredoc_redirect] = STATE(326), - [aux_sym_command_repeat2] = STATE(606), + [aux_sym_command_repeat2] = STATE(607), [sym_file_descriptor] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1168), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_PIPE_AMP] = ACTIONS(1170), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1170), [anon_sym_LT] = ACTIONS(550), [anon_sym_GT] = ACTIONS(550), [anon_sym_GT_GT] = ACTIONS(552), @@ -13279,7 +13341,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(552), [anon_sym_LT_LT] = ACTIONS(524), [anon_sym_LT_LT_DASH] = ACTIONS(526), - [anon_sym_BQUOTE] = ACTIONS(1168), + [anon_sym_BQUOTE] = ACTIONS(1170), [sym_comment] = ACTIONS(52), }, [343] = { @@ -13291,13 +13353,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(340), [sym_command_substitution] = STATE(340), [sym_process_substitution] = STATE(340), - [aux_sym_for_statement_repeat1] = STATE(607), - [aux_sym_command_repeat2] = STATE(605), + [aux_sym_for_statement_repeat1] = STATE(608), + [aux_sym_command_repeat2] = STATE(606), [sym_file_descriptor] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_PIPE_AMP] = ACTIONS(1170), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1168), [anon_sym_LT] = ACTIONS(550), [anon_sym_GT] = ACTIONS(550), [anon_sym_GT_GT] = ACTIONS(552), @@ -13312,68 +13374,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), - [anon_sym_BQUOTE] = ACTIONS(1168), + [anon_sym_BQUOTE] = ACTIONS(1170), [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_word] = ACTIONS(556), [sym_comment] = ACTIONS(52), }, [344] = { - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_SEMI_SEMI] = ACTIONS(1194), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_AMP_GT] = ACTIONS(1194), - [anon_sym_AMP_GT_GT] = ACTIONS(1194), - [anon_sym_LT_AMP] = ACTIONS(1194), - [anon_sym_GT_AMP] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_LT_LT_DASH] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym_raw_string] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1194), - [anon_sym_BQUOTE] = ACTIONS(1194), - [anon_sym_LT_LPAREN] = ACTIONS(1194), - [anon_sym_GT_LPAREN] = ACTIONS(1194), - [sym_word] = ACTIONS(1194), + [sym_file_descriptor] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_word] = ACTIONS(1196), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_LF] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), }, [345] = { - [sym_compound_statement] = STATE(608), + [sym_compound_statement] = STATE(609), [anon_sym_LBRACE] = ACTIONS(334), [sym_comment] = ACTIONS(52), }, [346] = { - [sym_file_descriptor] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(1200), + [anon_sym_SEMI_SEMI] = ACTIONS(1200), + [anon_sym_PIPE_AMP] = ACTIONS(1200), + [anon_sym_AMP_AMP] = ACTIONS(1200), + [anon_sym_PIPE_PIPE] = ACTIONS(1200), + [anon_sym_LT] = ACTIONS(1200), + [anon_sym_GT] = ACTIONS(1200), + [anon_sym_GT_GT] = ACTIONS(1200), + [anon_sym_AMP_GT] = ACTIONS(1200), + [anon_sym_AMP_GT_GT] = ACTIONS(1200), + [anon_sym_LT_AMP] = ACTIONS(1200), + [anon_sym_GT_AMP] = ACTIONS(1200), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_LF] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), }, [347] = { [sym__terminated_statement] = STATE(22), @@ -13397,7 +13459,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(610), + [aux_sym_program_repeat1] = STATE(611), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -13407,7 +13469,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1202), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_LT] = ACTIONS(32), @@ -13429,31 +13491,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [348] = { - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_GT] = ACTIONS(1202), - [anon_sym_GT_GT] = ACTIONS(1204), - [anon_sym_AMP_GT] = ACTIONS(1202), - [anon_sym_AMP_GT_GT] = ACTIONS(1204), - [anon_sym_LT_AMP] = ACTIONS(1204), - [anon_sym_GT_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_GT_GT] = ACTIONS(1206), + [anon_sym_AMP_GT] = ACTIONS(1204), + [anon_sym_AMP_GT_GT] = ACTIONS(1206), + [anon_sym_LT_AMP] = ACTIONS(1206), + [anon_sym_GT_AMP] = ACTIONS(1206), [sym_comment] = ACTIONS(52), }, [349] = { - [sym_concatenation] = STATE(619), - [sym_string] = STATE(613), - [sym_simple_expansion] = STATE(613), - [sym_expansion] = STATE(613), - [sym_command_substitution] = STATE(613), - [sym_process_substitution] = STATE(613), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_raw_string] = ACTIONS(1208), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1218), - [anon_sym_GT_LPAREN] = ACTIONS(1218), - [sym_word] = ACTIONS(1220), + [sym_concatenation] = STATE(620), + [sym_string] = STATE(614), + [sym_simple_expansion] = STATE(614), + [sym_expansion] = STATE(614), + [sym_command_substitution] = STATE(614), + [sym_process_substitution] = STATE(614), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_raw_string] = ACTIONS(1210), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1218), + [anon_sym_LT_LPAREN] = ACTIONS(1220), + [anon_sym_GT_LPAREN] = ACTIONS(1220), + [sym_word] = ACTIONS(1222), [sym_comment] = ACTIONS(52), }, [350] = { @@ -13469,26 +13531,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(806), }, [351] = { - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_SEMI_SEMI] = ACTIONS(1222), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1224), + [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_PIPE_AMP] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1224), + [anon_sym_PIPE_PIPE] = ACTIONS(1224), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_LF] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), }, [352] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_SEMI_SEMI] = ACTIONS(1222), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1224), + [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_PIPE_AMP] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1224), + [anon_sym_PIPE_PIPE] = ACTIONS(1224), [anon_sym_LT] = ACTIONS(256), [anon_sym_GT] = ACTIONS(256), [anon_sym_GT_GT] = ACTIONS(256), @@ -13506,29 +13568,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(256), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - }, - [353] = { - [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(226), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [sym_comment] = ACTIONS(150), [anon_sym_SEMI] = ACTIONS(1224), [anon_sym_LF] = ACTIONS(1224), [anon_sym_AMP] = ACTIONS(1224), }, + [353] = { + [anon_sym_PIPE] = ACTIONS(226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + }, [354] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), [anon_sym_PIPE_AMP] = ACTIONS(226), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), [anon_sym_LT] = ACTIONS(256), [anon_sym_GT] = ACTIONS(256), [anon_sym_GT_GT] = ACTIONS(256), @@ -13546,34 +13608,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(256), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [355] = { - [sym_concatenation] = STATE(621), - [sym_string] = STATE(620), - [sym_simple_expansion] = STATE(620), - [sym_expansion] = STATE(620), - [sym_command_substitution] = STATE(620), - [sym_process_substitution] = STATE(620), + [sym_concatenation] = STATE(622), + [sym_string] = STATE(621), + [sym_simple_expansion] = STATE(621), + [sym_expansion] = STATE(621), + [sym_command_substitution] = STATE(621), + [sym_process_substitution] = STATE(621), [anon_sym_DQUOTE] = ACTIONS(584), - [sym_raw_string] = ACTIONS(1226), + [sym_raw_string] = ACTIONS(1228), [anon_sym_DOLLAR] = ACTIONS(588), [anon_sym_DOLLAR_LBRACE] = ACTIONS(590), [anon_sym_DOLLAR_LPAREN] = ACTIONS(592), [anon_sym_BQUOTE] = ACTIONS(594), [anon_sym_LT_LPAREN] = ACTIONS(596), [anon_sym_GT_LPAREN] = ACTIONS(596), - [sym_word] = ACTIONS(1228), + [sym_word] = ACTIONS(1230), [sym_comment] = ACTIONS(52), }, [356] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), - [aux_sym_string_repeat1] = STATE(623), - [anon_sym_DQUOTE] = ACTIONS(1230), + [aux_sym_string_repeat1] = STATE(624), + [anon_sym_DQUOTE] = ACTIONS(1232), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -13582,49 +13644,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(150), }, [357] = { - [aux_sym_concatenation_repeat1] = STATE(625), + [aux_sym_concatenation_repeat1] = STATE(626), [sym_file_descriptor] = ACTIONS(400), - [sym__concat] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_SEMI_SEMI] = ACTIONS(1234), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_AMP_GT] = ACTIONS(1234), - [anon_sym_AMP_GT_GT] = ACTIONS(1234), - [anon_sym_LT_AMP] = ACTIONS(1234), - [anon_sym_GT_AMP] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(1234), + [sym__concat] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_SEMI_SEMI] = ACTIONS(1236), + [anon_sym_PIPE_AMP] = ACTIONS(1236), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1236), + [anon_sym_GT_GT] = ACTIONS(1236), + [anon_sym_AMP_GT] = ACTIONS(1236), + [anon_sym_AMP_GT_GT] = ACTIONS(1236), + [anon_sym_LT_AMP] = ACTIONS(1236), + [anon_sym_GT_AMP] = ACTIONS(1236), + [anon_sym_LT_LT] = ACTIONS(1236), + [anon_sym_LT_LT_DASH] = ACTIONS(1236), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LF] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_LF] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), }, [358] = { - [sym_special_variable_name] = STATE(628), - [anon_sym_DOLLAR] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_AT] = ACTIONS(1236), + [sym_special_variable_name] = STATE(629), + [anon_sym_DOLLAR] = ACTIONS(1238), + [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(1238), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_0] = ACTIONS(1240), - [anon_sym__] = ACTIONS(1240), + [sym_simple_variable_name] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_QMARK] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_0] = ACTIONS(1242), + [anon_sym__] = ACTIONS(1242), }, [359] = { - [sym_special_variable_name] = STATE(631), + [sym_special_variable_name] = STATE(632), [anon_sym_DOLLAR] = ACTIONS(164), - [anon_sym_POUND] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(1244), [anon_sym_AT] = ACTIONS(164), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1244), + [sym_simple_variable_name] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -13633,18 +13695,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), }, [360] = { - [sym_for_statement] = STATE(632), - [sym_while_statement] = STATE(632), - [sym_if_statement] = STATE(632), - [sym_case_statement] = STATE(632), - [sym_function_definition] = STATE(632), - [sym_subshell] = STATE(632), - [sym_pipeline] = STATE(632), - [sym_list] = STATE(632), - [sym_bracket_command] = STATE(632), - [sym_command] = STATE(632), + [sym_for_statement] = STATE(633), + [sym_while_statement] = STATE(633), + [sym_if_statement] = STATE(633), + [sym_case_statement] = STATE(633), + [sym_function_definition] = STATE(633), + [sym_subshell] = STATE(633), + [sym_pipeline] = STATE(633), + [sym_list] = STATE(633), + [sym_bracket_command] = STATE(633), + [sym_command] = STATE(633), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(633), + [sym_environment_variable_assignment] = STATE(634), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -13683,18 +13745,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [361] = { - [sym_for_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_if_statement] = STATE(634), - [sym_case_statement] = STATE(634), - [sym_function_definition] = STATE(634), - [sym_subshell] = STATE(634), - [sym_pipeline] = STATE(634), - [sym_list] = STATE(634), - [sym_bracket_command] = STATE(634), - [sym_command] = STATE(634), + [sym_for_statement] = STATE(635), + [sym_while_statement] = STATE(635), + [sym_if_statement] = STATE(635), + [sym_case_statement] = STATE(635), + [sym_function_definition] = STATE(635), + [sym_subshell] = STATE(635), + [sym_pipeline] = STATE(635), + [sym_list] = STATE(635), + [sym_bracket_command] = STATE(635), + [sym_command] = STATE(635), [sym_command_name] = STATE(128), - [sym_environment_variable_assignment] = STATE(635), + [sym_environment_variable_assignment] = STATE(636), [sym_subscript] = STATE(130), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -13733,18 +13795,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [362] = { - [sym_for_statement] = STATE(636), - [sym_while_statement] = STATE(636), - [sym_if_statement] = STATE(636), - [sym_case_statement] = STATE(636), - [sym_function_definition] = STATE(636), - [sym_subshell] = STATE(636), - [sym_pipeline] = STATE(636), - [sym_list] = STATE(636), - [sym_bracket_command] = STATE(636), - [sym_command] = STATE(636), + [sym_for_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_function_definition] = STATE(637), + [sym_subshell] = STATE(637), + [sym_pipeline] = STATE(637), + [sym_list] = STATE(637), + [sym_bracket_command] = STATE(637), + [sym_command] = STATE(637), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(637), + [sym_environment_variable_assignment] = STATE(638), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -13784,79 +13846,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [363] = { [sym_file_descriptor] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(1234), - [anon_sym_SEMI_SEMI] = ACTIONS(1234), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_AMP_GT] = ACTIONS(1234), - [anon_sym_AMP_GT_GT] = ACTIONS(1234), - [anon_sym_LT_AMP] = ACTIONS(1234), - [anon_sym_GT_AMP] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_RPAREN] = ACTIONS(1236), + [anon_sym_SEMI_SEMI] = ACTIONS(1236), + [anon_sym_PIPE_AMP] = ACTIONS(1236), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1236), + [anon_sym_GT_GT] = ACTIONS(1236), + [anon_sym_AMP_GT] = ACTIONS(1236), + [anon_sym_AMP_GT_GT] = ACTIONS(1236), + [anon_sym_LT_AMP] = ACTIONS(1236), + [anon_sym_GT_AMP] = ACTIONS(1236), + [anon_sym_LT_LT] = ACTIONS(1236), + [anon_sym_LT_LT_DASH] = ACTIONS(1236), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LF] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_LF] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), }, [364] = { - [sym_file_descriptor] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1248), - [anon_sym_SEMI_SEMI] = ACTIONS(1248), - [anon_sym_PIPE_AMP] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(1248), - [anon_sym_AMP_GT] = ACTIONS(1248), - [anon_sym_AMP_GT_GT] = ACTIONS(1248), - [anon_sym_LT_AMP] = ACTIONS(1248), - [anon_sym_GT_AMP] = ACTIONS(1248), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_LT_LT_DASH] = ACTIONS(1248), + [sym_file_descriptor] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_RPAREN] = ACTIONS(1250), + [anon_sym_SEMI_SEMI] = ACTIONS(1250), + [anon_sym_PIPE_AMP] = ACTIONS(1250), + [anon_sym_AMP_AMP] = ACTIONS(1250), + [anon_sym_PIPE_PIPE] = ACTIONS(1250), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_GT] = ACTIONS(1250), + [anon_sym_AMP_GT] = ACTIONS(1250), + [anon_sym_AMP_GT_GT] = ACTIONS(1250), + [anon_sym_LT_AMP] = ACTIONS(1250), + [anon_sym_GT_AMP] = ACTIONS(1250), + [anon_sym_LT_LT] = ACTIONS(1250), + [anon_sym_LT_LT_DASH] = ACTIONS(1250), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_LF] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_LF] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), }, [365] = { - [sym_simple_expansion] = STATE(638), - [sym_expansion] = STATE(638), - [aux_sym_heredoc_repeat1] = STATE(642), - [sym__heredoc_middle] = ACTIONS(1250), - [sym__heredoc_end] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [sym_simple_expansion] = STATE(639), + [sym_expansion] = STATE(639), + [aux_sym_heredoc_repeat1] = STATE(643), + [sym__heredoc_middle] = ACTIONS(1252), + [sym__heredoc_end] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), [sym_comment] = ACTIONS(52), }, [366] = { - [sym_file_descriptor] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_SEMI_SEMI] = ACTIONS(1260), - [anon_sym_PIPE_AMP] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_AMP_GT] = ACTIONS(1260), - [anon_sym_AMP_GT_GT] = ACTIONS(1260), - [anon_sym_LT_AMP] = ACTIONS(1260), - [anon_sym_GT_AMP] = ACTIONS(1260), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_LT_LT_DASH] = ACTIONS(1260), + [sym_file_descriptor] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_LF] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), }, [367] = { [sym_concatenation] = STATE(145), @@ -13866,45 +13928,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(143), [sym_process_substitution] = STATE(143), [aux_sym_for_statement_repeat1] = STATE(367), - [sym_file_descriptor] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_SEMI_SEMI] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(1264), - [anon_sym_LT_AMP] = ACTIONS(1264), - [anon_sym_GT_AMP] = ACTIONS(1264), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_LT_LT_DASH] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_raw_string] = ACTIONS(1269), - [anon_sym_DOLLAR] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1278), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), - [sym_word] = ACTIONS(1269), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1286), + [anon_sym_GT_LPAREN] = ACTIONS(1286), + [sym_word] = ACTIONS(1271), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_LF] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), }, [368] = { [sym_file_redirect] = STATE(144), [sym_heredoc_redirect] = STATE(144), [aux_sym_command_repeat2] = STATE(369), [sym_file_descriptor] = ACTIONS(232), - [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), - [anon_sym_PIPE_AMP] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_SEMI_SEMI] = ACTIONS(1289), + [anon_sym_PIPE_AMP] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), [anon_sym_LT] = ACTIONS(236), [anon_sym_GT] = ACTIONS(236), [anon_sym_GT_GT] = ACTIONS(236), @@ -13915,53 +13977,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(238), [anon_sym_LT_LT_DASH] = ACTIONS(238), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), }, [369] = { [sym_file_redirect] = STATE(144), [sym_heredoc_redirect] = STATE(144), [aux_sym_command_repeat2] = STATE(369), - [sym_file_descriptor] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_SEMI_SEMI] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1297), - [anon_sym_LT_LT_DASH] = ACTIONS(1297), + [sym_file_descriptor] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_LT_LT_DASH] = ACTIONS(1299), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_LF] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), }, [370] = { - [sym_concatenation] = STATE(643), - [sym_string] = STATE(645), - [sym_array] = STATE(643), - [sym_simple_expansion] = STATE(645), - [sym_expansion] = STATE(645), - [sym_command_substitution] = STATE(645), - [sym_process_substitution] = STATE(645), - [sym__empty_value] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), + [sym_concatenation] = STATE(644), + [sym_string] = STATE(646), + [sym_array] = STATE(644), + [sym_simple_expansion] = STATE(646), + [sym_expansion] = STATE(646), + [sym_command_substitution] = STATE(646), + [sym_process_substitution] = STATE(646), + [sym__empty_value] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), [anon_sym_DQUOTE] = ACTIONS(122), - [sym_raw_string] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1306), [anon_sym_DOLLAR] = ACTIONS(126), [anon_sym_DOLLAR_LBRACE] = ACTIONS(128), [anon_sym_DOLLAR_LPAREN] = ACTIONS(130), [anon_sym_BQUOTE] = ACTIONS(132), [anon_sym_LT_LPAREN] = ACTIONS(134), [anon_sym_GT_LPAREN] = ACTIONS(134), - [sym_word] = ACTIONS(1306), + [sym_word] = ACTIONS(1308), [sym_comment] = ACTIONS(52), }, [371] = { @@ -13974,13 +14036,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(143), [sym_process_substitution] = STATE(143), [aux_sym_for_statement_repeat1] = STATE(367), - [aux_sym_command_repeat2] = STATE(646), + [aux_sym_command_repeat2] = STATE(647), [sym_file_descriptor] = ACTIONS(232), - [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), - [anon_sym_PIPE_AMP] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_SEMI_SEMI] = ACTIONS(1289), + [anon_sym_PIPE_AMP] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), [anon_sym_LT] = ACTIONS(236), [anon_sym_GT] = ACTIONS(236), [anon_sym_GT_GT] = ACTIONS(236), @@ -14000,9 +14062,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_word] = ACTIONS(242), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), }, [372] = { [sym__concat] = ACTIONS(416), @@ -14016,7 +14078,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1310), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -14025,29 +14087,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(150), }, [374] = { - [sym_string] = STATE(648), - [sym_simple_expansion] = STATE(648), - [sym_expansion] = STATE(648), - [sym_command_substitution] = STATE(648), - [sym_process_substitution] = STATE(648), + [sym_string] = STATE(649), + [sym_simple_expansion] = STATE(649), + [sym_expansion] = STATE(649), + [sym_command_substitution] = STATE(649), + [sym_process_substitution] = STATE(649), [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1312), [anon_sym_DOLLAR] = ACTIONS(274), [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), [anon_sym_BQUOTE] = ACTIONS(280), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(1312), + [sym_word] = ACTIONS(1314), [sym_comment] = ACTIONS(52), }, [375] = { - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_PLUS_EQ] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(1316), [sym_comment] = ACTIONS(52), }, [376] = { - [aux_sym_concatenation_repeat1] = STATE(649), + [aux_sym_concatenation_repeat1] = STATE(650), [sym__concat] = ACTIONS(696), [anon_sym_RBRACK] = ACTIONS(440), [sym_comment] = ACTIONS(52), @@ -14074,7 +14136,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [380] = { - [sym_special_variable_name] = STATE(651), + [sym_special_variable_name] = STATE(652), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -14087,7 +14149,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1316), + [sym_simple_variable_name] = ACTIONS(1318), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -14096,30 +14158,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), }, [381] = { - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1324), - [anon_sym_COLON_QMARK] = ACTIONS(1322), - [anon_sym_COLON_DASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(1326), + [anon_sym_COLON_QMARK] = ACTIONS(1324), + [anon_sym_COLON_DASH] = ACTIONS(1324), + [anon_sym_PERCENT] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(1324), [sym_comment] = ACTIONS(52), }, [382] = { - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_COLON] = ACTIONS(1332), - [anon_sym_COLON_QMARK] = ACTIONS(1330), - [anon_sym_COLON_DASH] = ACTIONS(1330), - [anon_sym_PERCENT] = ACTIONS(1330), - [anon_sym_SLASH] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_EQ] = ACTIONS(1332), + [anon_sym_COLON] = ACTIONS(1334), + [anon_sym_COLON_QMARK] = ACTIONS(1332), + [anon_sym_COLON_DASH] = ACTIONS(1332), + [anon_sym_PERCENT] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1332), [sym_comment] = ACTIONS(52), }, [383] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1336), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), @@ -14129,7 +14191,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1336), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -14156,7 +14218,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(1334), + [anon_sym_BQUOTE] = ACTIONS(1336), [sym_comment] = ACTIONS(52), }, [386] = { @@ -14178,7 +14240,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(1334), + [anon_sym_BQUOTE] = ACTIONS(1336), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), @@ -14186,7 +14248,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [387] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_RPAREN] = ACTIONS(1338), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), @@ -14196,7 +14258,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_RPAREN] = ACTIONS(1338), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -14219,41 +14281,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [389] = { - [sym_file_descriptor] = ACTIONS(1338), - [sym_variable_name] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_SEMI_SEMI] = ACTIONS(1340), - [anon_sym_PIPE_AMP] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [anon_sym_PIPE_PIPE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1340), - [anon_sym_GT] = ACTIONS(1340), - [anon_sym_GT_GT] = ACTIONS(1340), - [anon_sym_AMP_GT] = ACTIONS(1340), - [anon_sym_AMP_GT_GT] = ACTIONS(1340), - [anon_sym_LT_AMP] = ACTIONS(1340), - [anon_sym_GT_AMP] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_raw_string] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), - [sym_word] = ACTIONS(1340), + [sym_file_descriptor] = ACTIONS(1340), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_SEMI_SEMI] = ACTIONS(1342), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_GT_GT] = ACTIONS(1342), + [anon_sym_AMP_GT] = ACTIONS(1342), + [anon_sym_AMP_GT_GT] = ACTIONS(1342), + [anon_sym_LT_AMP] = ACTIONS(1342), + [anon_sym_GT_AMP] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_LT_LPAREN] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(1342), + [sym_word] = ACTIONS(1342), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), }, [390] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), - [aux_sym_string_repeat1] = STATE(661), - [anon_sym_DQUOTE] = ACTIONS(1342), + [aux_sym_string_repeat1] = STATE(662), + [anon_sym_DQUOTE] = ACTIONS(1344), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -14262,8 +14324,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(150), }, [391] = { - [aux_sym_concatenation_repeat1] = STATE(663), - [sym__concat] = ACTIONS(1344), + [aux_sym_concatenation_repeat1] = STATE(664), + [sym__concat] = ACTIONS(1346), [anon_sym_RPAREN] = ACTIONS(364), [anon_sym_DQUOTE] = ACTIONS(364), [sym_raw_string] = ACTIONS(364), @@ -14277,26 +14339,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [392] = { - [sym_special_variable_name] = STATE(666), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(1346), + [sym_special_variable_name] = STATE(667), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_0] = ACTIONS(1350), - [anon_sym__] = ACTIONS(1350), + [sym_simple_variable_name] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_0] = ACTIONS(1352), + [anon_sym__] = ACTIONS(1352), }, [393] = { - [sym_special_variable_name] = STATE(669), + [sym_special_variable_name] = STATE(670), [anon_sym_DOLLAR] = ACTIONS(164), - [anon_sym_POUND] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(1354), [anon_sym_AT] = ACTIONS(164), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1354), + [sym_simple_variable_name] = ACTIONS(1356), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -14305,18 +14367,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), }, [394] = { - [sym_for_statement] = STATE(670), - [sym_while_statement] = STATE(670), - [sym_if_statement] = STATE(670), - [sym_case_statement] = STATE(670), - [sym_function_definition] = STATE(670), - [sym_subshell] = STATE(670), - [sym_pipeline] = STATE(670), - [sym_list] = STATE(670), - [sym_bracket_command] = STATE(670), - [sym_command] = STATE(670), + [sym_for_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_if_statement] = STATE(671), + [sym_case_statement] = STATE(671), + [sym_function_definition] = STATE(671), + [sym_subshell] = STATE(671), + [sym_pipeline] = STATE(671), + [sym_list] = STATE(671), + [sym_bracket_command] = STATE(671), + [sym_command] = STATE(671), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(671), + [sym_environment_variable_assignment] = STATE(672), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -14355,18 +14417,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [395] = { - [sym_for_statement] = STATE(672), - [sym_while_statement] = STATE(672), - [sym_if_statement] = STATE(672), - [sym_case_statement] = STATE(672), - [sym_function_definition] = STATE(672), - [sym_subshell] = STATE(672), - [sym_pipeline] = STATE(672), - [sym_list] = STATE(672), - [sym_bracket_command] = STATE(672), - [sym_command] = STATE(672), + [sym_for_statement] = STATE(673), + [sym_while_statement] = STATE(673), + [sym_if_statement] = STATE(673), + [sym_case_statement] = STATE(673), + [sym_function_definition] = STATE(673), + [sym_subshell] = STATE(673), + [sym_pipeline] = STATE(673), + [sym_list] = STATE(673), + [sym_bracket_command] = STATE(673), + [sym_command] = STATE(673), [sym_command_name] = STATE(128), - [sym_environment_variable_assignment] = STATE(673), + [sym_environment_variable_assignment] = STATE(674), [sym_subscript] = STATE(130), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -14405,18 +14467,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [396] = { - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), - [sym_command] = STATE(674), + [sym_for_statement] = STATE(675), + [sym_while_statement] = STATE(675), + [sym_if_statement] = STATE(675), + [sym_case_statement] = STATE(675), + [sym_function_definition] = STATE(675), + [sym_subshell] = STATE(675), + [sym_pipeline] = STATE(675), + [sym_list] = STATE(675), + [sym_bracket_command] = STATE(675), + [sym_command] = STATE(675), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(675), + [sym_environment_variable_assignment] = STATE(676), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -14474,8 +14536,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(391), [sym_command_substitution] = STATE(391), [sym_process_substitution] = STATE(391), - [aux_sym_for_statement_repeat1] = STATE(677), - [anon_sym_RPAREN] = ACTIONS(1356), + [aux_sym_for_statement_repeat1] = STATE(678), + [anon_sym_RPAREN] = ACTIONS(1358), [anon_sym_DQUOTE] = ACTIONS(716), [sym_raw_string] = ACTIONS(718), [anon_sym_DOLLAR] = ACTIONS(720), @@ -14523,7 +14585,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1360), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -14532,24 +14594,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(150), }, [401] = { - [sym_string] = STATE(679), - [sym_simple_expansion] = STATE(679), - [sym_expansion] = STATE(679), - [sym_command_substitution] = STATE(679), - [sym_process_substitution] = STATE(679), + [sym_string] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), [anon_sym_DQUOTE] = ACTIONS(290), - [sym_raw_string] = ACTIONS(1360), + [sym_raw_string] = ACTIONS(1362), [anon_sym_DOLLAR] = ACTIONS(294), [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), [anon_sym_DOLLAR_LPAREN] = ACTIONS(298), [anon_sym_BQUOTE] = ACTIONS(300), [anon_sym_LT_LPAREN] = ACTIONS(302), [anon_sym_GT_LPAREN] = ACTIONS(302), - [sym_word] = ACTIONS(1362), + [sym_word] = ACTIONS(1364), [sym_comment] = ACTIONS(52), }, [402] = { - [aux_sym_concatenation_repeat1] = STATE(680), + [aux_sym_concatenation_repeat1] = STATE(681), [sym_file_descriptor] = ACTIONS(440), [sym__concat] = ACTIONS(734), [sym_variable_name] = ACTIONS(440), @@ -14673,7 +14735,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(454), }, [406] = { - [sym_special_variable_name] = STATE(682), + [sym_special_variable_name] = STATE(683), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -14686,7 +14748,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1364), + [sym_simple_variable_name] = ACTIONS(1366), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -14695,30 +14757,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), }, [407] = { - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_COLON] = ACTIONS(1372), - [anon_sym_COLON_QMARK] = ACTIONS(1370), - [anon_sym_COLON_DASH] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_COLON] = ACTIONS(1374), + [anon_sym_COLON_QMARK] = ACTIONS(1372), + [anon_sym_COLON_DASH] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), [sym_comment] = ACTIONS(52), }, [408] = { - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_EQ] = ACTIONS(1378), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_COLON_QMARK] = ACTIONS(1378), - [anon_sym_COLON_DASH] = ACTIONS(1378), - [anon_sym_PERCENT] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_EQ] = ACTIONS(1380), + [anon_sym_COLON] = ACTIONS(1382), + [anon_sym_COLON_QMARK] = ACTIONS(1380), + [anon_sym_COLON_DASH] = ACTIONS(1380), + [anon_sym_PERCENT] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(1380), [sym_comment] = ACTIONS(52), }, [409] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1384), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), @@ -14728,7 +14790,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1384), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -14755,7 +14817,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1384), [sym_comment] = ACTIONS(52), }, [412] = { @@ -14777,7 +14839,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1384), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), @@ -14785,7 +14847,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [413] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1386), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), @@ -14795,7 +14857,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1386), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -14821,8 +14883,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), - [aux_sym_string_repeat1] = STATE(692), - [anon_sym_DQUOTE] = ACTIONS(1386), + [aux_sym_string_repeat1] = STATE(693), + [anon_sym_DQUOTE] = ACTIONS(1388), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -14831,8 +14893,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(150), }, [416] = { - [aux_sym_concatenation_repeat1] = STATE(694), - [sym__concat] = ACTIONS(1388), + [aux_sym_concatenation_repeat1] = STATE(695), + [sym__concat] = ACTIONS(1390), [anon_sym_SEMI_SEMI] = ACTIONS(366), [anon_sym_DQUOTE] = ACTIONS(366), [sym_raw_string] = ACTIONS(366), @@ -14849,26 +14911,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(366), }, [417] = { - [sym_special_variable_name] = STATE(697), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), + [sym_special_variable_name] = STATE(698), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_0] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1394), + [sym_simple_variable_name] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_0] = ACTIONS(1396), + [anon_sym__] = ACTIONS(1396), }, [418] = { - [sym_special_variable_name] = STATE(700), + [sym_special_variable_name] = STATE(701), [anon_sym_DOLLAR] = ACTIONS(164), - [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1398), [anon_sym_AT] = ACTIONS(164), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1398), + [sym_simple_variable_name] = ACTIONS(1400), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -14877,18 +14939,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), }, [419] = { - [sym_for_statement] = STATE(701), - [sym_while_statement] = STATE(701), - [sym_if_statement] = STATE(701), - [sym_case_statement] = STATE(701), - [sym_function_definition] = STATE(701), - [sym_subshell] = STATE(701), - [sym_pipeline] = STATE(701), - [sym_list] = STATE(701), - [sym_bracket_command] = STATE(701), - [sym_command] = STATE(701), + [sym_for_statement] = STATE(702), + [sym_while_statement] = STATE(702), + [sym_if_statement] = STATE(702), + [sym_case_statement] = STATE(702), + [sym_function_definition] = STATE(702), + [sym_subshell] = STATE(702), + [sym_pipeline] = STATE(702), + [sym_list] = STATE(702), + [sym_bracket_command] = STATE(702), + [sym_command] = STATE(702), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(702), + [sym_environment_variable_assignment] = STATE(703), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -14927,18 +14989,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [420] = { - [sym_for_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_case_statement] = STATE(703), - [sym_function_definition] = STATE(703), - [sym_subshell] = STATE(703), - [sym_pipeline] = STATE(703), - [sym_list] = STATE(703), - [sym_bracket_command] = STATE(703), - [sym_command] = STATE(703), + [sym_for_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_function_definition] = STATE(704), + [sym_subshell] = STATE(704), + [sym_pipeline] = STATE(704), + [sym_list] = STATE(704), + [sym_bracket_command] = STATE(704), + [sym_command] = STATE(704), [sym_command_name] = STATE(128), - [sym_environment_variable_assignment] = STATE(704), + [sym_environment_variable_assignment] = STATE(705), [sym_subscript] = STATE(130), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -14977,18 +15039,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [421] = { - [sym_for_statement] = STATE(705), - [sym_while_statement] = STATE(705), - [sym_if_statement] = STATE(705), - [sym_case_statement] = STATE(705), - [sym_function_definition] = STATE(705), - [sym_subshell] = STATE(705), - [sym_pipeline] = STATE(705), - [sym_list] = STATE(705), - [sym_bracket_command] = STATE(705), - [sym_command] = STATE(705), + [sym_for_statement] = STATE(706), + [sym_while_statement] = STATE(706), + [sym_if_statement] = STATE(706), + [sym_case_statement] = STATE(706), + [sym_function_definition] = STATE(706), + [sym_subshell] = STATE(706), + [sym_pipeline] = STATE(706), + [sym_list] = STATE(706), + [sym_bracket_command] = STATE(706), + [sym_command] = STATE(706), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(706), + [sym_environment_variable_assignment] = STATE(707), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -15049,33 +15111,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(416), [sym_command_substitution] = STATE(416), [sym_process_substitution] = STATE(416), - [aux_sym_for_statement_repeat1] = STATE(708), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1402), - [sym_raw_string] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1412), - [anon_sym_LT_LPAREN] = ACTIONS(1414), - [anon_sym_GT_LPAREN] = ACTIONS(1414), - [sym_word] = ACTIONS(1404), + [aux_sym_for_statement_repeat1] = STATE(709), + [anon_sym_SEMI_SEMI] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_raw_string] = ACTIONS(1406), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_LT_LPAREN] = ACTIONS(1416), + [anon_sym_GT_LPAREN] = ACTIONS(1416), + [sym_word] = ACTIONS(1406), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_LF] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), }, [424] = { - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_SEMI_SEMI] = ACTIONS(1416), - [anon_sym_PIPE_AMP] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [anon_sym_PIPE_PIPE] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1418), + [anon_sym_SEMI_SEMI] = ACTIONS(1418), + [anon_sym_PIPE_AMP] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LF] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), }, [425] = { [sym_file_descriptor] = ACTIONS(220), @@ -15109,20 +15171,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [426] = { [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_SEMI_SEMI] = ACTIONS(1418), + [anon_sym_SEMI_SEMI] = ACTIONS(1420), [anon_sym_PIPE_AMP] = ACTIONS(226), [anon_sym_AMP_AMP] = ACTIONS(230), [anon_sym_PIPE_PIPE] = ACTIONS(230), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LF] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), }, [427] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_SEMI_SEMI] = ACTIONS(1418), + [anon_sym_SEMI_SEMI] = ACTIONS(1420), [anon_sym_PIPE_AMP] = ACTIONS(226), [anon_sym_AMP_AMP] = ACTIONS(230), [anon_sym_PIPE_PIPE] = ACTIONS(230), @@ -15143,9 +15205,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(256), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LF] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), }, [428] = { [sym__terminated_statement] = STATE(425), @@ -15169,13 +15231,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(711), + [aux_sym_program_repeat1] = STATE(712), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1420), + [anon_sym_done] = ACTIONS(1422), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -15201,19 +15263,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [429] = { - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_RPAREN] = ACTIONS(1422), - [anon_sym_SEMI_SEMI] = ACTIONS(1422), - [anon_sym_PIPE_AMP] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1422), - [anon_sym_PIPE_PIPE] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_SEMI_SEMI] = ACTIONS(1424), + [anon_sym_PIPE_AMP] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1424), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_LF] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LF] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), }, [430] = { - [sym__terminated_statement] = STATE(712), + [sym__terminated_statement] = STATE(713), [sym_for_statement] = STATE(36), [sym_while_statement] = STATE(36), [sym_if_statement] = STATE(36), @@ -15264,19 +15326,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [431] = { - [sym__terminated_statement] = STATE(713), - [sym_for_statement] = STATE(714), - [sym_while_statement] = STATE(714), - [sym_if_statement] = STATE(714), - [sym_case_statement] = STATE(714), - [sym_function_definition] = STATE(714), - [sym_subshell] = STATE(714), - [sym_pipeline] = STATE(714), - [sym_list] = STATE(714), - [sym_bracket_command] = STATE(714), - [sym_command] = STATE(714), + [sym__terminated_statement] = STATE(714), + [sym_for_statement] = STATE(715), + [sym_while_statement] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_case_statement] = STATE(715), + [sym_function_definition] = STATE(715), + [sym_subshell] = STATE(715), + [sym_pipeline] = STATE(715), + [sym_list] = STATE(715), + [sym_bracket_command] = STATE(715), + [sym_command] = STATE(715), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(715), + [sym_environment_variable_assignment] = STATE(716), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -15285,14 +15347,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(716), + [aux_sym_program_repeat1] = STATE(717), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1424), + [anon_sym_fi] = ACTIONS(1426), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -15350,30 +15412,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [433] = { [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), [anon_sym_PIPE_AMP] = ACTIONS(226), [anon_sym_AMP_AMP] = ACTIONS(230), [anon_sym_PIPE_PIPE] = ACTIONS(230), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), }, [434] = { - [anon_sym_fi] = ACTIONS(1428), - [anon_sym_elif] = ACTIONS(1428), - [anon_sym_else] = ACTIONS(1428), + [anon_sym_fi] = ACTIONS(1430), + [anon_sym_elif] = ACTIONS(1430), + [anon_sym_else] = ACTIONS(1430), [sym_comment] = ACTIONS(52), }, [435] = { - [anon_sym_fi] = ACTIONS(1430), + [anon_sym_fi] = ACTIONS(1432), [sym_comment] = ACTIONS(52), }, [436] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), [anon_sym_PIPE_AMP] = ACTIONS(226), [anon_sym_AMP_AMP] = ACTIONS(230), [anon_sym_PIPE_PIPE] = ACTIONS(230), @@ -15394,9 +15456,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(256), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), }, [437] = { [sym__terminated_statement] = STATE(432), @@ -15404,7 +15466,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_while_statement] = STATE(433), [sym_if_statement] = STATE(433), [sym_elif_clause] = STATE(434), - [sym_else_clause] = STATE(719), + [sym_else_clause] = STATE(720), [sym_case_statement] = STATE(433), [sym_function_definition] = STATE(433), [sym_subshell] = STATE(433), @@ -15422,15 +15484,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(720), - [aux_sym_if_statement_repeat1] = STATE(721), + [aux_sym_program_repeat1] = STATE(721), + [aux_sym_if_statement_repeat1] = STATE(722), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1432), + [anon_sym_fi] = ACTIONS(1434), [anon_sym_elif] = ACTIONS(768), [anon_sym_else] = ACTIONS(770), [anon_sym_case] = ACTIONS(22), @@ -15458,11 +15520,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [438] = { [sym_elif_clause] = STATE(434), - [sym_else_clause] = STATE(719), - [aux_sym_if_statement_repeat1] = STATE(722), - [anon_sym_fi] = ACTIONS(1430), - [anon_sym_elif] = ACTIONS(1434), - [anon_sym_else] = ACTIONS(1436), + [sym_else_clause] = STATE(720), + [aux_sym_if_statement_repeat1] = STATE(723), + [anon_sym_fi] = ACTIONS(1432), + [anon_sym_elif] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1438), [sym_comment] = ACTIONS(52), }, [439] = { @@ -15484,36 +15546,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1023), }, [441] = { - [sym_case_item] = STATE(725), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), - [aux_sym_case_statement_repeat1] = STATE(727), - [anon_sym_esac] = ACTIONS(1438), + [sym_case_item] = STATE(726), + [sym_concatenation] = STATE(727), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [aux_sym_case_statement_repeat1] = STATE(728), + [anon_sym_esac] = ACTIONS(1440), [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(1440), + [sym_raw_string] = ACTIONS(1442), [anon_sym_DOLLAR] = ACTIONS(274), [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), [anon_sym_BQUOTE] = ACTIONS(280), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(1442), + [sym_word] = ACTIONS(1444), [sym_comment] = ACTIONS(52), }, [442] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1444), + [anon_sym_SEMI_SEMI] = ACTIONS(1446), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_LF] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LF] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), }, [443] = { [aux_sym_concatenation_repeat1] = STATE(443), - [sym__concat] = ACTIONS(1446), + [sym__concat] = ACTIONS(1448), [anon_sym_in] = ACTIONS(1023), [anon_sym_SEMI_SEMI] = ACTIONS(1023), [sym_comment] = ACTIONS(150), @@ -15522,13 +15584,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1023), }, [444] = { - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), [sym_comment] = ACTIONS(52), }, [445] = { - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1457), [sym_comment] = ACTIONS(52), }, [446] = { @@ -15541,95 +15603,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1038), }, [447] = { - [anon_sym_AT] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(1459), [sym_comment] = ACTIONS(52), }, [448] = { - [sym_concatenation] = STATE(735), - [sym_string] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(736), + [sym_simple_expansion] = STATE(736), + [sym_expansion] = STATE(736), + [sym_command_substitution] = STATE(736), + [sym_process_substitution] = STATE(736), + [anon_sym_RBRACE] = ACTIONS(1461), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1459), + [sym_raw_string] = ACTIONS(1463), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1461), + [sym_word] = ACTIONS(1465), [sym_comment] = ACTIONS(52), }, [449] = { - [sym__concat] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_SEMI_SEMI] = ACTIONS(1048), + [sym__concat] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_LF] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), }, [450] = { - [anon_sym_AT] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1467), [sym_comment] = ACTIONS(52), }, [451] = { - [sym_concatenation] = STATE(738), - [sym_string] = STATE(737), - [sym_simple_expansion] = STATE(737), - [sym_expansion] = STATE(737), - [sym_command_substitution] = STATE(737), - [sym_process_substitution] = STATE(737), + [sym_concatenation] = STATE(740), + [sym_string] = STATE(739), + [sym_simple_expansion] = STATE(739), + [sym_expansion] = STATE(739), + [sym_command_substitution] = STATE(739), + [sym_process_substitution] = STATE(739), + [anon_sym_RBRACE] = ACTIONS(1455), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1465), + [sym_raw_string] = ACTIONS(1469), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1467), + [sym_word] = ACTIONS(1471), [sym_comment] = ACTIONS(52), }, [452] = { - [sym__concat] = ACTIONS(1136), - [anon_sym_in] = ACTIONS(1138), - [anon_sym_SEMI_SEMI] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [anon_sym_in] = ACTIONS(1140), + [anon_sym_SEMI_SEMI] = ACTIONS(1140), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LF] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_LF] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), }, [453] = { - [sym__concat] = ACTIONS(1192), - [anon_sym_in] = ACTIONS(1194), - [anon_sym_SEMI_SEMI] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_LF] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), }, [454] = { - [sym_compound_statement] = STATE(739), + [sym_compound_statement] = STATE(741), [anon_sym_LBRACE] = ACTIONS(334), [sym_comment] = ACTIONS(52), }, [455] = { - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_SEMI_SEMI] = ACTIONS(1469), - [anon_sym_PIPE_AMP] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_RPAREN] = ACTIONS(1473), + [anon_sym_SEMI_SEMI] = ACTIONS(1473), + [anon_sym_PIPE_AMP] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_LF] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_LF] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), }, [456] = { - [aux_sym_concatenation_repeat1] = STATE(740), + [aux_sym_concatenation_repeat1] = STATE(742), [sym_file_descriptor] = ACTIONS(710), [sym__concat] = ACTIONS(734), [sym_variable_name] = ACTIONS(710), @@ -15661,7 +15725,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(712), }, [457] = { - [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_RPAREN] = ACTIONS(1475), [sym_comment] = ACTIONS(52), }, [458] = { @@ -15719,71 +15783,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1023), }, [460] = { - [sym_compound_statement] = STATE(742), + [sym_compound_statement] = STATE(744), [anon_sym_LBRACE] = ACTIONS(334), [sym_comment] = ACTIONS(52), }, [461] = { - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_AMP_GT] = ACTIONS(1473), - [anon_sym_AMP_GT_GT] = ACTIONS(1475), - [anon_sym_LT_AMP] = ACTIONS(1475), - [anon_sym_GT_AMP] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_AMP_GT] = ACTIONS(1477), + [anon_sym_AMP_GT_GT] = ACTIONS(1479), + [anon_sym_LT_AMP] = ACTIONS(1479), + [anon_sym_GT_AMP] = ACTIONS(1479), [sym_comment] = ACTIONS(52), }, [462] = { - [sym_concatenation] = STATE(619), - [sym_string] = STATE(744), - [sym_simple_expansion] = STATE(744), - [sym_expansion] = STATE(744), - [sym_command_substitution] = STATE(744), - [sym_process_substitution] = STATE(744), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_raw_string] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1218), - [anon_sym_GT_LPAREN] = ACTIONS(1218), - [sym_word] = ACTIONS(1479), + [sym_concatenation] = STATE(620), + [sym_string] = STATE(746), + [sym_simple_expansion] = STATE(746), + [sym_expansion] = STATE(746), + [sym_command_substitution] = STATE(746), + [sym_process_substitution] = STATE(746), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_raw_string] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1218), + [anon_sym_LT_LPAREN] = ACTIONS(1220), + [anon_sym_GT_LPAREN] = ACTIONS(1220), + [sym_word] = ACTIONS(1483), [sym_comment] = ACTIONS(52), }, [463] = { - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_SEMI_SEMI] = ACTIONS(1481), - [anon_sym_PIPE_AMP] = ACTIONS(1481), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_SEMI_SEMI] = ACTIONS(1485), + [anon_sym_PIPE_AMP] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_LF] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_LF] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), }, [464] = { [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), [anon_sym_PIPE_AMP] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [465] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), [anon_sym_PIPE_AMP] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), [anon_sym_LT] = ACTIONS(256), [anon_sym_GT] = ACTIONS(256), [anon_sym_GT_GT] = ACTIONS(256), @@ -15801,51 +15865,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(256), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [466] = { - [sym_concatenation] = STATE(621), - [sym_string] = STATE(745), - [sym_simple_expansion] = STATE(745), - [sym_expansion] = STATE(745), - [sym_command_substitution] = STATE(745), - [sym_process_substitution] = STATE(745), + [sym_concatenation] = STATE(622), + [sym_string] = STATE(747), + [sym_simple_expansion] = STATE(747), + [sym_expansion] = STATE(747), + [sym_command_substitution] = STATE(747), + [sym_process_substitution] = STATE(747), [anon_sym_DQUOTE] = ACTIONS(584), - [sym_raw_string] = ACTIONS(1483), + [sym_raw_string] = ACTIONS(1487), [anon_sym_DOLLAR] = ACTIONS(588), [anon_sym_DOLLAR_LBRACE] = ACTIONS(590), [anon_sym_DOLLAR_LPAREN] = ACTIONS(592), [anon_sym_BQUOTE] = ACTIONS(594), [anon_sym_LT_LPAREN] = ACTIONS(596), [anon_sym_GT_LPAREN] = ACTIONS(596), - [sym_word] = ACTIONS(1485), + [sym_word] = ACTIONS(1489), [sym_comment] = ACTIONS(52), }, [467] = { - [aux_sym_concatenation_repeat1] = STATE(746), + [aux_sym_concatenation_repeat1] = STATE(748), [sym_file_descriptor] = ACTIONS(400), - [sym__concat] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(1234), - [anon_sym_SEMI_SEMI] = ACTIONS(1234), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_AMP_GT] = ACTIONS(1234), - [anon_sym_AMP_GT_GT] = ACTIONS(1234), - [anon_sym_LT_AMP] = ACTIONS(1234), - [anon_sym_GT_AMP] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(1234), + [sym__concat] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_RPAREN] = ACTIONS(1236), + [anon_sym_SEMI_SEMI] = ACTIONS(1236), + [anon_sym_PIPE_AMP] = ACTIONS(1236), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1236), + [anon_sym_GT_GT] = ACTIONS(1236), + [anon_sym_AMP_GT] = ACTIONS(1236), + [anon_sym_AMP_GT_GT] = ACTIONS(1236), + [anon_sym_LT_AMP] = ACTIONS(1236), + [anon_sym_GT_AMP] = ACTIONS(1236), + [anon_sym_LT_LT] = ACTIONS(1236), + [anon_sym_LT_LT_DASH] = ACTIONS(1236), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LF] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_LF] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), }, [468] = { [sym_concatenation] = STATE(145), @@ -15855,47 +15919,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(208), [sym_process_substitution] = STATE(208), [aux_sym_for_statement_repeat1] = STATE(468), - [sym_file_descriptor] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_SEMI_SEMI] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(1264), - [anon_sym_LT_AMP] = ACTIONS(1264), - [anon_sym_GT_AMP] = ACTIONS(1264), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_LT_LT_DASH] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_raw_string] = ACTIONS(1487), - [anon_sym_DOLLAR] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1278), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), - [sym_word] = ACTIONS(1487), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_raw_string] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1286), + [anon_sym_GT_LPAREN] = ACTIONS(1286), + [sym_word] = ACTIONS(1491), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_LF] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), }, [469] = { [sym_file_redirect] = STATE(144), [sym_heredoc_redirect] = STATE(144), [aux_sym_command_repeat2] = STATE(470), [sym_file_descriptor] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_RPAREN] = ACTIONS(1287), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), - [anon_sym_PIPE_AMP] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_SEMI_SEMI] = ACTIONS(1289), + [anon_sym_PIPE_AMP] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), [anon_sym_LT] = ACTIONS(352), [anon_sym_GT] = ACTIONS(352), [anon_sym_GT_GT] = ACTIONS(352), @@ -15906,34 +15970,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(238), [anon_sym_LT_LT_DASH] = ACTIONS(238), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), }, [470] = { [sym_file_redirect] = STATE(144), [sym_heredoc_redirect] = STATE(144), [aux_sym_command_repeat2] = STATE(470), - [sym_file_descriptor] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_SEMI_SEMI] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_AMP_GT] = ACTIONS(1493), - [anon_sym_AMP_GT_GT] = ACTIONS(1493), - [anon_sym_LT_AMP] = ACTIONS(1493), - [anon_sym_GT_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1297), - [anon_sym_LT_LT_DASH] = ACTIONS(1297), + [sym_file_descriptor] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_AMP_GT] = ACTIONS(1497), + [anon_sym_AMP_GT_GT] = ACTIONS(1497), + [anon_sym_LT_AMP] = ACTIONS(1497), + [anon_sym_GT_AMP] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_LT_LT_DASH] = ACTIONS(1299), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_LF] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), }, [471] = { [sym_file_descriptor] = ACTIONS(574), @@ -15942,7 +16006,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(576), [anon_sym_if] = ACTIONS(576), [anon_sym_case] = ACTIONS(576), - [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1500), [anon_sym_function] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(576), @@ -15975,14 +16039,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(208), [sym_process_substitution] = STATE(208), [aux_sym_for_statement_repeat1] = STATE(468), - [aux_sym_command_repeat2] = STATE(748), + [aux_sym_command_repeat2] = STATE(750), [sym_file_descriptor] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_RPAREN] = ACTIONS(1287), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), - [anon_sym_PIPE_AMP] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_SEMI_SEMI] = ACTIONS(1289), + [anon_sym_PIPE_AMP] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), [anon_sym_LT] = ACTIONS(352), [anon_sym_GT] = ACTIONS(352), [anon_sym_GT_GT] = ACTIONS(352), @@ -16002,17 +16066,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(252), [sym_word] = ACTIONS(354), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), }, [473] = { [sym__concat] = ACTIONS(1000), [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_RBRACK] = ACTIONS(1498), + [anon_sym_RBRACK] = ACTIONS(1502), [anon_sym_DQUOTE] = ACTIONS(1000), [sym_raw_string] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1502), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), [anon_sym_BQUOTE] = ACTIONS(1000), @@ -16024,10 +16088,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [474] = { [sym__concat] = ACTIONS(1021), [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1504), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), @@ -16038,11 +16102,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [475] = { [aux_sym_concatenation_repeat1] = STATE(475), - [sym__concat] = ACTIONS(1502), - [anon_sym_RBRACK] = ACTIONS(1500), + [sym__concat] = ACTIONS(1506), + [anon_sym_RBRACK] = ACTIONS(1504), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), @@ -16052,22 +16116,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [476] = { - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1511), [sym_comment] = ACTIONS(52), }, [477] = { - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1515), [sym_comment] = ACTIONS(52), }, [478] = { [sym__concat] = ACTIONS(1036), [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_RBRACK] = ACTIONS(1513), + [anon_sym_RBRACK] = ACTIONS(1517), [anon_sym_DQUOTE] = ACTIONS(1036), [sym_raw_string] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1517), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), [anon_sym_BQUOTE] = ACTIONS(1036), @@ -16077,100 +16141,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [479] = { - [anon_sym_AT] = ACTIONS(1515), + [anon_sym_AT] = ACTIONS(1519), [sym_comment] = ACTIONS(52), }, [480] = { - [sym_concatenation] = STATE(755), - [sym_string] = STATE(754), - [sym_simple_expansion] = STATE(754), - [sym_expansion] = STATE(754), - [sym_command_substitution] = STATE(754), - [sym_process_substitution] = STATE(754), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1519), - [sym_comment] = ACTIONS(52), - }, - [481] = { - [sym__concat] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_RBRACK] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1046), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1046), - [anon_sym_GT_LPAREN] = ACTIONS(1046), - [sym_word] = ACTIONS(1048), - [sym_comment] = ACTIONS(52), - }, - [482] = { - [anon_sym_AT] = ACTIONS(1523), - [sym_comment] = ACTIONS(52), - }, - [483] = { [sym_concatenation] = STATE(758), [sym_string] = STATE(757), [sym_simple_expansion] = STATE(757), [sym_expansion] = STATE(757), [sym_command_substitution] = STATE(757), [sym_process_substitution] = STATE(757), + [anon_sym_RBRACE] = ACTIONS(1521), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1525), + [sym_raw_string] = ACTIONS(1523), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1527), + [sym_word] = ACTIONS(1525), + [sym_comment] = ACTIONS(52), + }, + [481] = { + [sym__concat] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_RBRACK] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_LT_LPAREN] = ACTIONS(1048), + [anon_sym_GT_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1050), + [sym_comment] = ACTIONS(52), + }, + [482] = { + [anon_sym_AT] = ACTIONS(1529), + [sym_comment] = ACTIONS(52), + }, + [483] = { + [sym_concatenation] = STATE(761), + [sym_string] = STATE(760), + [sym_simple_expansion] = STATE(760), + [sym_expansion] = STATE(760), + [sym_command_substitution] = STATE(760), + [sym_process_substitution] = STATE(760), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(1533), [sym_comment] = ACTIONS(52), }, [484] = { - [sym__concat] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_RBRACK] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_raw_string] = ACTIONS(1136), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), - [anon_sym_LT_LPAREN] = ACTIONS(1136), - [anon_sym_GT_LPAREN] = ACTIONS(1136), - [sym_word] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_RBRACK] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_raw_string] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [anon_sym_LT_LPAREN] = ACTIONS(1138), + [anon_sym_GT_LPAREN] = ACTIONS(1138), + [sym_word] = ACTIONS(1140), [sym_comment] = ACTIONS(52), }, [485] = { - [sym__concat] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_RBRACK] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_word] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_RBRACK] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1194), + [sym_raw_string] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(1194), + [anon_sym_GT_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(1196), [sym_comment] = ACTIONS(52), }, [486] = { [sym__concat] = ACTIONS(1000), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1498), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1502), [anon_sym_DQUOTE] = ACTIONS(1000), [sym_raw_string] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1502), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), [anon_sym_BQUOTE] = ACTIONS(1000), @@ -16181,10 +16247,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [487] = { [sym__concat] = ACTIONS(1021), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1500), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1504), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), @@ -16195,11 +16261,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [488] = { [aux_sym_concatenation_repeat1] = STATE(488), - [sym__concat] = ACTIONS(1533), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1500), + [sym__concat] = ACTIONS(1539), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1504), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), @@ -16209,21 +16275,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [489] = { - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1544), [sym_comment] = ACTIONS(52), }, [490] = { - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1548), [sym_comment] = ACTIONS(52), }, [491] = { [sym__concat] = ACTIONS(1036), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1513), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1517), [anon_sym_DQUOTE] = ACTIONS(1036), [sym_raw_string] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1517), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), [anon_sym_BQUOTE] = ACTIONS(1036), @@ -16233,313 +16299,317 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [492] = { - [anon_sym_AT] = ACTIONS(1544), - [sym_comment] = ACTIONS(52), - }, - [493] = { - [sym_concatenation] = STATE(765), - [sym_string] = STATE(764), - [sym_simple_expansion] = STATE(764), - [sym_expansion] = STATE(764), - [sym_command_substitution] = STATE(764), - [sym_process_substitution] = STATE(764), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1546), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1548), - [sym_comment] = ACTIONS(52), - }, - [494] = { - [sym__concat] = ACTIONS(1046), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1046), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1046), - [anon_sym_GT_LPAREN] = ACTIONS(1046), - [sym_word] = ACTIONS(1048), - [sym_comment] = ACTIONS(52), - }, - [495] = { [anon_sym_AT] = ACTIONS(1550), [sym_comment] = ACTIONS(52), }, - [496] = { - [sym_concatenation] = STATE(768), - [sym_string] = STATE(767), - [sym_simple_expansion] = STATE(767), - [sym_expansion] = STATE(767), - [sym_command_substitution] = STATE(767), - [sym_process_substitution] = STATE(767), + [493] = { + [sym_concatenation] = STATE(769), + [sym_string] = STATE(768), + [sym_simple_expansion] = STATE(768), + [sym_expansion] = STATE(768), + [sym_command_substitution] = STATE(768), + [sym_process_substitution] = STATE(768), + [anon_sym_RBRACE] = ACTIONS(1552), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1552), + [sym_raw_string] = ACTIONS(1554), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1554), + [sym_word] = ACTIONS(1556), + [sym_comment] = ACTIONS(52), + }, + [494] = { + [sym__concat] = ACTIONS(1048), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_LT_LPAREN] = ACTIONS(1048), + [anon_sym_GT_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1050), + [sym_comment] = ACTIONS(52), + }, + [495] = { + [anon_sym_AT] = ACTIONS(1558), + [sym_comment] = ACTIONS(52), + }, + [496] = { + [sym_concatenation] = STATE(772), + [sym_string] = STATE(771), + [sym_simple_expansion] = STATE(771), + [sym_expansion] = STATE(771), + [sym_command_substitution] = STATE(771), + [sym_process_substitution] = STATE(771), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(1562), [sym_comment] = ACTIONS(52), }, [497] = { - [sym__concat] = ACTIONS(1136), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_raw_string] = ACTIONS(1136), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), - [anon_sym_LT_LPAREN] = ACTIONS(1136), - [anon_sym_GT_LPAREN] = ACTIONS(1136), - [sym_word] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_raw_string] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [anon_sym_LT_LPAREN] = ACTIONS(1138), + [anon_sym_GT_LPAREN] = ACTIONS(1138), + [sym_word] = ACTIONS(1140), [sym_comment] = ACTIONS(52), }, [498] = { - [sym__concat] = ACTIONS(1192), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_word] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1194), + [sym_raw_string] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(1194), + [anon_sym_GT_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(1196), [sym_comment] = ACTIONS(52), }, [499] = { [sym_file_descriptor] = ACTIONS(1000), [sym__concat] = ACTIONS(1000), [sym_variable_name] = ACTIONS(1000), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1502), [anon_sym_GT_GT] = ACTIONS(1000), - [anon_sym_AMP_GT] = ACTIONS(1498), + [anon_sym_AMP_GT] = ACTIONS(1502), [anon_sym_AMP_GT_GT] = ACTIONS(1000), [anon_sym_LT_AMP] = ACTIONS(1000), [anon_sym_GT_AMP] = ACTIONS(1000), [anon_sym_DQUOTE] = ACTIONS(1000), [sym_raw_string] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1502), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), [anon_sym_BQUOTE] = ACTIONS(1000), [anon_sym_LT_LPAREN] = ACTIONS(1000), [anon_sym_GT_LPAREN] = ACTIONS(1000), - [sym_word] = ACTIONS(1498), + [sym_word] = ACTIONS(1502), [sym_comment] = ACTIONS(52), }, [500] = { [sym_file_descriptor] = ACTIONS(1021), [sym__concat] = ACTIONS(1021), [sym_variable_name] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), [anon_sym_LT_LPAREN] = ACTIONS(1021), [anon_sym_GT_LPAREN] = ACTIONS(1021), - [sym_word] = ACTIONS(1500), + [sym_word] = ACTIONS(1504), [sym_comment] = ACTIONS(52), }, [501] = { [aux_sym_concatenation_repeat1] = STATE(501), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(1556), + [sym__concat] = ACTIONS(1564), [sym_variable_name] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), [anon_sym_LT_LPAREN] = ACTIONS(1021), [anon_sym_GT_LPAREN] = ACTIONS(1021), - [sym_word] = ACTIONS(1500), + [sym_word] = ACTIONS(1504), [sym_comment] = ACTIONS(52), }, [502] = { - [anon_sym_RBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1569), [sym_comment] = ACTIONS(52), }, [503] = { - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1573), [sym_comment] = ACTIONS(52), }, [504] = { [sym_file_descriptor] = ACTIONS(1036), [sym__concat] = ACTIONS(1036), [sym_variable_name] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1517), [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(1517), [anon_sym_AMP_GT_GT] = ACTIONS(1036), [anon_sym_LT_AMP] = ACTIONS(1036), [anon_sym_GT_AMP] = ACTIONS(1036), [anon_sym_DQUOTE] = ACTIONS(1036), [sym_raw_string] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1517), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), [anon_sym_BQUOTE] = ACTIONS(1036), [anon_sym_LT_LPAREN] = ACTIONS(1036), [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_word] = ACTIONS(1513), + [sym_word] = ACTIONS(1517), [sym_comment] = ACTIONS(52), }, [505] = { - [anon_sym_AT] = ACTIONS(1567), + [anon_sym_AT] = ACTIONS(1575), [sym_comment] = ACTIONS(52), }, [506] = { - [sym_concatenation] = STATE(775), - [sym_string] = STATE(774), - [sym_simple_expansion] = STATE(774), - [sym_expansion] = STATE(774), - [sym_command_substitution] = STATE(774), - [sym_process_substitution] = STATE(774), + [sym_concatenation] = STATE(780), + [sym_string] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [anon_sym_RBRACE] = ACTIONS(1577), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(1579), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1571), + [sym_word] = ACTIONS(1581), [sym_comment] = ACTIONS(52), }, [507] = { - [sym_file_descriptor] = ACTIONS(1046), - [sym__concat] = ACTIONS(1046), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1521), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_AMP_GT] = ACTIONS(1521), - [anon_sym_AMP_GT_GT] = ACTIONS(1046), - [anon_sym_LT_AMP] = ACTIONS(1046), - [anon_sym_GT_AMP] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1046), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1046), - [anon_sym_GT_LPAREN] = ACTIONS(1046), - [sym_word] = ACTIONS(1521), + [sym_file_descriptor] = ACTIONS(1048), + [sym__concat] = ACTIONS(1048), + [sym_variable_name] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(1048), + [anon_sym_LT_AMP] = ACTIONS(1048), + [anon_sym_GT_AMP] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_LT_LPAREN] = ACTIONS(1048), + [anon_sym_GT_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1527), [sym_comment] = ACTIONS(52), }, [508] = { - [anon_sym_AT] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1583), [sym_comment] = ACTIONS(52), }, [509] = { - [sym_concatenation] = STATE(778), - [sym_string] = STATE(777), - [sym_simple_expansion] = STATE(777), - [sym_expansion] = STATE(777), - [sym_command_substitution] = STATE(777), - [sym_process_substitution] = STATE(777), + [sym_concatenation] = STATE(783), + [sym_string] = STATE(782), + [sym_simple_expansion] = STATE(782), + [sym_expansion] = STATE(782), + [sym_command_substitution] = STATE(782), + [sym_process_substitution] = STATE(782), + [anon_sym_RBRACE] = ACTIONS(1571), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1575), + [sym_raw_string] = ACTIONS(1585), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1577), + [sym_word] = ACTIONS(1587), [sym_comment] = ACTIONS(52), }, [510] = { - [sym_file_descriptor] = ACTIONS(1136), - [sym__concat] = ACTIONS(1136), - [sym_variable_name] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_AMP_GT] = ACTIONS(1529), - [anon_sym_AMP_GT_GT] = ACTIONS(1136), - [anon_sym_LT_AMP] = ACTIONS(1136), - [anon_sym_GT_AMP] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_raw_string] = ACTIONS(1136), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), - [anon_sym_LT_LPAREN] = ACTIONS(1136), - [anon_sym_GT_LPAREN] = ACTIONS(1136), - [sym_word] = ACTIONS(1529), + [sym_file_descriptor] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [sym_variable_name] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1138), + [anon_sym_AMP_GT] = ACTIONS(1535), + [anon_sym_AMP_GT_GT] = ACTIONS(1138), + [anon_sym_LT_AMP] = ACTIONS(1138), + [anon_sym_GT_AMP] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_raw_string] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [anon_sym_LT_LPAREN] = ACTIONS(1138), + [anon_sym_GT_LPAREN] = ACTIONS(1138), + [sym_word] = ACTIONS(1535), [sym_comment] = ACTIONS(52), }, [511] = { - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1192), - [sym_variable_name] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1531), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_word] = ACTIONS(1531), + [sym_file_descriptor] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [sym_variable_name] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_GT_GT] = ACTIONS(1194), + [anon_sym_AMP_GT] = ACTIONS(1537), + [anon_sym_AMP_GT_GT] = ACTIONS(1194), + [anon_sym_LT_AMP] = ACTIONS(1194), + [anon_sym_GT_AMP] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1194), + [sym_raw_string] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(1194), + [anon_sym_GT_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(1537), [sym_comment] = ACTIONS(52), }, [512] = { - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), [sym_comment] = ACTIONS(52), }, [513] = { - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), [sym_comment] = ACTIONS(52), }, [514] = { [anon_sym_DQUOTE] = ACTIONS(1038), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1517), [anon_sym_DOLLAR] = ACTIONS(1038), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1038), @@ -16547,185 +16617,219 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(150), }, [515] = { - [anon_sym_AT] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1597), [sym_comment] = ACTIONS(52), }, [516] = { - [sym_concatenation] = STATE(785), - [sym_string] = STATE(784), - [sym_simple_expansion] = STATE(784), - [sym_expansion] = STATE(784), - [sym_command_substitution] = STATE(784), - [sym_process_substitution] = STATE(784), + [sym_concatenation] = STATE(791), + [sym_string] = STATE(790), + [sym_simple_expansion] = STATE(790), + [sym_expansion] = STATE(790), + [sym_command_substitution] = STATE(790), + [sym_process_substitution] = STATE(790), + [anon_sym_RBRACE] = ACTIONS(1599), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1589), + [sym_raw_string] = ACTIONS(1601), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1591), + [sym_word] = ACTIONS(1603), [sym_comment] = ACTIONS(52), }, [517] = { - [anon_sym_DQUOTE] = ACTIONS(1048), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), - [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1050), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1527), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), [sym_comment] = ACTIONS(150), }, [518] = { - [anon_sym_AT] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1605), [sym_comment] = ACTIONS(52), }, [519] = { - [sym_concatenation] = STATE(788), - [sym_string] = STATE(787), - [sym_simple_expansion] = STATE(787), - [sym_expansion] = STATE(787), - [sym_command_substitution] = STATE(787), - [sym_process_substitution] = STATE(787), + [sym_concatenation] = STATE(794), + [sym_string] = STATE(793), + [sym_simple_expansion] = STATE(793), + [sym_expansion] = STATE(793), + [sym_command_substitution] = STATE(793), + [sym_process_substitution] = STATE(793), + [anon_sym_RBRACE] = ACTIONS(1593), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1595), + [sym_raw_string] = ACTIONS(1607), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1597), + [sym_word] = ACTIONS(1609), [sym_comment] = ACTIONS(52), }, [520] = { - [anon_sym_DQUOTE] = ACTIONS(1138), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1529), - [anon_sym_DOLLAR] = ACTIONS(1138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), - [anon_sym_BQUOTE] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1140), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1535), + [anon_sym_DOLLAR] = ACTIONS(1140), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1140), + [anon_sym_BQUOTE] = ACTIONS(1140), [sym_comment] = ACTIONS(150), }, [521] = { - [sym_file_descriptor] = ACTIONS(1599), - [sym__concat] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_SEMI_SEMI] = ACTIONS(1601), - [anon_sym_PIPE_AMP] = ACTIONS(1601), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_PIPE_PIPE] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_GT] = ACTIONS(1601), - [anon_sym_GT_GT] = ACTIONS(1601), - [anon_sym_AMP_GT] = ACTIONS(1601), - [anon_sym_AMP_GT_GT] = ACTIONS(1601), - [anon_sym_LT_AMP] = ACTIONS(1601), - [anon_sym_GT_AMP] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1601), - [anon_sym_LT_LT_DASH] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [sym_raw_string] = ACTIONS(1601), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1601), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [anon_sym_LT_LPAREN] = ACTIONS(1601), - [anon_sym_GT_LPAREN] = ACTIONS(1601), - [sym_word] = ACTIONS(1601), + [sym_file_descriptor] = ACTIONS(1611), + [sym__concat] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(1613), + [anon_sym_SEMI_SEMI] = ACTIONS(1613), + [anon_sym_PIPE_AMP] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1613), + [anon_sym_PIPE_PIPE] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(1613), + [anon_sym_GT] = ACTIONS(1613), + [anon_sym_GT_GT] = ACTIONS(1613), + [anon_sym_AMP_GT] = ACTIONS(1613), + [anon_sym_AMP_GT_GT] = ACTIONS(1613), + [anon_sym_LT_AMP] = ACTIONS(1613), + [anon_sym_GT_AMP] = ACTIONS(1613), + [anon_sym_LT_LT] = ACTIONS(1613), + [anon_sym_LT_LT_DASH] = ACTIONS(1613), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_raw_string] = ACTIONS(1613), + [anon_sym_DOLLAR] = ACTIONS(1613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1613), + [anon_sym_BQUOTE] = ACTIONS(1613), + [anon_sym_LT_LPAREN] = ACTIONS(1613), + [anon_sym_GT_LPAREN] = ACTIONS(1613), + [sym_word] = ACTIONS(1613), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_LF] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1613), }, [522] = { - [anon_sym_AT] = ACTIONS(1603), + [anon_sym_AT] = ACTIONS(1615), [sym_comment] = ACTIONS(52), }, [523] = { - [sym_file_descriptor] = ACTIONS(1605), - [sym__concat] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_SEMI_SEMI] = ACTIONS(1607), - [anon_sym_PIPE_AMP] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_PIPE_PIPE] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_GT] = ACTIONS(1607), - [anon_sym_AMP_GT] = ACTIONS(1607), - [anon_sym_AMP_GT_GT] = ACTIONS(1607), - [anon_sym_LT_AMP] = ACTIONS(1607), - [anon_sym_GT_AMP] = ACTIONS(1607), - [anon_sym_LT_LT] = ACTIONS(1607), - [anon_sym_LT_LT_DASH] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_raw_string] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1607), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1607), - [anon_sym_BQUOTE] = ACTIONS(1607), - [anon_sym_LT_LPAREN] = ACTIONS(1607), - [anon_sym_GT_LPAREN] = ACTIONS(1607), - [sym_word] = ACTIONS(1607), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_LF] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - }, - [524] = { - [anon_sym_AT] = ACTIONS(1609), - [sym_comment] = ACTIONS(52), - }, - [525] = { - [anon_sym_RBRACK] = ACTIONS(1611), - [sym_comment] = ACTIONS(52), - }, - [526] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(1613), - [sym_comment] = ACTIONS(52), - }, - [527] = { - [anon_sym_RBRACE] = ACTIONS(1613), - [sym_comment] = ACTIONS(52), - }, - [528] = { - [anon_sym_RBRACK] = ACTIONS(1615), - [sym_comment] = ACTIONS(52), - }, - [529] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(1617), - [sym_comment] = ACTIONS(52), - }, - [530] = { - [anon_sym_RBRACE] = ACTIONS(1617), - [sym_comment] = ACTIONS(52), - }, - [531] = { - [sym_file_descriptor] = ACTIONS(710), - [sym_variable_name] = ACTIONS(710), + [sym_file_descriptor] = ACTIONS(1617), + [sym__concat] = ACTIONS(1617), [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_PIPE_AMP] = ACTIONS(710), - [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_SEMI_SEMI] = ACTIONS(1619), + [anon_sym_PIPE_AMP] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1619), [anon_sym_PIPE_PIPE] = ACTIONS(1619), [anon_sym_LT] = ACTIONS(1619), [anon_sym_GT] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(1619), [anon_sym_AMP_GT] = ACTIONS(1619), + [anon_sym_AMP_GT_GT] = ACTIONS(1619), + [anon_sym_LT_AMP] = ACTIONS(1619), + [anon_sym_GT_AMP] = ACTIONS(1619), + [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_LT_LT_DASH] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym_raw_string] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [anon_sym_LT_LPAREN] = ACTIONS(1619), + [anon_sym_GT_LPAREN] = ACTIONS(1619), + [sym_word] = ACTIONS(1619), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + }, + [524] = { + [anon_sym_AT] = ACTIONS(1621), + [sym_comment] = ACTIONS(52), + }, + [525] = { + [anon_sym_RBRACK] = ACTIONS(1623), + [sym_comment] = ACTIONS(52), + }, + [526] = { + [sym_file_descriptor] = ACTIONS(1625), + [sym__concat] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1627), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_SEMI_SEMI] = ACTIONS(1627), + [anon_sym_PIPE_AMP] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_GT_GT] = ACTIONS(1627), + [anon_sym_AMP_GT] = ACTIONS(1627), + [anon_sym_AMP_GT_GT] = ACTIONS(1627), + [anon_sym_LT_AMP] = ACTIONS(1627), + [anon_sym_GT_AMP] = ACTIONS(1627), + [anon_sym_LT_LT] = ACTIONS(1627), + [anon_sym_LT_LT_DASH] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_raw_string] = ACTIONS(1627), + [anon_sym_DOLLAR] = ACTIONS(1627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [anon_sym_LT_LPAREN] = ACTIONS(1627), + [anon_sym_GT_LPAREN] = ACTIONS(1627), + [sym_word] = ACTIONS(1627), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + }, + [527] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(1629), + [sym_comment] = ACTIONS(52), + }, + [528] = { + [anon_sym_RBRACE] = ACTIONS(1629), + [sym_comment] = ACTIONS(52), + }, + [529] = { + [anon_sym_RBRACK] = ACTIONS(1631), + [sym_comment] = ACTIONS(52), + }, + [530] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(1633), + [sym_comment] = ACTIONS(52), + }, + [531] = { + [anon_sym_RBRACE] = ACTIONS(1633), + [sym_comment] = ACTIONS(52), + }, + [532] = { + [sym_file_descriptor] = ACTIONS(710), + [sym_variable_name] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_PIPE_AMP] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_AMP_GT] = ACTIONS(1635), [anon_sym_AMP_GT_GT] = ACTIONS(710), [anon_sym_LT_AMP] = ACTIONS(710), [anon_sym_GT_AMP] = ACTIONS(710), [anon_sym_DQUOTE] = ACTIONS(710), [sym_raw_string] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1635), [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), [anon_sym_DOLLAR_LPAREN] = ACTIONS(710), [anon_sym_BQUOTE] = ACTIONS(710), @@ -16734,15 +16838,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(712), [sym_comment] = ACTIONS(52), }, - [532] = { + [533] = { [sym_concatenation] = STATE(397), [sym_string] = STATE(391), [sym_simple_expansion] = STATE(391), [sym_expansion] = STATE(391), [sym_command_substitution] = STATE(391), [sym_process_substitution] = STATE(391), - [aux_sym_for_statement_repeat1] = STATE(797), - [anon_sym_RPAREN] = ACTIONS(1621), + [aux_sym_for_statement_repeat1] = STATE(803), + [anon_sym_RPAREN] = ACTIONS(1637), [anon_sym_DQUOTE] = ACTIONS(716), [sym_raw_string] = ACTIONS(718), [anon_sym_DOLLAR] = ACTIONS(720), @@ -16754,12 +16858,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(730), [sym_comment] = ACTIONS(52), }, - [533] = { + [534] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), - [aux_sym_string_repeat1] = STATE(799), - [anon_sym_DQUOTE] = ACTIONS(1623), + [aux_sym_string_repeat1] = STATE(805), + [anon_sym_DQUOTE] = ACTIONS(1639), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -16767,26 +16871,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [534] = { - [aux_sym_concatenation_repeat1] = STATE(801), + [535] = { + [aux_sym_concatenation_repeat1] = STATE(807), [sym_file_descriptor] = ACTIONS(710), - [sym__concat] = ACTIONS(1625), + [sym__concat] = ACTIONS(1641), [sym_variable_name] = ACTIONS(710), - [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1635), [anon_sym_RPAREN] = ACTIONS(710), [anon_sym_PIPE_AMP] = ACTIONS(710), [anon_sym_AMP_AMP] = ACTIONS(710), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_GT] = ACTIONS(1635), [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_AMP_GT] = ACTIONS(1619), + [anon_sym_AMP_GT] = ACTIONS(1635), [anon_sym_AMP_GT_GT] = ACTIONS(710), [anon_sym_LT_AMP] = ACTIONS(710), [anon_sym_GT_AMP] = ACTIONS(710), [anon_sym_DQUOTE] = ACTIONS(710), [sym_raw_string] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1635), [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), [anon_sym_DOLLAR_LPAREN] = ACTIONS(710), [anon_sym_BQUOTE] = ACTIONS(710), @@ -16795,27 +16899,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(712), [sym_comment] = ACTIONS(52), }, - [535] = { - [sym_special_variable_name] = STATE(804), - [anon_sym_DOLLAR] = ACTIONS(1627), - [anon_sym_POUND] = ACTIONS(1627), - [anon_sym_AT] = ACTIONS(1627), - [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_0] = ACTIONS(1631), - [anon_sym__] = ACTIONS(1631), - }, [536] = { - [sym_special_variable_name] = STATE(807), + [sym_special_variable_name] = STATE(810), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_AT] = ACTIONS(1643), + [sym_comment] = ACTIONS(150), + [sym_simple_variable_name] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_0] = ACTIONS(1647), + [anon_sym__] = ACTIONS(1647), + }, + [537] = { + [sym_special_variable_name] = STATE(813), [anon_sym_DOLLAR] = ACTIONS(164), - [anon_sym_POUND] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(1649), [anon_sym_AT] = ACTIONS(164), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1635), + [sym_simple_variable_name] = ACTIONS(1651), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -16823,19 +16927,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [537] = { - [sym_for_statement] = STATE(808), - [sym_while_statement] = STATE(808), - [sym_if_statement] = STATE(808), - [sym_case_statement] = STATE(808), - [sym_function_definition] = STATE(808), - [sym_subshell] = STATE(808), - [sym_pipeline] = STATE(808), - [sym_list] = STATE(808), - [sym_bracket_command] = STATE(808), - [sym_command] = STATE(808), + [538] = { + [sym_for_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_if_statement] = STATE(814), + [sym_case_statement] = STATE(814), + [sym_function_definition] = STATE(814), + [sym_subshell] = STATE(814), + [sym_pipeline] = STATE(814), + [sym_list] = STATE(814), + [sym_bracket_command] = STATE(814), + [sym_command] = STATE(814), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(809), + [sym_environment_variable_assignment] = STATE(815), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -16873,19 +16977,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(204), [sym_comment] = ACTIONS(52), }, - [538] = { - [sym_for_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_case_statement] = STATE(810), - [sym_function_definition] = STATE(810), - [sym_subshell] = STATE(810), - [sym_pipeline] = STATE(810), - [sym_list] = STATE(810), - [sym_bracket_command] = STATE(810), - [sym_command] = STATE(810), + [539] = { + [sym_for_statement] = STATE(816), + [sym_while_statement] = STATE(816), + [sym_if_statement] = STATE(816), + [sym_case_statement] = STATE(816), + [sym_function_definition] = STATE(816), + [sym_subshell] = STATE(816), + [sym_pipeline] = STATE(816), + [sym_list] = STATE(816), + [sym_bracket_command] = STATE(816), + [sym_command] = STATE(816), [sym_command_name] = STATE(128), - [sym_environment_variable_assignment] = STATE(811), + [sym_environment_variable_assignment] = STATE(817), [sym_subscript] = STATE(130), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -16923,19 +17027,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(212), [sym_comment] = ACTIONS(52), }, - [539] = { - [sym_for_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [sym_if_statement] = STATE(812), - [sym_case_statement] = STATE(812), - [sym_function_definition] = STATE(812), - [sym_subshell] = STATE(812), - [sym_pipeline] = STATE(812), - [sym_list] = STATE(812), - [sym_bracket_command] = STATE(812), - [sym_command] = STATE(812), + [540] = { + [sym_for_statement] = STATE(818), + [sym_while_statement] = STATE(818), + [sym_if_statement] = STATE(818), + [sym_case_statement] = STATE(818), + [sym_function_definition] = STATE(818), + [sym_subshell] = STATE(818), + [sym_pipeline] = STATE(818), + [sym_list] = STATE(818), + [sym_bracket_command] = STATE(818), + [sym_command] = STATE(818), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(813), + [sym_environment_variable_assignment] = STATE(819), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -16973,14 +17077,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(204), [sym_comment] = ACTIONS(52), }, - [540] = { + [541] = { [sym_concatenation] = STATE(422), [sym_string] = STATE(416), [sym_simple_expansion] = STATE(416), [sym_expansion] = STATE(416), [sym_command_substitution] = STATE(416), [sym_process_substitution] = STATE(416), - [aux_sym_for_statement_repeat1] = STATE(814), + [aux_sym_for_statement_repeat1] = STATE(820), [anon_sym_DQUOTE] = ACTIONS(746), [sym_raw_string] = ACTIONS(748), [anon_sym_DOLLAR] = ACTIONS(750), @@ -16992,7 +17096,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(760), [sym_comment] = ACTIONS(52), }, - [541] = { + [542] = { [sym__terminated_statement] = STATE(425), [sym_for_statement] = STATE(426), [sym_while_statement] = STATE(426), @@ -17014,13 +17118,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(816), + [aux_sym_program_repeat1] = STATE(822), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1637), + [anon_sym_done] = ACTIONS(1653), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -17045,22 +17149,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [542] = { - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_PIPE_AMP] = ACTIONS(1641), - [anon_sym_AMP_AMP] = ACTIONS(1641), - [anon_sym_PIPE_PIPE] = ACTIONS(1641), - [anon_sym_BQUOTE] = ACTIONS(1641), + [543] = { + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_PIPE_AMP] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), [sym_comment] = ACTIONS(52), }, - [543] = { + [544] = { [sym__terminated_statement] = STATE(432), [sym_for_statement] = STATE(433), [sym_while_statement] = STATE(433), [sym_if_statement] = STATE(433), [sym_elif_clause] = STATE(434), - [sym_else_clause] = STATE(818), + [sym_else_clause] = STATE(824), [sym_case_statement] = STATE(433), [sym_function_definition] = STATE(433), [sym_subshell] = STATE(433), @@ -17078,15 +17182,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(819), - [aux_sym_if_statement_repeat1] = STATE(820), + [aux_sym_program_repeat1] = STATE(825), + [aux_sym_if_statement_repeat1] = STATE(826), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1643), + [anon_sym_fi] = ACTIONS(1659), [anon_sym_elif] = ACTIONS(768), [anon_sym_else] = ACTIONS(770), [anon_sym_case] = ACTIONS(22), @@ -17112,55 +17216,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [544] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1645), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_LF] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1645), - }, [545] = { - [anon_sym_in] = ACTIONS(1647), - [sym_comment] = ACTIONS(52), + [anon_sym_SEMI_SEMI] = ACTIONS(1661), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1661), }, [546] = { - [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_in] = ACTIONS(1663), [sym_comment] = ACTIONS(52), }, [547] = { - [sym_file_redirect] = STATE(824), - [sym_file_descriptor] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1653), - [anon_sym_PIPE_AMP] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_GT] = ACTIONS(1134), - [anon_sym_AMP_GT] = ACTIONS(1132), - [anon_sym_AMP_GT_GT] = ACTIONS(1134), - [anon_sym_LT_AMP] = ACTIONS(1134), - [anon_sym_GT_AMP] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(1665), [sym_comment] = ACTIONS(52), }, [548] = { - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1657), - [anon_sym_PIPE_AMP] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1657), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_BQUOTE] = ACTIONS(1657), + [sym_file_redirect] = STATE(830), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_PIPE_AMP] = ACTIONS(1669), + [anon_sym_AMP_AMP] = ACTIONS(1669), + [anon_sym_PIPE_PIPE] = ACTIONS(1669), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_AMP_GT] = ACTIONS(1134), + [anon_sym_AMP_GT_GT] = ACTIONS(1136), + [anon_sym_LT_AMP] = ACTIONS(1136), + [anon_sym_GT_AMP] = ACTIONS(1136), [sym_comment] = ACTIONS(52), }, [549] = { + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_PIPE_AMP] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1673), + [anon_sym_PIPE_PIPE] = ACTIONS(1673), + [anon_sym_BQUOTE] = ACTIONS(1673), + [sym_comment] = ACTIONS(52), + }, + [550] = { [sym_file_descriptor] = ACTIONS(574), [sym_variable_name] = ACTIONS(574), [anon_sym_for] = ACTIONS(576), [anon_sym_while] = ACTIONS(576), [anon_sym_if] = ACTIONS(576), [anon_sym_case] = ACTIONS(576), - [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1675), [anon_sym_function] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(576), @@ -17183,24 +17287,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(578), [sym_comment] = ACTIONS(52), }, - [550] = { + [551] = { [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_SEMI_SEMI] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_SEMI_SEMI] = ACTIONS(1679), [anon_sym_PIPE_AMP] = ACTIONS(342), [anon_sym_AMP_AMP] = ACTIONS(348), [anon_sym_PIPE_PIPE] = ACTIONS(348), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_LF] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1679), }, - [551] = { + [552] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_SEMI_SEMI] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_SEMI_SEMI] = ACTIONS(1679), [anon_sym_PIPE_AMP] = ACTIONS(342), [anon_sym_AMP_AMP] = ACTIONS(348), [anon_sym_PIPE_PIPE] = ACTIONS(348), @@ -17221,39 +17325,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(256), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_LF] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), - }, - [552] = { - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_PIPE_AMP] = ACTIONS(1667), - [anon_sym_AMP_AMP] = ACTIONS(1667), - [anon_sym_PIPE_PIPE] = ACTIONS(1667), - [anon_sym_BQUOTE] = ACTIONS(1667), - [sym_comment] = ACTIONS(52), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1679), }, [553] = { + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_PIPE_AMP] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_comment] = ACTIONS(52), + }, + [554] = { [sym_file_descriptor] = ACTIONS(1000), [sym__concat] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1502), [anon_sym_RPAREN] = ACTIONS(1000), [anon_sym_PIPE_AMP] = ACTIONS(1000), [anon_sym_AMP_AMP] = ACTIONS(1000), - [anon_sym_PIPE_PIPE] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1502), [anon_sym_GT_GT] = ACTIONS(1000), - [anon_sym_AMP_GT] = ACTIONS(1498), + [anon_sym_AMP_GT] = ACTIONS(1502), [anon_sym_AMP_GT_GT] = ACTIONS(1000), [anon_sym_LT_AMP] = ACTIONS(1000), [anon_sym_GT_AMP] = ACTIONS(1000), - [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1502), [anon_sym_LT_LT_DASH] = ACTIONS(1000), [anon_sym_DQUOTE] = ACTIONS(1000), [sym_raw_string] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1502), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), [anon_sym_BQUOTE] = ACTIONS(1000), @@ -17262,55 +17366,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1002), [sym_comment] = ACTIONS(52), }, - [554] = { + [555] = { [sym_file_descriptor] = ACTIONS(1021), [sym__concat] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), - [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1504), [anon_sym_LT_LT_DASH] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_BQUOTE] = ACTIONS(1021), - [anon_sym_LT_LPAREN] = ACTIONS(1021), - [anon_sym_GT_LPAREN] = ACTIONS(1021), - [sym_word] = ACTIONS(1023), - [sym_comment] = ACTIONS(52), - }, - [555] = { - [aux_sym_concatenation_repeat1] = STATE(555), - [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_RPAREN] = ACTIONS(1021), - [anon_sym_PIPE_AMP] = ACTIONS(1021), - [anon_sym_AMP_AMP] = ACTIONS(1021), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), - [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), - [anon_sym_AMP_GT_GT] = ACTIONS(1021), - [anon_sym_LT_AMP] = ACTIONS(1021), - [anon_sym_GT_AMP] = ACTIONS(1021), - [anon_sym_LT_LT] = ACTIONS(1500), - [anon_sym_LT_LT_DASH] = ACTIONS(1021), - [anon_sym_DQUOTE] = ACTIONS(1021), - [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), @@ -17320,35 +17395,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [556] = { - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1674), + [aux_sym_concatenation_repeat1] = STATE(556), + [sym_file_descriptor] = ACTIONS(1021), + [sym__concat] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_PIPE_AMP] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1504), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_LT_LT_DASH] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [sym_raw_string] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_BQUOTE] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1021), + [anon_sym_GT_LPAREN] = ACTIONS(1021), + [sym_word] = ACTIONS(1023), [sym_comment] = ACTIONS(52), }, [557] = { - [anon_sym_RBRACE] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1690), [sym_comment] = ACTIONS(52), }, [558] = { + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1694), + [sym_comment] = ACTIONS(52), + }, + [559] = { [sym_file_descriptor] = ACTIONS(1036), [sym__concat] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1517), [anon_sym_RPAREN] = ACTIONS(1036), [anon_sym_PIPE_AMP] = ACTIONS(1036), [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1517), [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(1517), [anon_sym_AMP_GT_GT] = ACTIONS(1036), [anon_sym_LT_AMP] = ACTIONS(1036), [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1517), [anon_sym_LT_LT_DASH] = ACTIONS(1036), [anon_sym_DQUOTE] = ACTIONS(1036), [sym_raw_string] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1517), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), [anon_sym_BQUOTE] = ACTIONS(1036), @@ -17357,157 +17461,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1038), [sym_comment] = ACTIONS(52), }, - [559] = { - [anon_sym_AT] = ACTIONS(1680), - [sym_comment] = ACTIONS(52), - }, [560] = { - [sym_concatenation] = STATE(833), - [sym_string] = STATE(832), - [sym_simple_expansion] = STATE(832), - [sym_expansion] = STATE(832), - [sym_command_substitution] = STATE(832), - [sym_process_substitution] = STATE(832), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1682), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1696), [sym_comment] = ACTIONS(52), }, [561] = { - [sym_file_descriptor] = ACTIONS(1046), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_PIPE_AMP] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1521), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_AMP_GT] = ACTIONS(1521), - [anon_sym_AMP_GT_GT] = ACTIONS(1046), - [anon_sym_LT_AMP] = ACTIONS(1046), - [anon_sym_GT_AMP] = ACTIONS(1046), - [anon_sym_LT_LT] = ACTIONS(1521), - [anon_sym_LT_LT_DASH] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1046), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1046), - [anon_sym_GT_LPAREN] = ACTIONS(1046), - [sym_word] = ACTIONS(1048), - [sym_comment] = ACTIONS(52), - }, - [562] = { - [anon_sym_AT] = ACTIONS(1686), - [sym_comment] = ACTIONS(52), - }, - [563] = { - [sym_concatenation] = STATE(836), - [sym_string] = STATE(835), - [sym_simple_expansion] = STATE(835), - [sym_expansion] = STATE(835), - [sym_command_substitution] = STATE(835), - [sym_process_substitution] = STATE(835), + [sym_concatenation] = STATE(840), + [sym_string] = STATE(839), + [sym_simple_expansion] = STATE(839), + [sym_expansion] = STATE(839), + [sym_command_substitution] = STATE(839), + [sym_process_substitution] = STATE(839), + [anon_sym_RBRACE] = ACTIONS(1698), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1700), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1690), + [sym_word] = ACTIONS(1702), + [sym_comment] = ACTIONS(52), + }, + [562] = { + [sym_file_descriptor] = ACTIONS(1048), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_PIPE_AMP] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(1048), + [anon_sym_LT_AMP] = ACTIONS(1048), + [anon_sym_GT_AMP] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_LT_LPAREN] = ACTIONS(1048), + [anon_sym_GT_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1050), + [sym_comment] = ACTIONS(52), + }, + [563] = { + [anon_sym_AT] = ACTIONS(1704), [sym_comment] = ACTIONS(52), }, [564] = { - [sym_file_descriptor] = ACTIONS(1136), - [sym__concat] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_AMP_GT] = ACTIONS(1529), - [anon_sym_AMP_GT_GT] = ACTIONS(1136), - [anon_sym_LT_AMP] = ACTIONS(1136), - [anon_sym_GT_AMP] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_LT_LT_DASH] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_raw_string] = ACTIONS(1136), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), - [anon_sym_LT_LPAREN] = ACTIONS(1136), - [anon_sym_GT_LPAREN] = ACTIONS(1136), - [sym_word] = ACTIONS(1138), + [sym_concatenation] = STATE(843), + [sym_string] = STATE(842), + [sym_simple_expansion] = STATE(842), + [sym_expansion] = STATE(842), + [sym_command_substitution] = STATE(842), + [sym_process_substitution] = STATE(842), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(1708), [sym_comment] = ACTIONS(52), }, [565] = { - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_RPAREN] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1531), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_word] = ACTIONS(1194), + [sym_file_descriptor] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_PIPE_AMP] = ACTIONS(1138), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE_PIPE] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1138), + [anon_sym_AMP_GT] = ACTIONS(1535), + [anon_sym_AMP_GT_GT] = ACTIONS(1138), + [anon_sym_LT_AMP] = ACTIONS(1138), + [anon_sym_GT_AMP] = ACTIONS(1138), + [anon_sym_LT_LT] = ACTIONS(1535), + [anon_sym_LT_LT_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_raw_string] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [anon_sym_LT_LPAREN] = ACTIONS(1138), + [anon_sym_GT_LPAREN] = ACTIONS(1138), + [sym_word] = ACTIONS(1140), [sym_comment] = ACTIONS(52), }, [566] = { - [sym_compound_statement] = STATE(837), - [anon_sym_LBRACE] = ACTIONS(504), + [sym_file_descriptor] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_PIPE_AMP] = ACTIONS(1194), + [anon_sym_AMP_AMP] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_GT_GT] = ACTIONS(1194), + [anon_sym_AMP_GT] = ACTIONS(1537), + [anon_sym_AMP_GT_GT] = ACTIONS(1194), + [anon_sym_LT_AMP] = ACTIONS(1194), + [anon_sym_GT_AMP] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1537), + [anon_sym_LT_LT_DASH] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1194), + [sym_raw_string] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(1194), + [anon_sym_GT_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(1196), [sym_comment] = ACTIONS(52), }, [567] = { - [sym_file_descriptor] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_RPAREN] = ACTIONS(1196), - [anon_sym_PIPE_AMP] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1196), - [anon_sym_PIPE_PIPE] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1196), - [anon_sym_LT_AMP] = ACTIONS(1196), - [anon_sym_GT_AMP] = ACTIONS(1196), - [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_compound_statement] = STATE(844), + [anon_sym_LBRACE] = ACTIONS(504), [sym_comment] = ACTIONS(52), }, [568] = { + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1710), + [anon_sym_GT_GT] = ACTIONS(1198), + [anon_sym_AMP_GT] = ACTIONS(1710), + [anon_sym_AMP_GT_GT] = ACTIONS(1198), + [anon_sym_LT_AMP] = ACTIONS(1198), + [anon_sym_GT_AMP] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1198), + [sym_comment] = ACTIONS(52), + }, + [569] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -17529,7 +17635,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(610), + [aux_sym_program_repeat1] = STATE(611), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -17539,7 +17645,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_LT] = ACTIONS(32), @@ -17560,136 +17666,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [569] = { - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1696), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [sym_comment] = ACTIONS(52), - }, [570] = { - [sym_concatenation] = STATE(847), - [sym_string] = STATE(841), - [sym_simple_expansion] = STATE(841), - [sym_expansion] = STATE(841), - [sym_command_substitution] = STATE(841), - [sym_process_substitution] = STATE(841), - [anon_sym_DQUOTE] = ACTIONS(1700), - [sym_raw_string] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_GT_GT] = ACTIONS(1716), + [anon_sym_AMP_GT] = ACTIONS(1714), + [anon_sym_AMP_GT_GT] = ACTIONS(1716), + [anon_sym_LT_AMP] = ACTIONS(1716), + [anon_sym_GT_AMP] = ACTIONS(1716), [sym_comment] = ACTIONS(52), }, [571] = { - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1653), - [anon_sym_PIPE_AMP] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_comment] = ACTIONS(52), - }, - [572] = { - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_PIPE_AMP] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [sym_comment] = ACTIONS(52), - }, - [573] = { - [sym_file_descriptor] = ACTIONS(254), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_PIPE_AMP] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_AMP_GT] = ACTIONS(258), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_LT_LPAREN] = ACTIONS(254), - [anon_sym_GT_LPAREN] = ACTIONS(254), - [sym_word] = ACTIONS(256), - [sym_comment] = ACTIONS(52), - }, - [574] = { - [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_PIPE_AMP] = ACTIONS(510), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [sym_comment] = ACTIONS(52), - }, - [575] = { - [sym_file_descriptor] = ACTIONS(254), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_PIPE_AMP] = ACTIONS(510), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_AMP_GT] = ACTIONS(258), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_LT_LPAREN] = ACTIONS(254), - [anon_sym_GT_LPAREN] = ACTIONS(254), - [sym_word] = ACTIONS(256), - [sym_comment] = ACTIONS(52), - }, - [576] = { - [sym_concatenation] = STATE(849), + [sym_concatenation] = STATE(854), [sym_string] = STATE(848), [sym_simple_expansion] = STATE(848), [sym_expansion] = STATE(848), [sym_command_substitution] = STATE(848), [sym_process_substitution] = STATE(848), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1150), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1154), - [anon_sym_LT_LPAREN] = ACTIONS(1156), - [anon_sym_GT_LPAREN] = ACTIONS(1156), - [sym_word] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1718), + [sym_raw_string] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_word] = ACTIONS(1732), + [sym_comment] = ACTIONS(52), + }, + [572] = { + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_PIPE_AMP] = ACTIONS(1669), + [anon_sym_AMP_AMP] = ACTIONS(1669), + [anon_sym_PIPE_PIPE] = ACTIONS(1669), + [anon_sym_BQUOTE] = ACTIONS(1669), + [sym_comment] = ACTIONS(52), + }, + [573] = { + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_PIPE_AMP] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_BQUOTE] = ACTIONS(1736), + [sym_comment] = ACTIONS(52), + }, + [574] = { + [sym_file_descriptor] = ACTIONS(254), + [sym_variable_name] = ACTIONS(254), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_PIPE_AMP] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(254), + [anon_sym_AMP_GT] = ACTIONS(258), + [anon_sym_AMP_GT_GT] = ACTIONS(254), + [anon_sym_LT_AMP] = ACTIONS(254), + [anon_sym_GT_AMP] = ACTIONS(254), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(254), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(254), + [anon_sym_LT_LPAREN] = ACTIONS(254), + [anon_sym_GT_LPAREN] = ACTIONS(254), + [sym_word] = ACTIONS(256), + [sym_comment] = ACTIONS(52), + }, + [575] = { + [anon_sym_PIPE] = ACTIONS(506), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(1738), + [sym_comment] = ACTIONS(52), + }, + [576] = { + [sym_file_descriptor] = ACTIONS(254), + [sym_variable_name] = ACTIONS(254), + [anon_sym_PIPE] = ACTIONS(506), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(254), + [anon_sym_AMP_GT] = ACTIONS(258), + [anon_sym_AMP_GT_GT] = ACTIONS(254), + [anon_sym_LT_AMP] = ACTIONS(254), + [anon_sym_GT_AMP] = ACTIONS(254), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(254), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(254), + [anon_sym_LT_LPAREN] = ACTIONS(254), + [anon_sym_GT_LPAREN] = ACTIONS(254), + [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, [577] = { + [sym_concatenation] = STATE(856), + [sym_string] = STATE(855), + [sym_simple_expansion] = STATE(855), + [sym_expansion] = STATE(855), + [sym_command_substitution] = STATE(855), + [sym_process_substitution] = STATE(855), + [anon_sym_DQUOTE] = ACTIONS(1146), + [sym_raw_string] = ACTIONS(1742), + [anon_sym_DOLLAR] = ACTIONS(1150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_LT_LPAREN] = ACTIONS(1158), + [anon_sym_GT_LPAREN] = ACTIONS(1158), + [sym_word] = ACTIONS(1744), + [sym_comment] = ACTIONS(52), + }, + [578] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), - [aux_sym_string_repeat1] = STATE(851), - [anon_sym_DQUOTE] = ACTIONS(1728), + [aux_sym_string_repeat1] = STATE(858), + [anon_sym_DQUOTE] = ACTIONS(1746), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -17697,10 +17803,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [578] = { - [aux_sym_concatenation_repeat1] = STATE(853), + [579] = { + [aux_sym_concatenation_repeat1] = STATE(860), [sym_file_descriptor] = ACTIONS(400), - [sym__concat] = ACTIONS(1730), + [sym__concat] = ACTIONS(1748), [anon_sym_PIPE] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_PIPE_AMP] = ACTIONS(400), @@ -17717,27 +17823,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(52), }, - [579] = { - [sym_special_variable_name] = STATE(856), - [anon_sym_DOLLAR] = ACTIONS(1732), - [anon_sym_POUND] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1732), - [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_0] = ACTIONS(1736), - [anon_sym__] = ACTIONS(1736), - }, [580] = { - [sym_special_variable_name] = STATE(859), + [sym_special_variable_name] = STATE(863), + [anon_sym_DOLLAR] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1750), + [sym_comment] = ACTIONS(150), + [sym_simple_variable_name] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_0] = ACTIONS(1754), + [anon_sym__] = ACTIONS(1754), + }, + [581] = { + [sym_special_variable_name] = STATE(866), [anon_sym_DOLLAR] = ACTIONS(164), - [anon_sym_POUND] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(164), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1740), + [sym_simple_variable_name] = ACTIONS(1758), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -17745,19 +17851,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [581] = { - [sym_for_statement] = STATE(860), - [sym_while_statement] = STATE(860), - [sym_if_statement] = STATE(860), - [sym_case_statement] = STATE(860), - [sym_function_definition] = STATE(860), - [sym_subshell] = STATE(860), - [sym_pipeline] = STATE(860), - [sym_list] = STATE(860), - [sym_bracket_command] = STATE(860), - [sym_command] = STATE(860), + [582] = { + [sym_for_statement] = STATE(867), + [sym_while_statement] = STATE(867), + [sym_if_statement] = STATE(867), + [sym_case_statement] = STATE(867), + [sym_function_definition] = STATE(867), + [sym_subshell] = STATE(867), + [sym_pipeline] = STATE(867), + [sym_list] = STATE(867), + [sym_bracket_command] = STATE(867), + [sym_command] = STATE(867), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(861), + [sym_environment_variable_assignment] = STATE(868), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -17795,19 +17901,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(204), [sym_comment] = ACTIONS(52), }, - [582] = { - [sym_for_statement] = STATE(862), - [sym_while_statement] = STATE(862), - [sym_if_statement] = STATE(862), - [sym_case_statement] = STATE(862), - [sym_function_definition] = STATE(862), - [sym_subshell] = STATE(862), - [sym_pipeline] = STATE(862), - [sym_list] = STATE(862), - [sym_bracket_command] = STATE(862), - [sym_command] = STATE(862), + [583] = { + [sym_for_statement] = STATE(869), + [sym_while_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_case_statement] = STATE(869), + [sym_function_definition] = STATE(869), + [sym_subshell] = STATE(869), + [sym_pipeline] = STATE(869), + [sym_list] = STATE(869), + [sym_bracket_command] = STATE(869), + [sym_command] = STATE(869), [sym_command_name] = STATE(128), - [sym_environment_variable_assignment] = STATE(863), + [sym_environment_variable_assignment] = STATE(870), [sym_subscript] = STATE(130), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -17845,19 +17951,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(212), [sym_comment] = ACTIONS(52), }, - [583] = { - [sym_for_statement] = STATE(864), - [sym_while_statement] = STATE(864), - [sym_if_statement] = STATE(864), - [sym_case_statement] = STATE(864), - [sym_function_definition] = STATE(864), - [sym_subshell] = STATE(864), - [sym_pipeline] = STATE(864), - [sym_list] = STATE(864), - [sym_bracket_command] = STATE(864), - [sym_command] = STATE(864), + [584] = { + [sym_for_statement] = STATE(871), + [sym_while_statement] = STATE(871), + [sym_if_statement] = STATE(871), + [sym_case_statement] = STATE(871), + [sym_function_definition] = STATE(871), + [sym_subshell] = STATE(871), + [sym_pipeline] = STATE(871), + [sym_list] = STATE(871), + [sym_bracket_command] = STATE(871), + [sym_command] = STATE(871), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(865), + [sym_environment_variable_assignment] = STATE(872), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -17895,7 +18001,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(204), [sym_comment] = ACTIONS(52), }, - [584] = { + [585] = { [sym_file_descriptor] = ACTIONS(400), [anon_sym_PIPE] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(400), @@ -17914,98 +18020,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(400), [sym_comment] = ACTIONS(52), }, - [585] = { - [sym_file_descriptor] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1742), - [anon_sym_AMP_GT_GT] = ACTIONS(1246), - [anon_sym_LT_AMP] = ACTIONS(1246), - [anon_sym_GT_AMP] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1742), - [anon_sym_LT_LT_DASH] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [sym_comment] = ACTIONS(52), - }, [586] = { - [sym_simple_expansion] = STATE(638), - [sym_expansion] = STATE(638), - [aux_sym_heredoc_repeat1] = STATE(867), - [sym__heredoc_middle] = ACTIONS(1250), - [sym__heredoc_end] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1248), + [anon_sym_PIPE_AMP] = ACTIONS(1248), + [anon_sym_AMP_AMP] = ACTIONS(1248), + [anon_sym_PIPE_PIPE] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_GT] = ACTIONS(1248), + [anon_sym_AMP_GT] = ACTIONS(1760), + [anon_sym_AMP_GT_GT] = ACTIONS(1248), + [anon_sym_LT_AMP] = ACTIONS(1248), + [anon_sym_GT_AMP] = ACTIONS(1248), + [anon_sym_LT_LT] = ACTIONS(1760), + [anon_sym_LT_LT_DASH] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), [sym_comment] = ACTIONS(52), }, [587] = { - [sym_file_descriptor] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1746), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), + [sym_simple_expansion] = STATE(639), + [sym_expansion] = STATE(639), + [aux_sym_heredoc_repeat1] = STATE(874), + [sym__heredoc_middle] = ACTIONS(1252), + [sym__heredoc_end] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), [sym_comment] = ACTIONS(52), }, [588] = { + [sym_file_descriptor] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1260), + [anon_sym_PIPE_AMP] = ACTIONS(1260), + [anon_sym_AMP_AMP] = ACTIONS(1260), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1260), + [anon_sym_AMP_GT] = ACTIONS(1764), + [anon_sym_AMP_GT_GT] = ACTIONS(1260), + [anon_sym_LT_AMP] = ACTIONS(1260), + [anon_sym_GT_AMP] = ACTIONS(1260), + [anon_sym_LT_LT] = ACTIONS(1764), + [anon_sym_LT_LT_DASH] = ACTIONS(1260), + [anon_sym_BQUOTE] = ACTIONS(1260), + [sym_comment] = ACTIONS(52), + }, + [589] = { [sym_concatenation] = STATE(327), [sym_string] = STATE(325), [sym_simple_expansion] = STATE(325), [sym_expansion] = STATE(325), [sym_command_substitution] = STATE(325), [sym_process_substitution] = STATE(325), - [aux_sym_for_statement_repeat1] = STATE(588), - [sym_file_descriptor] = ACTIONS(1262), + [aux_sym_for_statement_repeat1] = STATE(589), + [sym_file_descriptor] = ACTIONS(1264), [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_PIPE_AMP] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1264), + [anon_sym_PIPE_AMP] = ACTIONS(1264), + [anon_sym_AMP_AMP] = ACTIONS(1264), [anon_sym_PIPE_PIPE] = ACTIONS(874), [anon_sym_LT] = ACTIONS(874), [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1264), [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(1262), - [anon_sym_LT_AMP] = ACTIONS(1262), - [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1264), + [anon_sym_LT_AMP] = ACTIONS(1264), + [anon_sym_GT_AMP] = ACTIONS(1264), [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_raw_string] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_word] = ACTIONS(1769), + [anon_sym_LT_LT_DASH] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1778), + [anon_sym_BQUOTE] = ACTIONS(1781), + [anon_sym_LT_LPAREN] = ACTIONS(1784), + [anon_sym_GT_LPAREN] = ACTIONS(1784), + [sym_word] = ACTIONS(1787), [sym_comment] = ACTIONS(52), }, - [589] = { + [590] = { [sym_file_redirect] = STATE(326), [sym_heredoc_redirect] = STATE(326), - [aux_sym_command_repeat2] = STATE(590), + [aux_sym_command_repeat2] = STATE(591), [sym_file_descriptor] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(520), [anon_sym_GT] = ACTIONS(520), [anon_sym_GT_GT] = ACTIONS(522), @@ -18017,28 +18123,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(526), [sym_comment] = ACTIONS(52), }, - [590] = { + [591] = { [sym_file_redirect] = STATE(326), [sym_heredoc_redirect] = STATE(326), - [aux_sym_command_repeat2] = STATE(590), - [sym_file_descriptor] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_PIPE_AMP] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_PIPE_PIPE] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1783), - [anon_sym_GT_GT] = ACTIONS(1786), - [anon_sym_AMP_GT] = ACTIONS(1783), - [anon_sym_AMP_GT_GT] = ACTIONS(1786), - [anon_sym_LT_AMP] = ACTIONS(1786), - [anon_sym_GT_AMP] = ACTIONS(1786), - [anon_sym_LT_LT] = ACTIONS(1789), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), + [aux_sym_command_repeat2] = STATE(591), + [sym_file_descriptor] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_PIPE_AMP] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1799), + [anon_sym_PIPE_PIPE] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1801), + [anon_sym_GT_GT] = ACTIONS(1804), + [anon_sym_AMP_GT] = ACTIONS(1801), + [anon_sym_AMP_GT_GT] = ACTIONS(1804), + [anon_sym_LT_AMP] = ACTIONS(1804), + [anon_sym_GT_AMP] = ACTIONS(1804), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_LT_LT_DASH] = ACTIONS(1810), [sym_comment] = ACTIONS(52), }, - [591] = { + [592] = { [sym_file_redirect] = STATE(326), [sym_heredoc_redirect] = STATE(326), [sym_concatenation] = STATE(327), @@ -18047,14 +18153,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(325), [sym_command_substitution] = STATE(325), [sym_process_substitution] = STATE(325), - [aux_sym_for_statement_repeat1] = STATE(588), - [aux_sym_command_repeat2] = STATE(868), + [aux_sym_for_statement_repeat1] = STATE(589), + [aux_sym_command_repeat2] = STATE(875), [sym_file_descriptor] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1790), [anon_sym_LT] = ACTIONS(520), [anon_sym_GT] = ACTIONS(520), [anon_sym_GT_GT] = ACTIONS(522), @@ -18075,25 +18181,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(530), [sym_comment] = ACTIONS(52), }, - [592] = { - [aux_sym_concatenation_repeat1] = STATE(869), + [593] = { + [aux_sym_concatenation_repeat1] = STATE(876), [sym_file_descriptor] = ACTIONS(710), - [sym__concat] = ACTIONS(1625), + [sym__concat] = ACTIONS(1641), [sym_variable_name] = ACTIONS(710), - [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1635), [anon_sym_PIPE_AMP] = ACTIONS(710), [anon_sym_AMP_AMP] = ACTIONS(710), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_GT] = ACTIONS(1635), [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_AMP_GT] = ACTIONS(1619), + [anon_sym_AMP_GT] = ACTIONS(1635), [anon_sym_AMP_GT_GT] = ACTIONS(710), [anon_sym_LT_AMP] = ACTIONS(710), [anon_sym_GT_AMP] = ACTIONS(710), [anon_sym_DQUOTE] = ACTIONS(710), [sym_raw_string] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1635), [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), [anon_sym_DOLLAR_LPAREN] = ACTIONS(710), [anon_sym_BQUOTE] = ACTIONS(710), @@ -18102,47 +18208,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(712), [sym_comment] = ACTIONS(52), }, - [593] = { - [anon_sym_RPAREN] = ACTIONS(1795), - [sym_comment] = ACTIONS(52), - }, [594] = { - [sym_file_redirect] = STATE(824), - [sym_file_descriptor] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_PIPE_AMP] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1182), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(1182), - [anon_sym_LT_AMP] = ACTIONS(1182), - [anon_sym_GT_AMP] = ACTIONS(1182), - [anon_sym_BQUOTE] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1813), [sym_comment] = ACTIONS(52), }, [595] = { - [aux_sym_concatenation_repeat1] = STATE(595), + [sym_file_redirect] = STATE(830), + [sym_file_descriptor] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PIPE_AMP] = ACTIONS(1669), + [anon_sym_AMP_AMP] = ACTIONS(1669), + [anon_sym_PIPE_PIPE] = ACTIONS(1669), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_AMP_GT] = ACTIONS(1182), + [anon_sym_AMP_GT_GT] = ACTIONS(1184), + [anon_sym_LT_AMP] = ACTIONS(1184), + [anon_sym_GT_AMP] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(1669), + [sym_comment] = ACTIONS(52), + }, + [596] = { + [aux_sym_concatenation_repeat1] = STATE(596), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1500), + [sym__concat] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), - [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1504), [anon_sym_LT_LT_DASH] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), @@ -18151,46 +18257,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1023), [sym_comment] = ACTIONS(52), }, - [596] = { - [sym_compound_statement] = STATE(871), + [597] = { + [sym_compound_statement] = STATE(878), [anon_sym_LBRACE] = ACTIONS(504), [sym_comment] = ACTIONS(52), }, - [597] = { - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1799), - [anon_sym_AMP_GT] = ACTIONS(1797), - [anon_sym_AMP_GT_GT] = ACTIONS(1799), - [anon_sym_LT_AMP] = ACTIONS(1799), - [anon_sym_GT_AMP] = ACTIONS(1799), - [sym_comment] = ACTIONS(52), - }, [598] = { - [sym_concatenation] = STATE(847), - [sym_string] = STATE(873), - [sym_simple_expansion] = STATE(873), - [sym_expansion] = STATE(873), - [sym_command_substitution] = STATE(873), - [sym_process_substitution] = STATE(873), - [anon_sym_DQUOTE] = ACTIONS(1700), - [sym_raw_string] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_GT] = ACTIONS(1815), + [anon_sym_GT_GT] = ACTIONS(1817), + [anon_sym_AMP_GT] = ACTIONS(1815), + [anon_sym_AMP_GT_GT] = ACTIONS(1817), + [anon_sym_LT_AMP] = ACTIONS(1817), + [anon_sym_GT_AMP] = ACTIONS(1817), [sym_comment] = ACTIONS(52), }, [599] = { + [sym_concatenation] = STATE(854), + [sym_string] = STATE(880), + [sym_simple_expansion] = STATE(880), + [sym_expansion] = STATE(880), + [sym_command_substitution] = STATE(880), + [sym_process_substitution] = STATE(880), + [anon_sym_DQUOTE] = ACTIONS(1718), + [sym_raw_string] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_word] = ACTIONS(1821), + [sym_comment] = ACTIONS(52), + }, + [600] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_PIPE_AMP] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_PIPE_AMP] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1734), [anon_sym_LT] = ACTIONS(258), [anon_sym_GT] = ACTIONS(258), [anon_sym_GT_GT] = ACTIONS(254), @@ -18203,27 +18309,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1736), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [600] = { + [601] = { [anon_sym_PIPE] = ACTIONS(542), [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1738), [sym_comment] = ACTIONS(52), }, - [601] = { + [602] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(542), [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), [anon_sym_LT] = ACTIONS(258), [anon_sym_GT] = ACTIONS(258), [anon_sym_GT_GT] = ACTIONS(254), @@ -18242,28 +18348,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [602] = { - [sym_concatenation] = STATE(849), - [sym_string] = STATE(874), - [sym_simple_expansion] = STATE(874), - [sym_expansion] = STATE(874), - [sym_command_substitution] = STATE(874), - [sym_process_substitution] = STATE(874), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_raw_string] = ACTIONS(1805), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1150), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1154), - [anon_sym_LT_LPAREN] = ACTIONS(1156), - [anon_sym_GT_LPAREN] = ACTIONS(1156), - [sym_word] = ACTIONS(1807), + [603] = { + [sym_concatenation] = STATE(856), + [sym_string] = STATE(881), + [sym_simple_expansion] = STATE(881), + [sym_expansion] = STATE(881), + [sym_command_substitution] = STATE(881), + [sym_process_substitution] = STATE(881), + [anon_sym_DQUOTE] = ACTIONS(1146), + [sym_raw_string] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_LT_LPAREN] = ACTIONS(1158), + [anon_sym_GT_LPAREN] = ACTIONS(1158), + [sym_word] = ACTIONS(1825), [sym_comment] = ACTIONS(52), }, - [603] = { - [aux_sym_concatenation_repeat1] = STATE(875), + [604] = { + [aux_sym_concatenation_repeat1] = STATE(882), [sym_file_descriptor] = ACTIONS(400), - [sym__concat] = ACTIONS(1730), + [sym__concat] = ACTIONS(1748), [anon_sym_PIPE] = ACTIONS(404), [anon_sym_PIPE_AMP] = ACTIONS(400), [anon_sym_AMP_AMP] = ACTIONS(400), @@ -18280,48 +18386,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(400), [sym_comment] = ACTIONS(52), }, - [604] = { + [605] = { [sym_concatenation] = STATE(327), [sym_string] = STATE(340), [sym_simple_expansion] = STATE(340), [sym_expansion] = STATE(340), [sym_command_substitution] = STATE(340), [sym_process_substitution] = STATE(340), - [aux_sym_for_statement_repeat1] = STATE(604), - [sym_file_descriptor] = ACTIONS(1262), + [aux_sym_for_statement_repeat1] = STATE(605), + [sym_file_descriptor] = ACTIONS(1264), [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1264), + [anon_sym_AMP_AMP] = ACTIONS(1264), [anon_sym_PIPE_PIPE] = ACTIONS(874), [anon_sym_LT] = ACTIONS(874), [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1264), [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(1262), - [anon_sym_LT_AMP] = ACTIONS(1262), - [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1264), + [anon_sym_LT_AMP] = ACTIONS(1264), + [anon_sym_GT_AMP] = ACTIONS(1264), [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_raw_string] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1766), - [anon_sym_GT_LPAREN] = ACTIONS(1766), - [sym_word] = ACTIONS(1812), + [anon_sym_LT_LT_DASH] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1778), + [anon_sym_BQUOTE] = ACTIONS(1781), + [anon_sym_LT_LPAREN] = ACTIONS(1784), + [anon_sym_GT_LPAREN] = ACTIONS(1784), + [sym_word] = ACTIONS(1830), [sym_comment] = ACTIONS(52), }, - [605] = { + [606] = { [sym_file_redirect] = STATE(326), [sym_heredoc_redirect] = STATE(326), - [aux_sym_command_repeat2] = STATE(606), + [aux_sym_command_repeat2] = STATE(607), [sym_file_descriptor] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(550), [anon_sym_GT] = ACTIONS(550), [anon_sym_GT_GT] = ACTIONS(552), @@ -18331,31 +18437,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(552), [anon_sym_LT_LT] = ACTIONS(524), [anon_sym_LT_LT_DASH] = ACTIONS(526), - [anon_sym_BQUOTE] = ACTIONS(1774), - [sym_comment] = ACTIONS(52), - }, - [606] = { - [sym_file_redirect] = STATE(326), - [sym_heredoc_redirect] = STATE(326), - [aux_sym_command_repeat2] = STATE(606), - [sym_file_descriptor] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_PIPE_AMP] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_PIPE_PIPE] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_GT_GT] = ACTIONS(1821), - [anon_sym_AMP_GT] = ACTIONS(1818), - [anon_sym_AMP_GT_GT] = ACTIONS(1821), - [anon_sym_LT_AMP] = ACTIONS(1821), - [anon_sym_GT_AMP] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(1789), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1781), + [anon_sym_BQUOTE] = ACTIONS(1792), [sym_comment] = ACTIONS(52), }, [607] = { + [sym_file_redirect] = STATE(326), + [sym_heredoc_redirect] = STATE(326), + [aux_sym_command_repeat2] = STATE(607), + [sym_file_descriptor] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_PIPE_AMP] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1799), + [anon_sym_PIPE_PIPE] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1839), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1839), + [anon_sym_LT_AMP] = ACTIONS(1839), + [anon_sym_GT_AMP] = ACTIONS(1839), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_LT_LT_DASH] = ACTIONS(1810), + [anon_sym_BQUOTE] = ACTIONS(1799), + [sym_comment] = ACTIONS(52), + }, + [608] = { [sym_file_redirect] = STATE(326), [sym_heredoc_redirect] = STATE(326), [sym_concatenation] = STATE(327), @@ -18364,13 +18470,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(340), [sym_command_substitution] = STATE(340), [sym_process_substitution] = STATE(340), - [aux_sym_for_statement_repeat1] = STATE(604), - [aux_sym_command_repeat2] = STATE(876), + [aux_sym_for_statement_repeat1] = STATE(605), + [aux_sym_command_repeat2] = STATE(883), [sym_file_descriptor] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1790), [anon_sym_LT] = ACTIONS(550), [anon_sym_GT] = ACTIONS(550), [anon_sym_GT_GT] = ACTIONS(552), @@ -18385,20 +18491,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), - [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1792), [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_word] = ACTIONS(556), [sym_comment] = ACTIONS(52), }, - [608] = { - [sym_file_redirect] = STATE(877), + [609] = { + [sym_file_redirect] = STATE(884), [sym_file_descriptor] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_SEMI_SEMI] = ACTIONS(1469), - [anon_sym_PIPE_AMP] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_SEMI_SEMI] = ACTIONS(1473), + [anon_sym_PIPE_AMP] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), [anon_sym_LT] = ACTIONS(572), [anon_sym_GT] = ACTIONS(572), [anon_sym_GT_GT] = ACTIONS(572), @@ -18407,31 +18513,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(572), [anon_sym_GT_AMP] = ACTIONS(572), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_LF] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - }, - [609] = { - [sym_file_descriptor] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_RPAREN] = ACTIONS(1826), - [anon_sym_SEMI_SEMI] = ACTIONS(1826), - [anon_sym_PIPE_AMP] = ACTIONS(1826), - [anon_sym_AMP_AMP] = ACTIONS(1826), - [anon_sym_PIPE_PIPE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_GT_GT] = ACTIONS(1826), - [anon_sym_AMP_GT] = ACTIONS(1826), - [anon_sym_AMP_GT_GT] = ACTIONS(1826), - [anon_sym_LT_AMP] = ACTIONS(1826), - [anon_sym_GT_AMP] = ACTIONS(1826), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_LF] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_LF] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), }, [610] = { + [sym_file_descriptor] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_SEMI_SEMI] = ACTIONS(1844), + [anon_sym_PIPE_AMP] = ACTIONS(1844), + [anon_sym_AMP_AMP] = ACTIONS(1844), + [anon_sym_PIPE_PIPE] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_GT] = ACTIONS(1844), + [anon_sym_GT_GT] = ACTIONS(1844), + [anon_sym_AMP_GT] = ACTIONS(1844), + [anon_sym_AMP_GT_GT] = ACTIONS(1844), + [anon_sym_LT_AMP] = ACTIONS(1844), + [anon_sym_GT_AMP] = ACTIONS(1844), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_LF] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + }, + [611] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -18453,7 +18559,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(610), + [aux_sym_program_repeat1] = STATE(611), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(610), [sym_variable_name] = ACTIONS(613), @@ -18484,30 +18590,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(669), [sym_comment] = ACTIONS(52), }, - [611] = { - [sym_concatenation] = STATE(879), - [sym_string] = STATE(878), - [sym_simple_expansion] = STATE(878), - [sym_expansion] = STATE(878), - [sym_command_substitution] = STATE(878), - [sym_process_substitution] = STATE(878), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_raw_string] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1218), - [anon_sym_GT_LPAREN] = ACTIONS(1218), - [sym_word] = ACTIONS(1830), + [612] = { + [sym_concatenation] = STATE(886), + [sym_string] = STATE(885), + [sym_simple_expansion] = STATE(885), + [sym_expansion] = STATE(885), + [sym_command_substitution] = STATE(885), + [sym_process_substitution] = STATE(885), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_raw_string] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1218), + [anon_sym_LT_LPAREN] = ACTIONS(1220), + [anon_sym_GT_LPAREN] = ACTIONS(1220), + [sym_word] = ACTIONS(1848), [sym_comment] = ACTIONS(52), }, - [612] = { + [613] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), - [aux_sym_string_repeat1] = STATE(881), - [anon_sym_DQUOTE] = ACTIONS(1832), + [aux_sym_string_repeat1] = STATE(888), + [anon_sym_DQUOTE] = ACTIONS(1850), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -18515,40 +18621,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [613] = { - [aux_sym_concatenation_repeat1] = STATE(883), - [sym__concat] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_SEMI_SEMI] = ACTIONS(1234), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LF] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - }, [614] = { - [sym_special_variable_name] = STATE(886), - [anon_sym_DOLLAR] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1836), - [anon_sym_AT] = ACTIONS(1836), + [aux_sym_concatenation_repeat1] = STATE(890), + [sym__concat] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_SEMI_SEMI] = ACTIONS(1236), + [anon_sym_PIPE_AMP] = ACTIONS(1236), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1836), - [anon_sym_QMARK] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_BANG] = ACTIONS(1836), - [anon_sym_0] = ACTIONS(1840), - [anon_sym__] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_LF] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), }, [615] = { - [sym_special_variable_name] = STATE(889), + [sym_special_variable_name] = STATE(893), + [anon_sym_DOLLAR] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1854), + [sym_comment] = ACTIONS(150), + [sym_simple_variable_name] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_QMARK] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_0] = ACTIONS(1858), + [anon_sym__] = ACTIONS(1858), + }, + [616] = { + [sym_special_variable_name] = STATE(896), [anon_sym_DOLLAR] = ACTIONS(164), - [anon_sym_POUND] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(1860), [anon_sym_AT] = ACTIONS(164), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1844), + [sym_simple_variable_name] = ACTIONS(1862), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -18556,19 +18662,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [616] = { - [sym_for_statement] = STATE(890), - [sym_while_statement] = STATE(890), - [sym_if_statement] = STATE(890), - [sym_case_statement] = STATE(890), - [sym_function_definition] = STATE(890), - [sym_subshell] = STATE(890), - [sym_pipeline] = STATE(890), - [sym_list] = STATE(890), - [sym_bracket_command] = STATE(890), - [sym_command] = STATE(890), + [617] = { + [sym_for_statement] = STATE(897), + [sym_while_statement] = STATE(897), + [sym_if_statement] = STATE(897), + [sym_case_statement] = STATE(897), + [sym_function_definition] = STATE(897), + [sym_subshell] = STATE(897), + [sym_pipeline] = STATE(897), + [sym_list] = STATE(897), + [sym_bracket_command] = STATE(897), + [sym_command] = STATE(897), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(891), + [sym_environment_variable_assignment] = STATE(898), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -18606,19 +18712,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(204), [sym_comment] = ACTIONS(52), }, - [617] = { - [sym_for_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_case_statement] = STATE(892), - [sym_function_definition] = STATE(892), - [sym_subshell] = STATE(892), - [sym_pipeline] = STATE(892), - [sym_list] = STATE(892), - [sym_bracket_command] = STATE(892), - [sym_command] = STATE(892), + [618] = { + [sym_for_statement] = STATE(899), + [sym_while_statement] = STATE(899), + [sym_if_statement] = STATE(899), + [sym_case_statement] = STATE(899), + [sym_function_definition] = STATE(899), + [sym_subshell] = STATE(899), + [sym_pipeline] = STATE(899), + [sym_list] = STATE(899), + [sym_bracket_command] = STATE(899), + [sym_command] = STATE(899), [sym_command_name] = STATE(128), - [sym_environment_variable_assignment] = STATE(893), + [sym_environment_variable_assignment] = STATE(900), [sym_subscript] = STATE(130), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -18656,19 +18762,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(212), [sym_comment] = ACTIONS(52), }, - [618] = { - [sym_for_statement] = STATE(894), - [sym_while_statement] = STATE(894), - [sym_if_statement] = STATE(894), - [sym_case_statement] = STATE(894), - [sym_function_definition] = STATE(894), - [sym_subshell] = STATE(894), - [sym_pipeline] = STATE(894), - [sym_list] = STATE(894), - [sym_bracket_command] = STATE(894), - [sym_command] = STATE(894), + [619] = { + [sym_for_statement] = STATE(901), + [sym_while_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_case_statement] = STATE(901), + [sym_function_definition] = STATE(901), + [sym_subshell] = STATE(901), + [sym_pipeline] = STATE(901), + [sym_list] = STATE(901), + [sym_bracket_command] = STATE(901), + [sym_command] = STATE(901), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(895), + [sym_environment_variable_assignment] = STATE(902), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -18706,64 +18812,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(204), [sym_comment] = ACTIONS(52), }, - [619] = { - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(1234), - [anon_sym_SEMI_SEMI] = ACTIONS(1234), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LF] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - }, [620] = { - [aux_sym_concatenation_repeat1] = STATE(625), - [sym_file_descriptor] = ACTIONS(690), - [sym__concat] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_AMP_GT] = ACTIONS(1846), - [anon_sym_AMP_GT_GT] = ACTIONS(1846), - [anon_sym_LT_AMP] = ACTIONS(1846), - [anon_sym_GT_AMP] = ACTIONS(1846), - [anon_sym_LT_LT] = ACTIONS(1846), - [anon_sym_LT_LT_DASH] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_RPAREN] = ACTIONS(1236), + [anon_sym_SEMI_SEMI] = ACTIONS(1236), + [anon_sym_PIPE_AMP] = ACTIONS(1236), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_LF] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), }, [621] = { + [aux_sym_concatenation_repeat1] = STATE(626), [sym_file_descriptor] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_AMP_GT] = ACTIONS(1846), - [anon_sym_AMP_GT_GT] = ACTIONS(1846), - [anon_sym_LT_AMP] = ACTIONS(1846), - [anon_sym_GT_AMP] = ACTIONS(1846), - [anon_sym_LT_LT] = ACTIONS(1846), - [anon_sym_LT_LT_DASH] = ACTIONS(1846), + [sym__concat] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_SEMI_SEMI] = ACTIONS(1864), + [anon_sym_PIPE_AMP] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1864), + [anon_sym_GT_GT] = ACTIONS(1864), + [anon_sym_AMP_GT] = ACTIONS(1864), + [anon_sym_AMP_GT_GT] = ACTIONS(1864), + [anon_sym_LT_AMP] = ACTIONS(1864), + [anon_sym_GT_AMP] = ACTIONS(1864), + [anon_sym_LT_LT] = ACTIONS(1864), + [anon_sym_LT_LT_DASH] = ACTIONS(1864), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), }, [622] = { + [sym_file_descriptor] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_SEMI_SEMI] = ACTIONS(1864), + [anon_sym_PIPE_AMP] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1864), + [anon_sym_GT_GT] = ACTIONS(1864), + [anon_sym_AMP_GT] = ACTIONS(1864), + [anon_sym_AMP_GT_GT] = ACTIONS(1864), + [anon_sym_LT_AMP] = ACTIONS(1864), + [anon_sym_GT_AMP] = ACTIONS(1864), + [anon_sym_LT_LT] = ACTIONS(1864), + [anon_sym_LT_LT_DASH] = ACTIONS(1864), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + }, + [623] = { [sym_file_descriptor] = ACTIONS(416), [sym__concat] = ACTIONS(416), [anon_sym_PIPE] = ACTIONS(418), @@ -18786,12 +18892,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(418), [anon_sym_AMP] = ACTIONS(418), }, - [623] = { + [624] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1866), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -18799,27 +18905,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [624] = { - [sym_string] = STATE(897), - [sym_simple_expansion] = STATE(897), - [sym_expansion] = STATE(897), - [sym_command_substitution] = STATE(897), - [sym_process_substitution] = STATE(897), + [625] = { + [sym_string] = STATE(904), + [sym_simple_expansion] = STATE(904), + [sym_expansion] = STATE(904), + [sym_command_substitution] = STATE(904), + [sym_process_substitution] = STATE(904), [anon_sym_DQUOTE] = ACTIONS(584), - [sym_raw_string] = ACTIONS(1850), + [sym_raw_string] = ACTIONS(1868), [anon_sym_DOLLAR] = ACTIONS(588), [anon_sym_DOLLAR_LBRACE] = ACTIONS(590), [anon_sym_DOLLAR_LPAREN] = ACTIONS(592), [anon_sym_BQUOTE] = ACTIONS(594), [anon_sym_LT_LPAREN] = ACTIONS(596), [anon_sym_GT_LPAREN] = ACTIONS(596), - [sym_word] = ACTIONS(1852), + [sym_word] = ACTIONS(1870), [sym_comment] = ACTIONS(52), }, - [625] = { - [aux_sym_concatenation_repeat1] = STATE(898), + [626] = { + [aux_sym_concatenation_repeat1] = STATE(905), [sym_file_descriptor] = ACTIONS(440), - [sym__concat] = ACTIONS(1232), + [sym__concat] = ACTIONS(1234), [anon_sym_PIPE] = ACTIONS(442), [anon_sym_SEMI_SEMI] = ACTIONS(442), [anon_sym_PIPE_AMP] = ACTIONS(442), @@ -18839,7 +18945,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(442), [anon_sym_AMP] = ACTIONS(442), }, - [626] = { + [627] = { [sym_file_descriptor] = ACTIONS(444), [sym__concat] = ACTIONS(444), [anon_sym_PIPE] = ACTIONS(446), @@ -18862,7 +18968,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(446), [anon_sym_AMP] = ACTIONS(446), }, - [627] = { + [628] = { [sym_file_descriptor] = ACTIONS(448), [sym__concat] = ACTIONS(448), [anon_sym_PIPE] = ACTIONS(450), @@ -18885,7 +18991,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(450), [anon_sym_AMP] = ACTIONS(450), }, - [628] = { + [629] = { [sym_file_descriptor] = ACTIONS(452), [sym__concat] = ACTIONS(452), [anon_sym_PIPE] = ACTIONS(454), @@ -18908,8 +19014,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(454), [anon_sym_AMP] = ACTIONS(454), }, - [629] = { - [sym_special_variable_name] = STATE(900), + [630] = { + [sym_special_variable_name] = STATE(907), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -18922,7 +19028,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1854), + [sym_simple_variable_name] = ACTIONS(1872), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -18930,41 +19036,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [630] = { - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_EQ] = ACTIONS(1860), - [anon_sym_COLON] = ACTIONS(1862), - [anon_sym_COLON_QMARK] = ACTIONS(1860), - [anon_sym_COLON_DASH] = ACTIONS(1860), - [anon_sym_PERCENT] = ACTIONS(1860), - [anon_sym_SLASH] = ACTIONS(1860), - [sym_comment] = ACTIONS(52), - }, [631] = { - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1870), - [anon_sym_COLON_QMARK] = ACTIONS(1868), - [anon_sym_COLON_DASH] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_COLON] = ACTIONS(1880), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_SLASH] = ACTIONS(1878), [sym_comment] = ACTIONS(52), }, [632] = { + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1886), + [anon_sym_COLON] = ACTIONS(1888), + [anon_sym_COLON_QMARK] = ACTIONS(1886), + [anon_sym_COLON_DASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [sym_comment] = ACTIONS(52), + }, + [633] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1890), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [633] = { + [634] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1890), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -18986,15 +19092,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [634] = { + [635] = { [anon_sym_PIPE] = ACTIONS(542), [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(1872), + [anon_sym_BQUOTE] = ACTIONS(1890), [sym_comment] = ACTIONS(52), }, - [635] = { + [636] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(542), @@ -19013,25 +19119,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(1872), + [anon_sym_BQUOTE] = ACTIONS(1890), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [636] = { + [637] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1892), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [637] = { + [638] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1892), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -19053,56 +19159,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [638] = { - [sym__heredoc_middle] = ACTIONS(1876), - [sym__heredoc_end] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), + [639] = { + [sym__heredoc_middle] = ACTIONS(1894), + [sym__heredoc_end] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1896), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), [sym_comment] = ACTIONS(52), }, - [639] = { - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_SEMI_SEMI] = ACTIONS(1882), - [anon_sym_PIPE_AMP] = ACTIONS(1882), - [anon_sym_AMP_AMP] = ACTIONS(1882), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_GT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_AMP_GT] = ACTIONS(1882), - [anon_sym_AMP_GT_GT] = ACTIONS(1882), - [anon_sym_LT_AMP] = ACTIONS(1882), - [anon_sym_GT_AMP] = ACTIONS(1882), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_LT_LT_DASH] = ACTIONS(1882), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_LF] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - }, [640] = { - [sym_special_variable_name] = STATE(911), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_AT] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_QMARK] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_0] = ACTIONS(1888), - [anon_sym__] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), }, [641] = { - [sym_special_variable_name] = STATE(914), + [sym_special_variable_name] = STATE(918), + [anon_sym_DOLLAR] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1902), + [sym_comment] = ACTIONS(150), + [sym_simple_variable_name] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_QMARK] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_0] = ACTIONS(1906), + [anon_sym__] = ACTIONS(1906), + }, + [642] = { + [sym_special_variable_name] = STATE(921), [anon_sym_DOLLAR] = ACTIONS(164), - [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1908), [anon_sym_AT] = ACTIONS(164), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1892), + [sym_simple_variable_name] = ACTIONS(1910), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -19110,46 +19216,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [642] = { - [sym_simple_expansion] = STATE(638), - [sym_expansion] = STATE(638), - [aux_sym_heredoc_repeat1] = STATE(916), - [sym__heredoc_middle] = ACTIONS(1250), - [sym__heredoc_end] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [643] = { + [sym_simple_expansion] = STATE(639), + [sym_expansion] = STATE(639), + [aux_sym_heredoc_repeat1] = STATE(923), + [sym__heredoc_middle] = ACTIONS(1252), + [sym__heredoc_end] = ACTIONS(1912), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), [sym_comment] = ACTIONS(52), }, - [643] = { + [644] = { [sym_file_descriptor] = ACTIONS(710), [sym_variable_name] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_GT] = ACTIONS(1635), [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_AMP_GT] = ACTIONS(1619), + [anon_sym_AMP_GT] = ACTIONS(1635), [anon_sym_AMP_GT_GT] = ACTIONS(710), [anon_sym_LT_AMP] = ACTIONS(710), [anon_sym_GT_AMP] = ACTIONS(710), [anon_sym_DQUOTE] = ACTIONS(710), [sym_raw_string] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1635), [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), [anon_sym_DOLLAR_LPAREN] = ACTIONS(710), [anon_sym_BQUOTE] = ACTIONS(710), [anon_sym_LT_LPAREN] = ACTIONS(710), [anon_sym_GT_LPAREN] = ACTIONS(710), - [sym_word] = ACTIONS(1619), + [sym_word] = ACTIONS(1635), [sym_comment] = ACTIONS(52), }, - [644] = { + [645] = { [sym_concatenation] = STATE(397), [sym_string] = STATE(391), [sym_simple_expansion] = STATE(391), [sym_expansion] = STATE(391), [sym_command_substitution] = STATE(391), [sym_process_substitution] = STATE(391), - [aux_sym_for_statement_repeat1] = STATE(918), - [anon_sym_RPAREN] = ACTIONS(1896), + [aux_sym_for_statement_repeat1] = STATE(925), + [anon_sym_RPAREN] = ACTIONS(1914), [anon_sym_DQUOTE] = ACTIONS(716), [sym_raw_string] = ACTIONS(718), [anon_sym_DOLLAR] = ACTIONS(720), @@ -19161,39 +19267,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(730), [sym_comment] = ACTIONS(52), }, - [645] = { + [646] = { [aux_sym_concatenation_repeat1] = STATE(253), [sym_file_descriptor] = ACTIONS(710), [sym__concat] = ACTIONS(402), [sym_variable_name] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_GT] = ACTIONS(1635), [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_AMP_GT] = ACTIONS(1619), + [anon_sym_AMP_GT] = ACTIONS(1635), [anon_sym_AMP_GT_GT] = ACTIONS(710), [anon_sym_LT_AMP] = ACTIONS(710), [anon_sym_GT_AMP] = ACTIONS(710), [anon_sym_DQUOTE] = ACTIONS(710), [sym_raw_string] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1635), [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), [anon_sym_DOLLAR_LPAREN] = ACTIONS(710), [anon_sym_BQUOTE] = ACTIONS(710), [anon_sym_LT_LPAREN] = ACTIONS(710), [anon_sym_GT_LPAREN] = ACTIONS(710), - [sym_word] = ACTIONS(1619), + [sym_word] = ACTIONS(1635), [sym_comment] = ACTIONS(52), }, - [646] = { + [647] = { [sym_file_redirect] = STATE(144), [sym_heredoc_redirect] = STATE(144), [aux_sym_command_repeat2] = STATE(369), [sym_file_descriptor] = ACTIONS(232), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_SEMI_SEMI] = ACTIONS(1898), - [anon_sym_PIPE_AMP] = ACTIONS(1898), - [anon_sym_AMP_AMP] = ACTIONS(1898), - [anon_sym_PIPE_PIPE] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), [anon_sym_LT] = ACTIONS(236), [anon_sym_GT] = ACTIONS(236), [anon_sym_GT_GT] = ACTIONS(236), @@ -19204,113 +19310,115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(238), [anon_sym_LT_LT_DASH] = ACTIONS(238), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_LF] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), }, - [647] = { + [648] = { [sym__concat] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), [anon_sym_RPAREN] = ACTIONS(1000), [anon_sym_RBRACK] = ACTIONS(1000), [sym_comment] = ACTIONS(52), }, - [648] = { + [649] = { [sym__concat] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(1021), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_RBRACK] = ACTIONS(1021), [sym_comment] = ACTIONS(52), }, - [649] = { - [aux_sym_concatenation_repeat1] = STATE(649), - [sym__concat] = ACTIONS(1900), + [650] = { + [aux_sym_concatenation_repeat1] = STATE(650), + [sym__concat] = ACTIONS(1918), [anon_sym_RBRACK] = ACTIONS(1021), [sym_comment] = ACTIONS(52), }, - [650] = { - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1905), - [sym_comment] = ACTIONS(52), - }, [651] = { - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1923), [sym_comment] = ACTIONS(52), }, [652] = { + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [sym_comment] = ACTIONS(52), + }, + [653] = { [sym__concat] = ACTIONS(1036), [anon_sym_PIPE] = ACTIONS(1036), [anon_sym_RPAREN] = ACTIONS(1036), [anon_sym_RBRACK] = ACTIONS(1036), [sym_comment] = ACTIONS(52), }, - [653] = { - [anon_sym_AT] = ACTIONS(1911), - [sym_comment] = ACTIONS(52), - }, [654] = { - [sym_concatenation] = STATE(925), - [sym_string] = STATE(924), - [sym_simple_expansion] = STATE(924), - [sym_expansion] = STATE(924), - [sym_command_substitution] = STATE(924), - [sym_process_substitution] = STATE(924), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1915), + [anon_sym_AT] = ACTIONS(1929), [sym_comment] = ACTIONS(52), }, [655] = { - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_RBRACK] = ACTIONS(1046), - [sym_comment] = ACTIONS(52), - }, - [656] = { - [anon_sym_AT] = ACTIONS(1917), - [sym_comment] = ACTIONS(52), - }, - [657] = { - [sym_concatenation] = STATE(928), - [sym_string] = STATE(927), - [sym_simple_expansion] = STATE(927), - [sym_expansion] = STATE(927), - [sym_command_substitution] = STATE(927), - [sym_process_substitution] = STATE(927), + [sym_concatenation] = STATE(933), + [sym_string] = STATE(932), + [sym_simple_expansion] = STATE(932), + [sym_expansion] = STATE(932), + [sym_command_substitution] = STATE(932), + [sym_process_substitution] = STATE(932), + [anon_sym_RBRACE] = ACTIONS(1931), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1919), + [sym_raw_string] = ACTIONS(1933), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1921), + [sym_word] = ACTIONS(1935), + [sym_comment] = ACTIONS(52), + }, + [656] = { + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_RBRACK] = ACTIONS(1048), + [sym_comment] = ACTIONS(52), + }, + [657] = { + [anon_sym_AT] = ACTIONS(1937), [sym_comment] = ACTIONS(52), }, [658] = { - [sym__concat] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_RBRACK] = ACTIONS(1136), + [sym_concatenation] = STATE(936), + [sym_string] = STATE(935), + [sym_simple_expansion] = STATE(935), + [sym_expansion] = STATE(935), + [sym_command_substitution] = STATE(935), + [sym_process_substitution] = STATE(935), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(1941), [sym_comment] = ACTIONS(52), }, [659] = { - [sym__concat] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1192), - [anon_sym_RBRACK] = ACTIONS(1192), + [sym__concat] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_RBRACK] = ACTIONS(1138), [sym_comment] = ACTIONS(52), }, [660] = { + [sym__concat] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_RBRACK] = ACTIONS(1194), + [sym_comment] = ACTIONS(52), + }, + [661] = { [sym__concat] = ACTIONS(416), [anon_sym_RPAREN] = ACTIONS(416), [anon_sym_DQUOTE] = ACTIONS(416), @@ -19324,12 +19432,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(836), [sym_comment] = ACTIONS(52), }, - [661] = { + [662] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1943), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -19337,26 +19445,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [662] = { - [sym_string] = STATE(930), - [sym_simple_expansion] = STATE(930), - [sym_expansion] = STATE(930), - [sym_command_substitution] = STATE(930), - [sym_process_substitution] = STATE(930), + [663] = { + [sym_string] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), [anon_sym_DQUOTE] = ACTIONS(716), - [sym_raw_string] = ACTIONS(1925), + [sym_raw_string] = ACTIONS(1945), [anon_sym_DOLLAR] = ACTIONS(720), [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), [anon_sym_BQUOTE] = ACTIONS(726), [anon_sym_LT_LPAREN] = ACTIONS(728), [anon_sym_GT_LPAREN] = ACTIONS(728), - [sym_word] = ACTIONS(1927), + [sym_word] = ACTIONS(1947), [sym_comment] = ACTIONS(52), }, - [663] = { - [aux_sym_concatenation_repeat1] = STATE(931), - [sym__concat] = ACTIONS(1344), + [664] = { + [aux_sym_concatenation_repeat1] = STATE(939), + [sym__concat] = ACTIONS(1346), [anon_sym_RPAREN] = ACTIONS(440), [anon_sym_DQUOTE] = ACTIONS(440), [sym_raw_string] = ACTIONS(440), @@ -19369,7 +19477,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(844), [sym_comment] = ACTIONS(52), }, - [664] = { + [665] = { [sym__concat] = ACTIONS(444), [anon_sym_RPAREN] = ACTIONS(444), [anon_sym_DQUOTE] = ACTIONS(444), @@ -19383,7 +19491,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(456), [sym_comment] = ACTIONS(52), }, - [665] = { + [666] = { [sym__concat] = ACTIONS(448), [anon_sym_RPAREN] = ACTIONS(448), [anon_sym_DQUOTE] = ACTIONS(448), @@ -19397,7 +19505,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(846), [sym_comment] = ACTIONS(52), }, - [666] = { + [667] = { [sym__concat] = ACTIONS(452), [anon_sym_RPAREN] = ACTIONS(452), [anon_sym_DQUOTE] = ACTIONS(452), @@ -19411,8 +19519,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(848), [sym_comment] = ACTIONS(52), }, - [667] = { - [sym_special_variable_name] = STATE(933), + [668] = { + [sym_special_variable_name] = STATE(941), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -19425,7 +19533,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(1929), + [sym_simple_variable_name] = ACTIONS(1949), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -19433,41 +19541,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [668] = { - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_EQ] = ACTIONS(1935), - [anon_sym_COLON] = ACTIONS(1937), - [anon_sym_COLON_QMARK] = ACTIONS(1935), - [anon_sym_COLON_DASH] = ACTIONS(1935), - [anon_sym_PERCENT] = ACTIONS(1935), - [anon_sym_SLASH] = ACTIONS(1935), - [sym_comment] = ACTIONS(52), - }, [669] = { - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1945), - [anon_sym_COLON_QMARK] = ACTIONS(1943), - [anon_sym_COLON_DASH] = ACTIONS(1943), - [anon_sym_PERCENT] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_EQ] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1957), + [anon_sym_COLON_QMARK] = ACTIONS(1955), + [anon_sym_COLON_DASH] = ACTIONS(1955), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_SLASH] = ACTIONS(1955), [sym_comment] = ACTIONS(52), }, [670] = { + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1961), + [anon_sym_EQ] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1965), + [anon_sym_COLON_QMARK] = ACTIONS(1963), + [anon_sym_COLON_DASH] = ACTIONS(1963), + [anon_sym_PERCENT] = ACTIONS(1963), + [anon_sym_SLASH] = ACTIONS(1963), + [sym_comment] = ACTIONS(52), + }, + [671] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1967), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [671] = { + [672] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1967), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -19489,15 +19597,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [672] = { + [673] = { [anon_sym_PIPE] = ACTIONS(542), [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(1947), + [anon_sym_BQUOTE] = ACTIONS(1967), [sym_comment] = ACTIONS(52), }, - [673] = { + [674] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(542), @@ -19516,25 +19624,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(1947), + [anon_sym_BQUOTE] = ACTIONS(1967), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [674] = { + [675] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1949), + [anon_sym_RPAREN] = ACTIONS(1969), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [675] = { + [676] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(1949), + [anon_sym_RPAREN] = ACTIONS(1969), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -19556,57 +19664,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [676] = { - [sym_file_descriptor] = ACTIONS(1951), - [sym_variable_name] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_SEMI_SEMI] = ACTIONS(1953), - [anon_sym_PIPE_AMP] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1953), - [anon_sym_GT_GT] = ACTIONS(1953), - [anon_sym_AMP_GT] = ACTIONS(1953), - [anon_sym_AMP_GT_GT] = ACTIONS(1953), - [anon_sym_LT_AMP] = ACTIONS(1953), - [anon_sym_GT_AMP] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym_raw_string] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1953), - [anon_sym_BQUOTE] = ACTIONS(1953), - [anon_sym_LT_LPAREN] = ACTIONS(1953), - [anon_sym_GT_LPAREN] = ACTIONS(1953), - [sym_word] = ACTIONS(1953), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_LF] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1953), - }, [677] = { + [sym_file_descriptor] = ACTIONS(1971), + [sym_variable_name] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_SEMI_SEMI] = ACTIONS(1973), + [anon_sym_PIPE_AMP] = ACTIONS(1973), + [anon_sym_AMP_AMP] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_AMP_GT] = ACTIONS(1973), + [anon_sym_AMP_GT_GT] = ACTIONS(1973), + [anon_sym_LT_AMP] = ACTIONS(1973), + [anon_sym_GT_AMP] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [sym_raw_string] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1973), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LT_LPAREN] = ACTIONS(1973), + [anon_sym_GT_LPAREN] = ACTIONS(1973), + [sym_word] = ACTIONS(1973), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + }, + [678] = { [sym_concatenation] = STATE(397), [sym_string] = STATE(391), [sym_simple_expansion] = STATE(391), [sym_expansion] = STATE(391), [sym_command_substitution] = STATE(391), [sym_process_substitution] = STATE(391), - [aux_sym_for_statement_repeat1] = STATE(677), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym_raw_string] = ACTIONS(1958), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1964), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1967), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1973), - [anon_sym_GT_LPAREN] = ACTIONS(1973), - [sym_word] = ACTIONS(1976), + [aux_sym_for_statement_repeat1] = STATE(678), + [anon_sym_RPAREN] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1987), + [anon_sym_BQUOTE] = ACTIONS(1990), + [anon_sym_LT_LPAREN] = ACTIONS(1993), + [anon_sym_GT_LPAREN] = ACTIONS(1993), + [sym_word] = ACTIONS(1996), [sym_comment] = ACTIONS(52), }, - [678] = { + [679] = { [sym_file_descriptor] = ACTIONS(1000), [sym__concat] = ACTIONS(1000), [sym_variable_name] = ACTIONS(1000), @@ -19637,7 +19745,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1002), [anon_sym_AMP] = ACTIONS(1002), }, - [679] = { + [680] = { [sym_file_descriptor] = ACTIONS(1021), [sym__concat] = ACTIONS(1021), [sym_variable_name] = ACTIONS(1021), @@ -19668,10 +19776,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [680] = { - [aux_sym_concatenation_repeat1] = STATE(680), + [681] = { + [aux_sym_concatenation_repeat1] = STATE(681), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(1979), + [sym__concat] = ACTIONS(1999), [sym_variable_name] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(1023), [anon_sym_SEMI_SEMI] = ACTIONS(1023), @@ -19699,17 +19807,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [681] = { - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1984), - [sym_comment] = ACTIONS(52), - }, [682] = { - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2004), [sym_comment] = ACTIONS(52), }, [683] = { + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2008), + [sym_comment] = ACTIONS(52), + }, + [684] = { [sym_file_descriptor] = ACTIONS(1036), [sym__concat] = ACTIONS(1036), [sym_variable_name] = ACTIONS(1036), @@ -19740,144 +19848,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1038), [anon_sym_AMP] = ACTIONS(1038), }, - [684] = { - [anon_sym_AT] = ACTIONS(1990), - [sym_comment] = ACTIONS(52), - }, [685] = { - [sym_concatenation] = STATE(948), - [sym_string] = STATE(947), - [sym_simple_expansion] = STATE(947), - [sym_expansion] = STATE(947), - [sym_command_substitution] = STATE(947), - [sym_process_substitution] = STATE(947), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1992), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(2010), [sym_comment] = ACTIONS(52), }, [686] = { - [sym_file_descriptor] = ACTIONS(1046), - [sym__concat] = ACTIONS(1046), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_SEMI_SEMI] = ACTIONS(1048), - [anon_sym_PIPE_AMP] = ACTIONS(1048), - [anon_sym_AMP_AMP] = ACTIONS(1048), - [anon_sym_PIPE_PIPE] = ACTIONS(1048), - [anon_sym_LT] = ACTIONS(1048), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_AMP_GT] = ACTIONS(1048), - [anon_sym_AMP_GT_GT] = ACTIONS(1048), - [anon_sym_LT_AMP] = ACTIONS(1048), - [anon_sym_GT_AMP] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym_raw_string] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), - [anon_sym_BQUOTE] = ACTIONS(1048), - [anon_sym_LT_LPAREN] = ACTIONS(1048), - [anon_sym_GT_LPAREN] = ACTIONS(1048), - [sym_word] = ACTIONS(1048), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_LF] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), - }, - [687] = { - [anon_sym_AT] = ACTIONS(1996), - [sym_comment] = ACTIONS(52), - }, - [688] = { - [sym_concatenation] = STATE(951), - [sym_string] = STATE(950), - [sym_simple_expansion] = STATE(950), - [sym_expansion] = STATE(950), - [sym_command_substitution] = STATE(950), - [sym_process_substitution] = STATE(950), + [sym_concatenation] = STATE(957), + [sym_string] = STATE(956), + [sym_simple_expansion] = STATE(956), + [sym_expansion] = STATE(956), + [sym_command_substitution] = STATE(956), + [sym_process_substitution] = STATE(956), + [anon_sym_RBRACE] = ACTIONS(2012), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(1998), + [sym_raw_string] = ACTIONS(2014), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2000), + [sym_word] = ACTIONS(2016), + [sym_comment] = ACTIONS(52), + }, + [687] = { + [sym_file_descriptor] = ACTIONS(1048), + [sym__concat] = ACTIONS(1048), + [sym_variable_name] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [sym_word] = ACTIONS(1050), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + }, + [688] = { + [anon_sym_AT] = ACTIONS(2018), [sym_comment] = ACTIONS(52), }, [689] = { - [sym_file_descriptor] = ACTIONS(1136), - [sym__concat] = ACTIONS(1136), - [sym_variable_name] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_RPAREN] = ACTIONS(1138), - [anon_sym_SEMI_SEMI] = ACTIONS(1138), - [anon_sym_PIPE_AMP] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1138), - [anon_sym_GT] = ACTIONS(1138), - [anon_sym_GT_GT] = ACTIONS(1138), - [anon_sym_AMP_GT] = ACTIONS(1138), - [anon_sym_AMP_GT_GT] = ACTIONS(1138), - [anon_sym_LT_AMP] = ACTIONS(1138), - [anon_sym_GT_AMP] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_raw_string] = ACTIONS(1138), - [anon_sym_DOLLAR] = ACTIONS(1138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), - [anon_sym_BQUOTE] = ACTIONS(1138), - [anon_sym_LT_LPAREN] = ACTIONS(1138), - [anon_sym_GT_LPAREN] = ACTIONS(1138), - [sym_word] = ACTIONS(1138), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LF] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(959), + [sym_simple_expansion] = STATE(959), + [sym_expansion] = STATE(959), + [sym_command_substitution] = STATE(959), + [sym_process_substitution] = STATE(959), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2022), + [sym_comment] = ACTIONS(52), }, [690] = { - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1192), - [sym_variable_name] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_SEMI_SEMI] = ACTIONS(1194), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_AMP_GT] = ACTIONS(1194), - [anon_sym_AMP_GT_GT] = ACTIONS(1194), - [anon_sym_LT_AMP] = ACTIONS(1194), - [anon_sym_GT_AMP] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym_raw_string] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1194), - [anon_sym_BQUOTE] = ACTIONS(1194), - [anon_sym_LT_LPAREN] = ACTIONS(1194), - [anon_sym_GT_LPAREN] = ACTIONS(1194), - [sym_word] = ACTIONS(1194), + [sym_file_descriptor] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [sym_variable_name] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_SEMI_SEMI] = ACTIONS(1140), + [anon_sym_PIPE_AMP] = ACTIONS(1140), + [anon_sym_AMP_AMP] = ACTIONS(1140), + [anon_sym_PIPE_PIPE] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_GT] = ACTIONS(1140), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_AMP_GT] = ACTIONS(1140), + [anon_sym_AMP_GT_GT] = ACTIONS(1140), + [anon_sym_LT_AMP] = ACTIONS(1140), + [anon_sym_GT_AMP] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_raw_string] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1140), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1140), + [anon_sym_BQUOTE] = ACTIONS(1140), + [anon_sym_LT_LPAREN] = ACTIONS(1140), + [anon_sym_GT_LPAREN] = ACTIONS(1140), + [sym_word] = ACTIONS(1140), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_LF] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), }, [691] = { + [sym_file_descriptor] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [sym_variable_name] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_word] = ACTIONS(1196), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_LF] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + }, + [692] = { [sym__concat] = ACTIONS(416), [anon_sym_SEMI_SEMI] = ACTIONS(418), [anon_sym_DQUOTE] = ACTIONS(418), @@ -19894,12 +20004,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(418), [anon_sym_AMP] = ACTIONS(418), }, - [692] = { + [693] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2024), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -19907,26 +20017,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [693] = { - [sym_string] = STATE(953), - [sym_simple_expansion] = STATE(953), - [sym_expansion] = STATE(953), - [sym_command_substitution] = STATE(953), - [sym_process_substitution] = STATE(953), + [694] = { + [sym_string] = STATE(962), + [sym_simple_expansion] = STATE(962), + [sym_expansion] = STATE(962), + [sym_command_substitution] = STATE(962), + [sym_process_substitution] = STATE(962), [anon_sym_DQUOTE] = ACTIONS(746), - [sym_raw_string] = ACTIONS(2004), + [sym_raw_string] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(750), [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), [anon_sym_DOLLAR_LPAREN] = ACTIONS(754), [anon_sym_BQUOTE] = ACTIONS(756), [anon_sym_LT_LPAREN] = ACTIONS(758), [anon_sym_GT_LPAREN] = ACTIONS(758), - [sym_word] = ACTIONS(2006), + [sym_word] = ACTIONS(2028), [sym_comment] = ACTIONS(52), }, - [694] = { - [aux_sym_concatenation_repeat1] = STATE(954), - [sym__concat] = ACTIONS(1388), + [695] = { + [aux_sym_concatenation_repeat1] = STATE(963), + [sym__concat] = ACTIONS(1390), [anon_sym_SEMI_SEMI] = ACTIONS(442), [anon_sym_DQUOTE] = ACTIONS(442), [sym_raw_string] = ACTIONS(442), @@ -19942,7 +20052,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(442), [anon_sym_AMP] = ACTIONS(442), }, - [695] = { + [696] = { [sym__concat] = ACTIONS(444), [anon_sym_SEMI_SEMI] = ACTIONS(446), [anon_sym_DQUOTE] = ACTIONS(446), @@ -19959,7 +20069,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(446), [anon_sym_AMP] = ACTIONS(446), }, - [696] = { + [697] = { [sym__concat] = ACTIONS(448), [anon_sym_SEMI_SEMI] = ACTIONS(450), [anon_sym_DQUOTE] = ACTIONS(450), @@ -19976,7 +20086,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(450), [anon_sym_AMP] = ACTIONS(450), }, - [697] = { + [698] = { [sym__concat] = ACTIONS(452), [anon_sym_SEMI_SEMI] = ACTIONS(454), [anon_sym_DQUOTE] = ACTIONS(454), @@ -19993,8 +20103,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(454), [anon_sym_AMP] = ACTIONS(454), }, - [698] = { - [sym_special_variable_name] = STATE(956), + [699] = { + [sym_special_variable_name] = STATE(965), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -20007,7 +20117,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(2008), + [sym_simple_variable_name] = ACTIONS(2030), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -20015,41 +20125,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [699] = { - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(2014), - [anon_sym_COLON] = ACTIONS(2016), - [anon_sym_COLON_QMARK] = ACTIONS(2014), - [anon_sym_COLON_DASH] = ACTIONS(2014), - [anon_sym_PERCENT] = ACTIONS(2014), - [anon_sym_SLASH] = ACTIONS(2014), - [sym_comment] = ACTIONS(52), - }, [700] = { - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_EQ] = ACTIONS(2022), - [anon_sym_COLON] = ACTIONS(2024), - [anon_sym_COLON_QMARK] = ACTIONS(2022), - [anon_sym_COLON_DASH] = ACTIONS(2022), - [anon_sym_PERCENT] = ACTIONS(2022), - [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_EQ] = ACTIONS(2036), + [anon_sym_COLON] = ACTIONS(2038), + [anon_sym_COLON_QMARK] = ACTIONS(2036), + [anon_sym_COLON_DASH] = ACTIONS(2036), + [anon_sym_PERCENT] = ACTIONS(2036), + [anon_sym_SLASH] = ACTIONS(2036), [sym_comment] = ACTIONS(52), }, [701] = { + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2042), + [anon_sym_EQ] = ACTIONS(2044), + [anon_sym_COLON] = ACTIONS(2046), + [anon_sym_COLON_QMARK] = ACTIONS(2044), + [anon_sym_COLON_DASH] = ACTIONS(2044), + [anon_sym_PERCENT] = ACTIONS(2044), + [anon_sym_SLASH] = ACTIONS(2044), + [sym_comment] = ACTIONS(52), + }, + [702] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2048), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [702] = { + [703] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2048), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -20071,15 +20181,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [703] = { + [704] = { [anon_sym_PIPE] = ACTIONS(542), [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2048), [sym_comment] = ACTIONS(52), }, - [704] = { + [705] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(542), @@ -20098,25 +20208,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2048), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [705] = { + [706] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2050), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [706] = { + [707] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2050), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -20138,35 +20248,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [707] = { - [sym_do_group] = STATE(965), + [708] = { + [sym_do_group] = STATE(974), [anon_sym_do] = ACTIONS(308), [sym_comment] = ACTIONS(52), }, - [708] = { + [709] = { [sym_concatenation] = STATE(422), [sym_string] = STATE(416), [sym_simple_expansion] = STATE(416), [sym_expansion] = STATE(416), [sym_command_substitution] = STATE(416), [sym_process_substitution] = STATE(416), - [aux_sym_for_statement_repeat1] = STATE(708), - [anon_sym_SEMI_SEMI] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(2030), - [sym_raw_string] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2042), - [anon_sym_BQUOTE] = ACTIONS(2045), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_word] = ACTIONS(2033), + [aux_sym_for_statement_repeat1] = STATE(709), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(2052), + [sym_raw_string] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2058), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), + [anon_sym_BQUOTE] = ACTIONS(2067), + [anon_sym_LT_LPAREN] = ACTIONS(2070), + [anon_sym_GT_LPAREN] = ACTIONS(2070), + [sym_word] = ACTIONS(2055), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_LF] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), }, - [709] = { + [710] = { [sym_file_descriptor] = ACTIONS(574), [sym_variable_name] = ACTIONS(574), [anon_sym_for] = ACTIONS(576), @@ -20196,19 +20306,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(578), [sym_comment] = ACTIONS(52), }, - [710] = { - [anon_sym_PIPE] = ACTIONS(2051), - [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_SEMI_SEMI] = ACTIONS(2051), - [anon_sym_PIPE_AMP] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(2051), - [anon_sym_PIPE_PIPE] = ACTIONS(2051), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_LF] = ACTIONS(2051), - [anon_sym_AMP] = ACTIONS(2051), - }, [711] = { + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_SEMI_SEMI] = ACTIONS(2073), + [anon_sym_PIPE_AMP] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LF] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + }, + [712] = { [sym__terminated_statement] = STATE(425), [sym_for_statement] = STATE(426), [sym_while_statement] = STATE(426), @@ -20230,13 +20340,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(711), + [aux_sym_program_repeat1] = STATE(712), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(610), [sym_variable_name] = ACTIONS(613), [anon_sym_for] = ACTIONS(618), [anon_sym_while] = ACTIONS(621), - [anon_sym_done] = ACTIONS(2053), + [anon_sym_done] = ACTIONS(2075), [anon_sym_if] = ACTIONS(624), [anon_sym_case] = ACTIONS(627), [anon_sym_function] = ACTIONS(630), @@ -20261,11 +20371,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(669), [sym_comment] = ACTIONS(52), }, - [712] = { - [anon_sym_then] = ACTIONS(2055), + [713] = { + [anon_sym_then] = ACTIONS(2077), [sym_comment] = ACTIONS(52), }, - [713] = { + [714] = { [sym_file_descriptor] = ACTIONS(220), [sym_variable_name] = ACTIONS(220), [anon_sym_for] = ACTIONS(222), @@ -20295,22 +20405,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(224), [sym_comment] = ACTIONS(52), }, - [714] = { + [715] = { [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_SEMI_SEMI] = ACTIONS(2057), + [anon_sym_SEMI_SEMI] = ACTIONS(2079), [anon_sym_PIPE_AMP] = ACTIONS(226), [anon_sym_AMP_AMP] = ACTIONS(230), [anon_sym_PIPE_PIPE] = ACTIONS(230), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_LF] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LF] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), }, - [715] = { + [716] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_SEMI_SEMI] = ACTIONS(2057), + [anon_sym_SEMI_SEMI] = ACTIONS(2079), [anon_sym_PIPE_AMP] = ACTIONS(226), [anon_sym_AMP_AMP] = ACTIONS(230), [anon_sym_PIPE_PIPE] = ACTIONS(230), @@ -20331,24 +20441,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(256), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_LF] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LF] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), }, - [716] = { - [sym__terminated_statement] = STATE(713), - [sym_for_statement] = STATE(714), - [sym_while_statement] = STATE(714), - [sym_if_statement] = STATE(714), - [sym_case_statement] = STATE(714), - [sym_function_definition] = STATE(714), - [sym_subshell] = STATE(714), - [sym_pipeline] = STATE(714), - [sym_list] = STATE(714), - [sym_bracket_command] = STATE(714), - [sym_command] = STATE(714), + [717] = { + [sym__terminated_statement] = STATE(714), + [sym_for_statement] = STATE(715), + [sym_while_statement] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_case_statement] = STATE(715), + [sym_function_definition] = STATE(715), + [sym_subshell] = STATE(715), + [sym_pipeline] = STATE(715), + [sym_list] = STATE(715), + [sym_bracket_command] = STATE(715), + [sym_command] = STATE(715), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(715), + [sym_environment_variable_assignment] = STATE(716), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -20357,14 +20467,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(968), + [aux_sym_program_repeat1] = STATE(977), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2059), + [anon_sym_fi] = ACTIONS(2081), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -20388,7 +20498,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [717] = { + [718] = { [sym_file_descriptor] = ACTIONS(574), [sym_variable_name] = ACTIONS(574), [anon_sym_for] = ACTIONS(576), @@ -20420,23 +20530,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(578), [sym_comment] = ACTIONS(52), }, - [718] = { - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_SEMI_SEMI] = ACTIONS(2061), - [anon_sym_PIPE_AMP] = ACTIONS(2061), - [anon_sym_AMP_AMP] = ACTIONS(2061), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_LF] = ACTIONS(2061), - [anon_sym_AMP] = ACTIONS(2061), - }, [719] = { - [anon_sym_fi] = ACTIONS(2063), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(2083), + [anon_sym_SEMI_SEMI] = ACTIONS(2083), + [anon_sym_PIPE_AMP] = ACTIONS(2083), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_PIPE_PIPE] = ACTIONS(2083), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), }, [720] = { + [anon_sym_fi] = ACTIONS(2085), + [sym_comment] = ACTIONS(52), + }, + [721] = { [sym__terminated_statement] = STATE(432), [sym_for_statement] = STATE(433), [sym_while_statement] = STATE(433), @@ -20458,16 +20568,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(720), + [aux_sym_program_repeat1] = STATE(721), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(610), [sym_variable_name] = ACTIONS(613), [anon_sym_for] = ACTIONS(618), [anon_sym_while] = ACTIONS(621), [anon_sym_if] = ACTIONS(624), - [anon_sym_fi] = ACTIONS(2053), - [anon_sym_elif] = ACTIONS(2053), - [anon_sym_else] = ACTIONS(2053), + [anon_sym_fi] = ACTIONS(2075), + [anon_sym_elif] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2075), [anon_sym_case] = ACTIONS(627), [anon_sym_function] = ACTIONS(630), [anon_sym_LPAREN] = ACTIONS(633), @@ -20491,166 +20601,175 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(669), [sym_comment] = ACTIONS(52), }, - [721] = { - [sym_elif_clause] = STATE(434), - [sym_else_clause] = STATE(970), - [aux_sym_if_statement_repeat1] = STATE(722), - [anon_sym_fi] = ACTIONS(2063), - [anon_sym_elif] = ACTIONS(1434), - [anon_sym_else] = ACTIONS(1436), - [sym_comment] = ACTIONS(52), - }, [722] = { [sym_elif_clause] = STATE(434), - [aux_sym_if_statement_repeat1] = STATE(722), - [anon_sym_fi] = ACTIONS(2065), - [anon_sym_elif] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2065), + [sym_else_clause] = STATE(979), + [aux_sym_if_statement_repeat1] = STATE(723), + [anon_sym_fi] = ACTIONS(2085), + [anon_sym_elif] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1438), [sym_comment] = ACTIONS(52), }, [723] = { - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_RPAREN] = ACTIONS(2070), - [anon_sym_SEMI_SEMI] = ACTIONS(2070), - [anon_sym_PIPE_AMP] = ACTIONS(2070), - [anon_sym_AMP_AMP] = ACTIONS(2070), - [anon_sym_PIPE_PIPE] = ACTIONS(2070), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_LF] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2070), - }, - [724] = { - [aux_sym_case_item_repeat1] = STATE(973), - [aux_sym_concatenation_repeat1] = STATE(974), - [sym__concat] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2074), + [sym_elif_clause] = STATE(434), + [aux_sym_if_statement_repeat1] = STATE(723), + [anon_sym_fi] = ACTIONS(2087), + [anon_sym_elif] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(2087), [sym_comment] = ACTIONS(52), }, + [724] = { + [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), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_LF] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + }, [725] = { - [anon_sym_esac] = ACTIONS(2076), - [anon_sym_DQUOTE] = ACTIONS(2078), - [sym_raw_string] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(2076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2078), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2078), - [anon_sym_BQUOTE] = ACTIONS(2078), - [anon_sym_LT_LPAREN] = ACTIONS(2078), - [anon_sym_GT_LPAREN] = ACTIONS(2078), - [sym_word] = ACTIONS(2080), + [aux_sym_case_item_repeat1] = STATE(982), + [aux_sym_concatenation_repeat1] = STATE(983), + [sym__concat] = ACTIONS(696), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(2096), [sym_comment] = ACTIONS(52), }, [726] = { - [aux_sym_case_item_repeat1] = STATE(973), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_esac] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2100), + [sym_raw_string] = ACTIONS(2100), + [anon_sym_DOLLAR] = ACTIONS(2098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2100), + [anon_sym_BQUOTE] = ACTIONS(2100), + [anon_sym_LT_LPAREN] = ACTIONS(2100), + [anon_sym_GT_LPAREN] = ACTIONS(2100), + [sym_word] = ACTIONS(2102), [sym_comment] = ACTIONS(52), }, [727] = { - [sym_case_item] = STATE(725), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), - [aux_sym_case_statement_repeat1] = STATE(976), - [anon_sym_esac] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), - [anon_sym_BQUOTE] = ACTIONS(280), - [anon_sym_LT_LPAREN] = ACTIONS(282), - [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(1442), + [aux_sym_case_item_repeat1] = STATE(982), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(2096), [sym_comment] = ACTIONS(52), }, [728] = { - [sym_case_item] = STATE(725), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), - [aux_sym_case_statement_repeat1] = STATE(977), - [anon_sym_esac] = ACTIONS(2082), + [sym_case_item] = STATE(726), + [sym_concatenation] = STATE(727), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [aux_sym_case_statement_repeat1] = STATE(985), + [anon_sym_esac] = ACTIONS(2104), [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(1440), + [sym_raw_string] = ACTIONS(1442), [anon_sym_DOLLAR] = ACTIONS(274), [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), [anon_sym_BQUOTE] = ACTIONS(280), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(1442), + [sym_word] = ACTIONS(1444), [sym_comment] = ACTIONS(52), }, [729] = { - [sym__concat] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1601), - [anon_sym_SEMI_SEMI] = ACTIONS(1601), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_LF] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1601), + [sym_case_item] = STATE(726), + [sym_concatenation] = STATE(727), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [aux_sym_case_statement_repeat1] = STATE(986), + [anon_sym_esac] = ACTIONS(2104), + [anon_sym_DQUOTE] = ACTIONS(270), + [sym_raw_string] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), + [anon_sym_BQUOTE] = ACTIONS(280), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_word] = ACTIONS(1444), + [sym_comment] = ACTIONS(52), }, [730] = { - [anon_sym_AT] = ACTIONS(2084), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1611), + [anon_sym_in] = ACTIONS(1613), + [anon_sym_SEMI_SEMI] = ACTIONS(1613), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1613), }, [731] = { - [sym__concat] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(1607), - [anon_sym_SEMI_SEMI] = ACTIONS(1607), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_LF] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - }, - [732] = { - [anon_sym_AT] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2106), [sym_comment] = ACTIONS(52), }, + [732] = { + [sym__concat] = ACTIONS(1617), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_SEMI_SEMI] = ACTIONS(1619), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + }, [733] = { - [anon_sym_RBRACK] = ACTIONS(2088), + [anon_sym_AT] = ACTIONS(2108), [sym_comment] = ACTIONS(52), }, [734] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_RBRACK] = ACTIONS(2110), [sym_comment] = ACTIONS(52), }, [735] = { - [anon_sym_RBRACE] = ACTIONS(2090), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1627), + [anon_sym_SEMI_SEMI] = ACTIONS(1627), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), }, [736] = { - [anon_sym_RBRACK] = ACTIONS(2092), + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2112), [sym_comment] = ACTIONS(52), }, [737] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2112), [sym_comment] = ACTIONS(52), }, [738] = { - [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_RBRACK] = ACTIONS(2114), [sym_comment] = ACTIONS(52), }, [739] = { - [sym_file_redirect] = STATE(984), + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2116), + [sym_comment] = ACTIONS(52), + }, + [740] = { + [anon_sym_RBRACE] = ACTIONS(2116), + [sym_comment] = ACTIONS(52), + }, + [741] = { + [sym_file_redirect] = STATE(993), [sym_file_descriptor] = ACTIONS(568), - [anon_sym_PIPE] = 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_PIPE] = ACTIONS(2118), + [anon_sym_SEMI_SEMI] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_PIPE_PIPE] = ACTIONS(2118), [anon_sym_LT] = ACTIONS(572), [anon_sym_GT] = ACTIONS(572), [anon_sym_GT_GT] = ACTIONS(572), @@ -20659,12 +20778,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(572), [anon_sym_GT_AMP] = ACTIONS(572), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LF] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_LF] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), }, - [740] = { - [aux_sym_concatenation_repeat1] = STATE(985), + [742] = { + [aux_sym_concatenation_repeat1] = STATE(994), [sym_file_descriptor] = ACTIONS(440), [sym__concat] = ACTIONS(734), [sym_variable_name] = ACTIONS(440), @@ -20695,20 +20814,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(442), [anon_sym_AMP] = ACTIONS(442), }, - [741] = { - [sym_compound_statement] = STATE(986), + [743] = { + [sym_compound_statement] = STATE(995), [anon_sym_LBRACE] = ACTIONS(334), [sym_comment] = ACTIONS(52), }, - [742] = { - [sym_file_redirect] = STATE(877), + [744] = { + [sym_file_redirect] = STATE(884), [sym_file_descriptor] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_SEMI_SEMI] = ACTIONS(1469), - [anon_sym_PIPE_AMP] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_RPAREN] = ACTIONS(1473), + [anon_sym_SEMI_SEMI] = ACTIONS(1473), + [anon_sym_PIPE_AMP] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), [anon_sym_LT] = ACTIONS(818), [anon_sym_GT] = ACTIONS(818), [anon_sym_GT_GT] = ACTIONS(818), @@ -20717,70 +20836,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(818), [anon_sym_GT_AMP] = ACTIONS(818), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_LF] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - }, - [743] = { - [sym_concatenation] = STATE(879), - [sym_string] = STATE(987), - [sym_simple_expansion] = STATE(987), - [sym_expansion] = STATE(987), - [sym_command_substitution] = STATE(987), - [sym_process_substitution] = STATE(987), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_raw_string] = ACTIONS(2098), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1218), - [anon_sym_GT_LPAREN] = ACTIONS(1218), - [sym_word] = ACTIONS(2100), - [sym_comment] = ACTIONS(52), - }, - [744] = { - [aux_sym_concatenation_repeat1] = STATE(988), - [sym__concat] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(1234), - [anon_sym_SEMI_SEMI] = ACTIONS(1234), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LF] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_LF] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), }, [745] = { - [aux_sym_concatenation_repeat1] = STATE(746), - [sym_file_descriptor] = ACTIONS(690), - [sym__concat] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_AMP_GT] = ACTIONS(1846), - [anon_sym_AMP_GT_GT] = ACTIONS(1846), - [anon_sym_LT_AMP] = ACTIONS(1846), - [anon_sym_GT_AMP] = ACTIONS(1846), - [anon_sym_LT_LT] = ACTIONS(1846), - [anon_sym_LT_LT_DASH] = ACTIONS(1846), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), + [sym_concatenation] = STATE(886), + [sym_string] = STATE(996), + [sym_simple_expansion] = STATE(996), + [sym_expansion] = STATE(996), + [sym_command_substitution] = STATE(996), + [sym_process_substitution] = STATE(996), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_raw_string] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1218), + [anon_sym_LT_LPAREN] = ACTIONS(1220), + [anon_sym_GT_LPAREN] = ACTIONS(1220), + [sym_word] = ACTIONS(2122), + [sym_comment] = ACTIONS(52), }, [746] = { - [aux_sym_concatenation_repeat1] = STATE(989), + [aux_sym_concatenation_repeat1] = STATE(997), + [sym__concat] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_RPAREN] = ACTIONS(1236), + [anon_sym_SEMI_SEMI] = ACTIONS(1236), + [anon_sym_PIPE_AMP] = ACTIONS(1236), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_LF] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + }, + [747] = { + [aux_sym_concatenation_repeat1] = STATE(748), + [sym_file_descriptor] = ACTIONS(690), + [sym__concat] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_SEMI_SEMI] = ACTIONS(1864), + [anon_sym_PIPE_AMP] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1864), + [anon_sym_GT_GT] = ACTIONS(1864), + [anon_sym_AMP_GT] = ACTIONS(1864), + [anon_sym_AMP_GT_GT] = ACTIONS(1864), + [anon_sym_LT_AMP] = ACTIONS(1864), + [anon_sym_GT_AMP] = ACTIONS(1864), + [anon_sym_LT_LT] = ACTIONS(1864), + [anon_sym_LT_LT_DASH] = ACTIONS(1864), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + }, + [748] = { + [aux_sym_concatenation_repeat1] = STATE(998), [sym_file_descriptor] = ACTIONS(440), - [sym__concat] = ACTIONS(1232), + [sym__concat] = ACTIONS(1234), [anon_sym_PIPE] = ACTIONS(442), [anon_sym_RPAREN] = ACTIONS(442), [anon_sym_SEMI_SEMI] = ACTIONS(442), @@ -20801,29 +20920,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(442), [anon_sym_AMP] = ACTIONS(442), }, - [747] = { - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_RPAREN] = ACTIONS(2102), - [anon_sym_SEMI_SEMI] = ACTIONS(2102), - [anon_sym_PIPE_AMP] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [749] = { + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_RPAREN] = ACTIONS(2124), + [anon_sym_SEMI_SEMI] = ACTIONS(2124), + [anon_sym_PIPE_AMP] = ACTIONS(2124), + [anon_sym_AMP_AMP] = ACTIONS(2124), + [anon_sym_PIPE_PIPE] = ACTIONS(2124), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2102), - [anon_sym_LF] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), }, - [748] = { + [750] = { [sym_file_redirect] = STATE(144), [sym_heredoc_redirect] = STATE(144), [aux_sym_command_repeat2] = STATE(470), [sym_file_descriptor] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_RPAREN] = ACTIONS(1898), - [anon_sym_SEMI_SEMI] = ACTIONS(1898), - [anon_sym_PIPE_AMP] = ACTIONS(1898), - [anon_sym_AMP_AMP] = ACTIONS(1898), - [anon_sym_PIPE_PIPE] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), [anon_sym_LT] = ACTIONS(352), [anon_sym_GT] = ACTIONS(352), [anon_sym_GT_GT] = ACTIONS(352), @@ -20834,395 +20953,455 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(238), [anon_sym_LT_LT_DASH] = ACTIONS(238), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_LF] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - }, - [749] = { - [sym__concat] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_raw_string] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [anon_sym_LT_LPAREN] = ACTIONS(1599), - [anon_sym_GT_LPAREN] = ACTIONS(1599), - [sym_word] = ACTIONS(1601), - [sym_comment] = ACTIONS(52), - }, - [750] = { - [anon_sym_AT] = ACTIONS(2106), - [sym_comment] = ACTIONS(52), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), }, [751] = { - [sym__concat] = ACTIONS(1605), - [anon_sym_RBRACE] = ACTIONS(1605), - [anon_sym_RBRACK] = ACTIONS(2108), - [anon_sym_DQUOTE] = ACTIONS(1605), - [sym_raw_string] = ACTIONS(1605), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [anon_sym_LT_LPAREN] = ACTIONS(1605), - [anon_sym_GT_LPAREN] = ACTIONS(1605), - [sym_word] = ACTIONS(1607), + [sym__concat] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_RBRACK] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym_raw_string] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [anon_sym_LT_LPAREN] = ACTIONS(1611), + [anon_sym_GT_LPAREN] = ACTIONS(1611), + [sym_word] = ACTIONS(1613), [sym_comment] = ACTIONS(52), }, [752] = { - [anon_sym_AT] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2128), [sym_comment] = ACTIONS(52), }, [753] = { - [anon_sym_RBRACK] = ACTIONS(2112), + [sym__concat] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_RBRACK] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym_raw_string] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1617), + [anon_sym_BQUOTE] = ACTIONS(1617), + [anon_sym_LT_LPAREN] = ACTIONS(1617), + [anon_sym_GT_LPAREN] = ACTIONS(1617), + [sym_word] = ACTIONS(1619), [sym_comment] = ACTIONS(52), }, [754] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2114), - [sym_comment] = ACTIONS(52), - }, - [755] = { - [anon_sym_RBRACE] = ACTIONS(2114), - [sym_comment] = ACTIONS(52), - }, - [756] = { - [anon_sym_RBRACK] = ACTIONS(2116), - [sym_comment] = ACTIONS(52), - }, - [757] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2118), - [sym_comment] = ACTIONS(52), - }, - [758] = { - [anon_sym_RBRACE] = ACTIONS(2118), - [sym_comment] = ACTIONS(52), - }, - [759] = { - [sym__concat] = ACTIONS(1599), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_raw_string] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [anon_sym_LT_LPAREN] = ACTIONS(1599), - [anon_sym_GT_LPAREN] = ACTIONS(1599), - [sym_word] = ACTIONS(1601), - [sym_comment] = ACTIONS(52), - }, - [760] = { - [anon_sym_AT] = ACTIONS(2120), - [sym_comment] = ACTIONS(52), - }, - [761] = { - [sym__concat] = ACTIONS(1605), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2108), - [anon_sym_DQUOTE] = ACTIONS(1605), - [sym_raw_string] = ACTIONS(1605), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [anon_sym_LT_LPAREN] = ACTIONS(1605), - [anon_sym_GT_LPAREN] = ACTIONS(1605), - [sym_word] = ACTIONS(1607), - [sym_comment] = ACTIONS(52), - }, - [762] = { - [anon_sym_AT] = ACTIONS(2122), - [sym_comment] = ACTIONS(52), - }, - [763] = { - [anon_sym_RBRACK] = ACTIONS(2124), - [sym_comment] = ACTIONS(52), - }, - [764] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2126), - [sym_comment] = ACTIONS(52), - }, - [765] = { - [anon_sym_RBRACE] = ACTIONS(2126), - [sym_comment] = ACTIONS(52), - }, - [766] = { - [anon_sym_RBRACK] = ACTIONS(2128), - [sym_comment] = ACTIONS(52), - }, - [767] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2130), - [sym_comment] = ACTIONS(52), - }, - [768] = { - [anon_sym_RBRACE] = ACTIONS(2130), - [sym_comment] = ACTIONS(52), - }, - [769] = { - [sym_file_descriptor] = ACTIONS(1599), - [sym__concat] = ACTIONS(1599), - [sym_variable_name] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(1599), - [anon_sym_LT_AMP] = ACTIONS(1599), - [anon_sym_GT_AMP] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_raw_string] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [anon_sym_LT_LPAREN] = ACTIONS(1599), - [anon_sym_GT_LPAREN] = ACTIONS(1599), - [sym_word] = ACTIONS(2104), - [sym_comment] = ACTIONS(52), - }, - [770] = { [anon_sym_AT] = ACTIONS(2132), [sym_comment] = ACTIONS(52), }, - [771] = { - [sym_file_descriptor] = ACTIONS(1605), - [sym__concat] = ACTIONS(1605), - [sym_variable_name] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_AMP_GT] = ACTIONS(2108), - [anon_sym_AMP_GT_GT] = ACTIONS(1605), - [anon_sym_LT_AMP] = ACTIONS(1605), - [anon_sym_GT_AMP] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [sym_raw_string] = ACTIONS(1605), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [anon_sym_LT_LPAREN] = ACTIONS(1605), - [anon_sym_GT_LPAREN] = ACTIONS(1605), - [sym_word] = ACTIONS(2108), + [755] = { + [anon_sym_RBRACK] = ACTIONS(2134), [sym_comment] = ACTIONS(52), }, - [772] = { - [anon_sym_AT] = ACTIONS(2134), - [sym_comment] = ACTIONS(52), - }, - [773] = { + [756] = { + [sym__concat] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), [anon_sym_RBRACK] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym_raw_string] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1625), + [anon_sym_BQUOTE] = ACTIONS(1625), + [anon_sym_LT_LPAREN] = ACTIONS(1625), + [anon_sym_GT_LPAREN] = ACTIONS(1625), + [sym_word] = ACTIONS(1627), [sym_comment] = ACTIONS(52), }, - [774] = { - [aux_sym_concatenation_repeat1] = STATE(793), + [757] = { + [aux_sym_concatenation_repeat1] = STATE(799), [sym__concat] = ACTIONS(360), [anon_sym_RBRACE] = ACTIONS(2138), [sym_comment] = ACTIONS(52), }, - [775] = { + [758] = { [anon_sym_RBRACE] = ACTIONS(2138), [sym_comment] = ACTIONS(52), }, - [776] = { + [759] = { [anon_sym_RBRACK] = ACTIONS(2140), [sym_comment] = ACTIONS(52), }, - [777] = { - [aux_sym_concatenation_repeat1] = STATE(793), + [760] = { + [aux_sym_concatenation_repeat1] = STATE(799), [sym__concat] = ACTIONS(360), [anon_sym_RBRACE] = ACTIONS(2142), [sym_comment] = ACTIONS(52), }, - [778] = { + [761] = { [anon_sym_RBRACE] = ACTIONS(2142), [sym_comment] = ACTIONS(52), }, - [779] = { - [anon_sym_DQUOTE] = ACTIONS(1601), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1601), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [sym_comment] = ACTIONS(150), + [762] = { + [sym__concat] = ACTIONS(1611), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym_raw_string] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [anon_sym_LT_LPAREN] = ACTIONS(1611), + [anon_sym_GT_LPAREN] = ACTIONS(1611), + [sym_word] = ACTIONS(1613), + [sym_comment] = ACTIONS(52), }, - [780] = { + [763] = { [anon_sym_AT] = ACTIONS(2144), [sym_comment] = ACTIONS(52), }, - [781] = { - [anon_sym_DQUOTE] = ACTIONS(1607), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2108), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1607), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1607), - [anon_sym_BQUOTE] = ACTIONS(1607), - [sym_comment] = ACTIONS(150), + [764] = { + [sym__concat] = ACTIONS(1617), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym_raw_string] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1617), + [anon_sym_BQUOTE] = ACTIONS(1617), + [anon_sym_LT_LPAREN] = ACTIONS(1617), + [anon_sym_GT_LPAREN] = ACTIONS(1617), + [sym_word] = ACTIONS(1619), + [sym_comment] = ACTIONS(52), }, - [782] = { + [765] = { [anon_sym_AT] = ACTIONS(2146), [sym_comment] = ACTIONS(52), }, - [783] = { + [766] = { [anon_sym_RBRACK] = ACTIONS(2148), [sym_comment] = ACTIONS(52), }, - [784] = { - [aux_sym_concatenation_repeat1] = STATE(793), + [767] = { + [sym__concat] = ACTIONS(1625), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym_raw_string] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1625), + [anon_sym_BQUOTE] = ACTIONS(1625), + [anon_sym_LT_LPAREN] = ACTIONS(1625), + [anon_sym_GT_LPAREN] = ACTIONS(1625), + [sym_word] = ACTIONS(1627), + [sym_comment] = ACTIONS(52), + }, + [768] = { + [aux_sym_concatenation_repeat1] = STATE(799), [sym__concat] = ACTIONS(360), [anon_sym_RBRACE] = ACTIONS(2150), [sym_comment] = ACTIONS(52), }, - [785] = { + [769] = { [anon_sym_RBRACE] = ACTIONS(2150), [sym_comment] = ACTIONS(52), }, - [786] = { + [770] = { [anon_sym_RBRACK] = ACTIONS(2152), [sym_comment] = ACTIONS(52), }, - [787] = { - [aux_sym_concatenation_repeat1] = STATE(793), + [771] = { + [aux_sym_concatenation_repeat1] = STATE(799), [sym__concat] = ACTIONS(360), [anon_sym_RBRACE] = ACTIONS(2154), [sym_comment] = ACTIONS(52), }, - [788] = { + [772] = { [anon_sym_RBRACE] = ACTIONS(2154), [sym_comment] = ACTIONS(52), }, - [789] = { - [anon_sym_RBRACK] = ACTIONS(2156), + [773] = { + [sym_file_descriptor] = ACTIONS(1611), + [sym__concat] = ACTIONS(1611), + [sym_variable_name] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_AMP_GT] = ACTIONS(2126), + [anon_sym_AMP_GT_GT] = ACTIONS(1611), + [anon_sym_LT_AMP] = ACTIONS(1611), + [anon_sym_GT_AMP] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym_raw_string] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [anon_sym_LT_LPAREN] = ACTIONS(1611), + [anon_sym_GT_LPAREN] = ACTIONS(1611), + [sym_word] = ACTIONS(2126), [sym_comment] = ACTIONS(52), }, + [774] = { + [anon_sym_AT] = ACTIONS(2156), + [sym_comment] = ACTIONS(52), + }, + [775] = { + [sym_file_descriptor] = ACTIONS(1617), + [sym__concat] = ACTIONS(1617), + [sym_variable_name] = ACTIONS(1617), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1617), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1617), + [anon_sym_LT_AMP] = ACTIONS(1617), + [anon_sym_GT_AMP] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym_raw_string] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1617), + [anon_sym_BQUOTE] = ACTIONS(1617), + [anon_sym_LT_LPAREN] = ACTIONS(1617), + [anon_sym_GT_LPAREN] = ACTIONS(1617), + [sym_word] = ACTIONS(2130), + [sym_comment] = ACTIONS(52), + }, + [776] = { + [anon_sym_AT] = ACTIONS(2158), + [sym_comment] = ACTIONS(52), + }, + [777] = { + [anon_sym_RBRACK] = ACTIONS(2160), + [sym_comment] = ACTIONS(52), + }, + [778] = { + [sym_file_descriptor] = ACTIONS(1625), + [sym__concat] = ACTIONS(1625), + [sym_variable_name] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(2136), + [anon_sym_GT] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(1625), + [anon_sym_AMP_GT] = ACTIONS(2136), + [anon_sym_AMP_GT_GT] = ACTIONS(1625), + [anon_sym_LT_AMP] = ACTIONS(1625), + [anon_sym_GT_AMP] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym_raw_string] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1625), + [anon_sym_BQUOTE] = ACTIONS(1625), + [anon_sym_LT_LPAREN] = ACTIONS(1625), + [anon_sym_GT_LPAREN] = ACTIONS(1625), + [sym_word] = ACTIONS(2136), + [sym_comment] = ACTIONS(52), + }, + [779] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2162), + [sym_comment] = ACTIONS(52), + }, + [780] = { + [anon_sym_RBRACE] = ACTIONS(2162), + [sym_comment] = ACTIONS(52), + }, + [781] = { + [anon_sym_RBRACK] = ACTIONS(2164), + [sym_comment] = ACTIONS(52), + }, + [782] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2166), + [sym_comment] = ACTIONS(52), + }, + [783] = { + [anon_sym_RBRACE] = ACTIONS(2166), + [sym_comment] = ACTIONS(52), + }, + [784] = { + [anon_sym_DQUOTE] = ACTIONS(1613), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(1613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1613), + [anon_sym_BQUOTE] = ACTIONS(1613), + [sym_comment] = ACTIONS(150), + }, + [785] = { + [anon_sym_AT] = ACTIONS(2168), + [sym_comment] = ACTIONS(52), + }, + [786] = { + [anon_sym_DQUOTE] = ACTIONS(1619), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_comment] = ACTIONS(150), + }, + [787] = { + [anon_sym_AT] = ACTIONS(2170), + [sym_comment] = ACTIONS(52), + }, + [788] = { + [anon_sym_RBRACK] = ACTIONS(2172), + [sym_comment] = ACTIONS(52), + }, + [789] = { + [anon_sym_DQUOTE] = ACTIONS(1627), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(1627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_comment] = ACTIONS(150), + }, [790] = { - [anon_sym_RBRACK] = ACTIONS(2158), + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2174), [sym_comment] = ACTIONS(52), }, [791] = { - [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2174), [sym_comment] = ACTIONS(52), }, [792] = { - [sym_file_descriptor] = ACTIONS(2162), - [sym__concat] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(2164), - [anon_sym_SEMI_SEMI] = ACTIONS(2164), - [anon_sym_PIPE_AMP] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_AMP_GT] = ACTIONS(2164), - [anon_sym_AMP_GT_GT] = ACTIONS(2164), - [anon_sym_LT_AMP] = ACTIONS(2164), - [anon_sym_GT_AMP] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LT_LT_DASH] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_raw_string] = ACTIONS(2164), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2164), - [anon_sym_BQUOTE] = ACTIONS(2164), - [anon_sym_LT_LPAREN] = ACTIONS(2164), - [anon_sym_GT_LPAREN] = ACTIONS(2164), - [sym_word] = ACTIONS(2164), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_RBRACK] = ACTIONS(2176), + [sym_comment] = ACTIONS(52), }, [793] = { - [aux_sym_concatenation_repeat1] = STATE(1017), + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2178), + [sym_comment] = ACTIONS(52), + }, + [794] = { + [anon_sym_RBRACE] = ACTIONS(2178), + [sym_comment] = ACTIONS(52), + }, + [795] = { + [anon_sym_RBRACK] = ACTIONS(2180), + [sym_comment] = ACTIONS(52), + }, + [796] = { + [anon_sym_RBRACK] = ACTIONS(2182), + [sym_comment] = ACTIONS(52), + }, + [797] = { + [anon_sym_RBRACE] = ACTIONS(2184), + [sym_comment] = ACTIONS(52), + }, + [798] = { + [sym_file_descriptor] = ACTIONS(2186), + [sym__concat] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_SEMI_SEMI] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2188), + [anon_sym_GT_GT] = ACTIONS(2188), + [anon_sym_AMP_GT] = ACTIONS(2188), + [anon_sym_AMP_GT_GT] = ACTIONS(2188), + [anon_sym_LT_AMP] = ACTIONS(2188), + [anon_sym_GT_AMP] = ACTIONS(2188), + [anon_sym_LT_LT] = ACTIONS(2188), + [anon_sym_LT_LT_DASH] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [sym_raw_string] = ACTIONS(2188), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2188), + [anon_sym_LT_LPAREN] = ACTIONS(2188), + [anon_sym_GT_LPAREN] = ACTIONS(2188), + [sym_word] = ACTIONS(2188), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), + }, + [799] = { + [aux_sym_concatenation_repeat1] = STATE(1026), [sym__concat] = ACTIONS(360), [anon_sym_RBRACE] = ACTIONS(440), [sym_comment] = ACTIONS(52), }, - [794] = { - [anon_sym_RBRACE] = ACTIONS(2166), + [800] = { + [anon_sym_RBRACE] = ACTIONS(2190), [sym_comment] = ACTIONS(52), }, - [795] = { - [sym_file_descriptor] = ACTIONS(2168), - [sym__concat] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), - [anon_sym_PIPE_AMP] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_GT] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_AMP_GT] = ACTIONS(2170), - [anon_sym_AMP_GT_GT] = ACTIONS(2170), - [anon_sym_LT_AMP] = ACTIONS(2170), - [anon_sym_GT_AMP] = ACTIONS(2170), - [anon_sym_LT_LT] = ACTIONS(2170), - [anon_sym_LT_LT_DASH] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2170), - [sym_raw_string] = ACTIONS(2170), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2170), - [anon_sym_BQUOTE] = ACTIONS(2170), - [anon_sym_LT_LPAREN] = ACTIONS(2170), - [anon_sym_GT_LPAREN] = ACTIONS(2170), - [sym_word] = ACTIONS(2170), + [801] = { + [sym_file_descriptor] = ACTIONS(2192), + [sym__concat] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_SEMI_SEMI] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_AMP_GT] = ACTIONS(2194), + [anon_sym_AMP_GT_GT] = ACTIONS(2194), + [anon_sym_LT_AMP] = ACTIONS(2194), + [anon_sym_GT_AMP] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2194), + [anon_sym_LT_LT_DASH] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_raw_string] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2194), + [anon_sym_GT_LPAREN] = ACTIONS(2194), + [sym_word] = ACTIONS(2194), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), }, - [796] = { - [sym_file_descriptor] = ACTIONS(1338), - [sym_variable_name] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_AMP_GT] = ACTIONS(2172), - [anon_sym_AMP_GT_GT] = ACTIONS(1338), - [anon_sym_LT_AMP] = ACTIONS(1338), - [anon_sym_GT_AMP] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_raw_string] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(2172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_LT_LPAREN] = ACTIONS(1338), - [anon_sym_GT_LPAREN] = ACTIONS(1338), - [sym_word] = ACTIONS(1340), + [802] = { + [sym_file_descriptor] = ACTIONS(1340), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(2196), + [anon_sym_AMP_GT_GT] = ACTIONS(1340), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(1340), + [anon_sym_GT_LPAREN] = ACTIONS(1340), + [sym_word] = ACTIONS(1342), [sym_comment] = ACTIONS(52), }, - [797] = { + [803] = { [sym_concatenation] = STATE(397), [sym_string] = STATE(391), [sym_simple_expansion] = STATE(391), [sym_expansion] = STATE(391), [sym_command_substitution] = STATE(391), [sym_process_substitution] = STATE(391), - [aux_sym_for_statement_repeat1] = STATE(677), - [anon_sym_RPAREN] = ACTIONS(2174), + [aux_sym_for_statement_repeat1] = STATE(678), + [anon_sym_RPAREN] = ACTIONS(2198), [anon_sym_DQUOTE] = ACTIONS(716), [sym_raw_string] = ACTIONS(718), [anon_sym_DOLLAR] = ACTIONS(720), @@ -21234,7 +21413,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(730), [sym_comment] = ACTIONS(52), }, - [798] = { + [804] = { [sym_file_descriptor] = ACTIONS(416), [sym__concat] = ACTIONS(416), [sym_variable_name] = ACTIONS(416), @@ -21261,12 +21440,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(418), [sym_comment] = ACTIONS(52), }, - [799] = { + [805] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2200), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -21274,27 +21453,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [800] = { - [sym_string] = STATE(1021), - [sym_simple_expansion] = STATE(1021), - [sym_expansion] = STATE(1021), - [sym_command_substitution] = STATE(1021), - [sym_process_substitution] = STATE(1021), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1070), - [anon_sym_LT_LPAREN] = ACTIONS(1072), - [anon_sym_GT_LPAREN] = ACTIONS(1072), - [sym_word] = ACTIONS(2180), + [806] = { + [sym_string] = STATE(1030), + [sym_simple_expansion] = STATE(1030), + [sym_expansion] = STATE(1030), + [sym_command_substitution] = STATE(1030), + [sym_process_substitution] = STATE(1030), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_raw_string] = ACTIONS(2202), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1070), + [anon_sym_BQUOTE] = ACTIONS(1072), + [anon_sym_LT_LPAREN] = ACTIONS(1074), + [anon_sym_GT_LPAREN] = ACTIONS(1074), + [sym_word] = ACTIONS(2204), [sym_comment] = ACTIONS(52), }, - [801] = { - [aux_sym_concatenation_repeat1] = STATE(1022), + [807] = { + [aux_sym_concatenation_repeat1] = STATE(1031), [sym_file_descriptor] = ACTIONS(440), - [sym__concat] = ACTIONS(1625), + [sym__concat] = ACTIONS(1641), [sym_variable_name] = ACTIONS(440), [anon_sym_PIPE] = ACTIONS(844), [anon_sym_RPAREN] = ACTIONS(440), @@ -21319,7 +21498,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(442), [sym_comment] = ACTIONS(52), }, - [802] = { + [808] = { [sym_file_descriptor] = ACTIONS(444), [sym__concat] = ACTIONS(444), [sym_variable_name] = ACTIONS(444), @@ -21346,7 +21525,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(446), [sym_comment] = ACTIONS(52), }, - [803] = { + [809] = { [sym_file_descriptor] = ACTIONS(448), [sym__concat] = ACTIONS(448), [sym_variable_name] = ACTIONS(448), @@ -21373,7 +21552,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(450), [sym_comment] = ACTIONS(52), }, - [804] = { + [810] = { [sym_file_descriptor] = ACTIONS(452), [sym__concat] = ACTIONS(452), [sym_variable_name] = ACTIONS(452), @@ -21400,8 +21579,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(454), [sym_comment] = ACTIONS(52), }, - [805] = { - [sym_special_variable_name] = STATE(1024), + [811] = { + [sym_special_variable_name] = STATE(1033), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -21414,7 +21593,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(2182), + [sym_simple_variable_name] = ACTIONS(2206), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -21422,41 +21601,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [806] = { - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2188), - [anon_sym_COLON] = ACTIONS(2190), - [anon_sym_COLON_QMARK] = ACTIONS(2188), - [anon_sym_COLON_DASH] = ACTIONS(2188), - [anon_sym_PERCENT] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), + [812] = { + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_EQ] = ACTIONS(2212), + [anon_sym_COLON] = ACTIONS(2214), + [anon_sym_COLON_QMARK] = ACTIONS(2212), + [anon_sym_COLON_DASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), [sym_comment] = ACTIONS(52), }, - [807] = { - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_EQ] = ACTIONS(2196), - [anon_sym_COLON] = ACTIONS(2198), - [anon_sym_COLON_QMARK] = ACTIONS(2196), - [anon_sym_COLON_DASH] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), + [813] = { + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_EQ] = ACTIONS(2220), + [anon_sym_COLON] = ACTIONS(2222), + [anon_sym_COLON_QMARK] = ACTIONS(2220), + [anon_sym_COLON_DASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2220), + [anon_sym_SLASH] = ACTIONS(2220), [sym_comment] = ACTIONS(52), }, - [808] = { + [814] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(2224), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [809] = { + [815] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(2224), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -21478,15 +21657,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [810] = { + [816] = { [anon_sym_PIPE] = ACTIONS(542), [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(2200), + [anon_sym_BQUOTE] = ACTIONS(2224), [sym_comment] = ACTIONS(52), }, - [811] = { + [817] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(542), @@ -21505,25 +21684,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(2200), + [anon_sym_BQUOTE] = ACTIONS(2224), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [812] = { + [818] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(2226), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [813] = { + [819] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(2226), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -21545,39 +21724,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [814] = { + [820] = { [sym_concatenation] = STATE(422), [sym_string] = STATE(416), [sym_simple_expansion] = STATE(416), [sym_expansion] = STATE(416), [sym_command_substitution] = STATE(416), [sym_process_substitution] = STATE(416), - [aux_sym_for_statement_repeat1] = STATE(708), - [anon_sym_SEMI_SEMI] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(1402), - [sym_raw_string] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1412), - [anon_sym_LT_LPAREN] = ACTIONS(1414), - [anon_sym_GT_LPAREN] = ACTIONS(1414), - [sym_word] = ACTIONS(1404), + [aux_sym_for_statement_repeat1] = STATE(709), + [anon_sym_SEMI_SEMI] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_raw_string] = ACTIONS(1406), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_LT_LPAREN] = ACTIONS(1416), + [anon_sym_GT_LPAREN] = ACTIONS(1416), + [sym_word] = ACTIONS(1406), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_LF] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_LF] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), }, - [815] = { - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_RPAREN] = ACTIONS(2208), - [anon_sym_PIPE_AMP] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_BQUOTE] = ACTIONS(2208), + [821] = { + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2232), + [anon_sym_PIPE_AMP] = ACTIONS(2232), + [anon_sym_AMP_AMP] = ACTIONS(2232), + [anon_sym_PIPE_PIPE] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2232), [sym_comment] = ACTIONS(52), }, - [816] = { + [822] = { [sym__terminated_statement] = STATE(425), [sym_for_statement] = STATE(426), [sym_while_statement] = STATE(426), @@ -21599,13 +21778,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(711), + [aux_sym_program_repeat1] = STATE(712), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(2210), + [anon_sym_done] = ACTIONS(2234), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -21630,26 +21809,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [817] = { - [anon_sym_PIPE] = ACTIONS(2212), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_PIPE_AMP] = ACTIONS(2214), - [anon_sym_AMP_AMP] = ACTIONS(2214), - [anon_sym_PIPE_PIPE] = ACTIONS(2214), - [anon_sym_BQUOTE] = ACTIONS(2214), + [823] = { + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_RPAREN] = ACTIONS(2238), + [anon_sym_PIPE_AMP] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_BQUOTE] = ACTIONS(2238), [sym_comment] = ACTIONS(52), }, - [818] = { - [anon_sym_fi] = ACTIONS(2216), + [824] = { + [anon_sym_fi] = ACTIONS(2240), [sym_comment] = ACTIONS(52), }, - [819] = { + [825] = { [sym__terminated_statement] = STATE(432), [sym_for_statement] = STATE(433), [sym_while_statement] = STATE(433), [sym_if_statement] = STATE(433), [sym_elif_clause] = STATE(434), - [sym_else_clause] = STATE(1036), + [sym_else_clause] = STATE(1045), [sym_case_statement] = STATE(433), [sym_function_definition] = STATE(433), [sym_subshell] = STATE(433), @@ -21667,15 +21846,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(720), - [aux_sym_if_statement_repeat1] = STATE(1037), + [aux_sym_program_repeat1] = STATE(721), + [aux_sym_if_statement_repeat1] = STATE(1046), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2218), + [anon_sym_fi] = ACTIONS(2242), [anon_sym_elif] = ACTIONS(768), [anon_sym_else] = ACTIONS(770), [anon_sym_case] = ACTIONS(22), @@ -21701,74 +21880,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [820] = { + [826] = { [sym_elif_clause] = STATE(434), - [sym_else_clause] = STATE(1036), - [aux_sym_if_statement_repeat1] = STATE(722), - [anon_sym_fi] = ACTIONS(2216), - [anon_sym_elif] = ACTIONS(1434), - [anon_sym_else] = ACTIONS(1436), + [sym_else_clause] = STATE(1045), + [aux_sym_if_statement_repeat1] = STATE(723), + [anon_sym_fi] = ACTIONS(2240), + [anon_sym_elif] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1438), [sym_comment] = ACTIONS(52), }, - [821] = { - [sym_case_item] = STATE(725), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), - [aux_sym_case_statement_repeat1] = STATE(1039), - [anon_sym_esac] = ACTIONS(2220), + [827] = { + [sym_case_item] = STATE(726), + [sym_concatenation] = STATE(727), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [aux_sym_case_statement_repeat1] = STATE(1048), + [anon_sym_esac] = ACTIONS(2244), [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(1440), + [sym_raw_string] = ACTIONS(1442), [anon_sym_DOLLAR] = ACTIONS(274), [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), [anon_sym_BQUOTE] = ACTIONS(280), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(1442), + [sym_word] = ACTIONS(1444), [sym_comment] = ACTIONS(52), }, - [822] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2222), + [828] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2246), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_LF] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_LF] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2246), }, - [823] = { - [sym_compound_statement] = STATE(1041), + [829] = { + [sym_compound_statement] = STATE(1050), [anon_sym_LBRACE] = ACTIONS(504), [sym_comment] = ACTIONS(52), }, - [824] = { - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_PIPE_AMP] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_PIPE_PIPE] = ACTIONS(2226), - [anon_sym_BQUOTE] = ACTIONS(2226), + [830] = { + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_PIPE_AMP] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_BQUOTE] = ACTIONS(2250), [sym_comment] = ACTIONS(52), }, - [825] = { - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), + [831] = { + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_BQUOTE] = ACTIONS(2254), [sym_comment] = ACTIONS(52), }, - [826] = { + [832] = { [sym_file_descriptor] = ACTIONS(574), [sym_variable_name] = ACTIONS(574), [anon_sym_for] = ACTIONS(576), [anon_sym_while] = ACTIONS(576), [anon_sym_if] = ACTIONS(576), [anon_sym_case] = ACTIONS(576), - [anon_sym_RPAREN] = ACTIONS(2232), + [anon_sym_RPAREN] = ACTIONS(2256), [anon_sym_function] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(576), @@ -21791,156 +21970,184 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(578), [sym_comment] = ACTIONS(52), }, - [827] = { - [sym_file_descriptor] = ACTIONS(1599), - [sym__concat] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_PIPE_AMP] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(1599), - [anon_sym_LT_AMP] = ACTIONS(1599), - [anon_sym_GT_AMP] = ACTIONS(1599), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_raw_string] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [anon_sym_LT_LPAREN] = ACTIONS(1599), - [anon_sym_GT_LPAREN] = ACTIONS(1599), - [sym_word] = ACTIONS(1601), - [sym_comment] = ACTIONS(52), - }, - [828] = { - [anon_sym_AT] = ACTIONS(2234), - [sym_comment] = ACTIONS(52), - }, - [829] = { - [sym_file_descriptor] = ACTIONS(1605), - [sym__concat] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_PIPE_AMP] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_AMP_GT] = ACTIONS(2108), - [anon_sym_AMP_GT_GT] = ACTIONS(1605), - [anon_sym_LT_AMP] = ACTIONS(1605), - [anon_sym_GT_AMP] = ACTIONS(1605), - [anon_sym_LT_LT] = ACTIONS(2108), - [anon_sym_LT_LT_DASH] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [sym_raw_string] = ACTIONS(1605), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [anon_sym_LT_LPAREN] = ACTIONS(1605), - [anon_sym_GT_LPAREN] = ACTIONS(1605), - [sym_word] = ACTIONS(1607), - [sym_comment] = ACTIONS(52), - }, - [830] = { - [anon_sym_AT] = ACTIONS(2236), - [sym_comment] = ACTIONS(52), - }, - [831] = { - [anon_sym_RBRACK] = ACTIONS(2238), - [sym_comment] = ACTIONS(52), - }, - [832] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2240), - [sym_comment] = ACTIONS(52), - }, [833] = { - [anon_sym_RBRACE] = ACTIONS(2240), + [sym_file_descriptor] = ACTIONS(1611), + [sym__concat] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_PIPE_AMP] = ACTIONS(1611), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_AMP_GT] = ACTIONS(2126), + [anon_sym_AMP_GT_GT] = ACTIONS(1611), + [anon_sym_LT_AMP] = ACTIONS(1611), + [anon_sym_GT_AMP] = ACTIONS(1611), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_LT_LT_DASH] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym_raw_string] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [anon_sym_LT_LPAREN] = ACTIONS(1611), + [anon_sym_GT_LPAREN] = ACTIONS(1611), + [sym_word] = ACTIONS(1613), [sym_comment] = ACTIONS(52), }, [834] = { - [anon_sym_RBRACK] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2258), [sym_comment] = ACTIONS(52), }, [835] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2244), + [sym_file_descriptor] = ACTIONS(1617), + [sym__concat] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_PIPE_AMP] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1617), + [anon_sym_PIPE_PIPE] = ACTIONS(2130), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1617), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1617), + [anon_sym_LT_AMP] = ACTIONS(1617), + [anon_sym_GT_AMP] = ACTIONS(1617), + [anon_sym_LT_LT] = ACTIONS(2130), + [anon_sym_LT_LT_DASH] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym_raw_string] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1617), + [anon_sym_BQUOTE] = ACTIONS(1617), + [anon_sym_LT_LPAREN] = ACTIONS(1617), + [anon_sym_GT_LPAREN] = ACTIONS(1617), + [sym_word] = ACTIONS(1619), [sym_comment] = ACTIONS(52), }, [836] = { - [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2260), [sym_comment] = ACTIONS(52), }, [837] = { - [sym_file_redirect] = STATE(1049), - [sym_file_descriptor] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_PIPE_AMP] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_PIPE_PIPE] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_GT] = ACTIONS(1134), - [anon_sym_AMP_GT] = ACTIONS(1132), - [anon_sym_AMP_GT_GT] = ACTIONS(1134), - [anon_sym_LT_AMP] = ACTIONS(1134), - [anon_sym_GT_AMP] = ACTIONS(1134), + [anon_sym_RBRACK] = ACTIONS(2262), [sym_comment] = ACTIONS(52), }, [838] = { - [sym_file_descriptor] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_PIPE_AMP] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(1824), - [anon_sym_AMP_GT] = ACTIONS(2246), - [anon_sym_AMP_GT_GT] = ACTIONS(1824), - [anon_sym_LT_AMP] = ACTIONS(1824), - [anon_sym_GT_AMP] = ACTIONS(1824), - [anon_sym_BQUOTE] = ACTIONS(1824), + [sym_file_descriptor] = ACTIONS(1625), + [sym__concat] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_PIPE_AMP] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2136), + [anon_sym_GT] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(1625), + [anon_sym_AMP_GT] = ACTIONS(2136), + [anon_sym_AMP_GT_GT] = ACTIONS(1625), + [anon_sym_LT_AMP] = ACTIONS(1625), + [anon_sym_GT_AMP] = ACTIONS(1625), + [anon_sym_LT_LT] = ACTIONS(2136), + [anon_sym_LT_LT_DASH] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym_raw_string] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1625), + [anon_sym_BQUOTE] = ACTIONS(1625), + [anon_sym_LT_LPAREN] = ACTIONS(1625), + [anon_sym_GT_LPAREN] = ACTIONS(1625), + [sym_word] = ACTIONS(1627), [sym_comment] = ACTIONS(52), }, [839] = { - [sym_concatenation] = STATE(1051), - [sym_string] = STATE(1050), - [sym_simple_expansion] = STATE(1050), - [sym_expansion] = STATE(1050), - [sym_command_substitution] = STATE(1050), - [sym_process_substitution] = STATE(1050), - [anon_sym_DQUOTE] = ACTIONS(1700), - [sym_raw_string] = ACTIONS(2248), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(2250), + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2264), [sym_comment] = ACTIONS(52), }, [840] = { + [anon_sym_RBRACE] = ACTIONS(2264), + [sym_comment] = ACTIONS(52), + }, + [841] = { + [anon_sym_RBRACK] = ACTIONS(2266), + [sym_comment] = ACTIONS(52), + }, + [842] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2268), + [sym_comment] = ACTIONS(52), + }, + [843] = { + [anon_sym_RBRACE] = ACTIONS(2268), + [sym_comment] = ACTIONS(52), + }, + [844] = { + [sym_file_redirect] = STATE(1058), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_PIPE_AMP] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_AMP_GT] = ACTIONS(1134), + [anon_sym_AMP_GT_GT] = ACTIONS(1136), + [anon_sym_LT_AMP] = ACTIONS(1136), + [anon_sym_GT_AMP] = ACTIONS(1136), + [sym_comment] = ACTIONS(52), + }, + [845] = { + [sym_file_descriptor] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_PIPE_AMP] = ACTIONS(1842), + [anon_sym_AMP_AMP] = ACTIONS(1842), + [anon_sym_PIPE_PIPE] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(1842), + [anon_sym_AMP_GT] = ACTIONS(2270), + [anon_sym_AMP_GT_GT] = ACTIONS(1842), + [anon_sym_LT_AMP] = ACTIONS(1842), + [anon_sym_GT_AMP] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [sym_comment] = ACTIONS(52), + }, + [846] = { + [sym_concatenation] = STATE(1060), + [sym_string] = STATE(1059), + [sym_simple_expansion] = STATE(1059), + [sym_expansion] = STATE(1059), + [sym_command_substitution] = STATE(1059), + [sym_process_substitution] = STATE(1059), + [anon_sym_DQUOTE] = ACTIONS(1718), + [sym_raw_string] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_word] = ACTIONS(2274), + [sym_comment] = ACTIONS(52), + }, + [847] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), - [aux_sym_string_repeat1] = STATE(1053), - [anon_sym_DQUOTE] = ACTIONS(2252), + [aux_sym_string_repeat1] = STATE(1062), + [anon_sym_DQUOTE] = ACTIONS(2276), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -21948,9 +22155,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [841] = { - [aux_sym_concatenation_repeat1] = STATE(1055), - [sym__concat] = ACTIONS(2254), + [848] = { + [aux_sym_concatenation_repeat1] = STATE(1064), + [sym__concat] = ACTIONS(2278), [anon_sym_PIPE] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_PIPE_AMP] = ACTIONS(400), @@ -21958,27 +22165,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(400), [sym_comment] = ACTIONS(52), }, - [842] = { - [sym_special_variable_name] = STATE(1058), - [anon_sym_DOLLAR] = ACTIONS(2256), - [anon_sym_POUND] = ACTIONS(2256), - [anon_sym_AT] = ACTIONS(2256), + [849] = { + [sym_special_variable_name] = STATE(1067), + [anon_sym_DOLLAR] = ACTIONS(2280), + [anon_sym_POUND] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2280), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_0] = ACTIONS(2260), - [anon_sym__] = ACTIONS(2260), + [sym_simple_variable_name] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2280), + [anon_sym_QMARK] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2280), + [anon_sym_0] = ACTIONS(2284), + [anon_sym__] = ACTIONS(2284), }, - [843] = { - [sym_special_variable_name] = STATE(1061), + [850] = { + [sym_special_variable_name] = STATE(1070), [anon_sym_DOLLAR] = ACTIONS(164), - [anon_sym_POUND] = ACTIONS(2262), + [anon_sym_POUND] = ACTIONS(2286), [anon_sym_AT] = ACTIONS(164), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(2264), + [sym_simple_variable_name] = ACTIONS(2288), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -21986,19 +22193,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [844] = { - [sym_for_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_case_statement] = STATE(1062), - [sym_function_definition] = STATE(1062), - [sym_subshell] = STATE(1062), - [sym_pipeline] = STATE(1062), - [sym_list] = STATE(1062), - [sym_bracket_command] = STATE(1062), - [sym_command] = STATE(1062), + [851] = { + [sym_for_statement] = STATE(1071), + [sym_while_statement] = STATE(1071), + [sym_if_statement] = STATE(1071), + [sym_case_statement] = STATE(1071), + [sym_function_definition] = STATE(1071), + [sym_subshell] = STATE(1071), + [sym_pipeline] = STATE(1071), + [sym_list] = STATE(1071), + [sym_bracket_command] = STATE(1071), + [sym_command] = STATE(1071), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(1063), + [sym_environment_variable_assignment] = STATE(1072), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -22036,19 +22243,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(204), [sym_comment] = ACTIONS(52), }, - [845] = { - [sym_for_statement] = STATE(1064), - [sym_while_statement] = STATE(1064), - [sym_if_statement] = STATE(1064), - [sym_case_statement] = STATE(1064), - [sym_function_definition] = STATE(1064), - [sym_subshell] = STATE(1064), - [sym_pipeline] = STATE(1064), - [sym_list] = STATE(1064), - [sym_bracket_command] = STATE(1064), - [sym_command] = STATE(1064), + [852] = { + [sym_for_statement] = STATE(1073), + [sym_while_statement] = STATE(1073), + [sym_if_statement] = STATE(1073), + [sym_case_statement] = STATE(1073), + [sym_function_definition] = STATE(1073), + [sym_subshell] = STATE(1073), + [sym_pipeline] = STATE(1073), + [sym_list] = STATE(1073), + [sym_bracket_command] = STATE(1073), + [sym_command] = STATE(1073), [sym_command_name] = STATE(128), - [sym_environment_variable_assignment] = STATE(1065), + [sym_environment_variable_assignment] = STATE(1074), [sym_subscript] = STATE(130), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -22086,19 +22293,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(212), [sym_comment] = ACTIONS(52), }, - [846] = { - [sym_for_statement] = STATE(1066), - [sym_while_statement] = STATE(1066), - [sym_if_statement] = STATE(1066), - [sym_case_statement] = STATE(1066), - [sym_function_definition] = STATE(1066), - [sym_subshell] = STATE(1066), - [sym_pipeline] = STATE(1066), - [sym_list] = STATE(1066), - [sym_bracket_command] = STATE(1066), - [sym_command] = STATE(1066), + [853] = { + [sym_for_statement] = STATE(1075), + [sym_while_statement] = STATE(1075), + [sym_if_statement] = STATE(1075), + [sym_case_statement] = STATE(1075), + [sym_function_definition] = STATE(1075), + [sym_subshell] = STATE(1075), + [sym_pipeline] = STATE(1075), + [sym_list] = STATE(1075), + [sym_bracket_command] = STATE(1075), + [sym_command] = STATE(1075), [sym_command_name] = STATE(118), - [sym_environment_variable_assignment] = STATE(1067), + [sym_environment_variable_assignment] = STATE(1076), [sym_subscript] = STATE(120), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(121), @@ -22136,7 +22343,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(204), [sym_comment] = ACTIONS(52), }, - [847] = { + [854] = { [anon_sym_PIPE] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_PIPE_AMP] = ACTIONS(400), @@ -22145,10 +22352,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(400), [sym_comment] = ACTIONS(52), }, - [848] = { - [aux_sym_concatenation_repeat1] = STATE(853), + [855] = { + [aux_sym_concatenation_repeat1] = STATE(860), [sym_file_descriptor] = ACTIONS(690), - [sym__concat] = ACTIONS(1730), + [sym__concat] = ACTIONS(1748), [anon_sym_PIPE] = ACTIONS(692), [anon_sym_RPAREN] = ACTIONS(690), [anon_sym_PIPE_AMP] = ACTIONS(690), @@ -22165,7 +22372,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(690), [sym_comment] = ACTIONS(52), }, - [849] = { + [856] = { [sym_file_descriptor] = ACTIONS(690), [anon_sym_PIPE] = ACTIONS(692), [anon_sym_RPAREN] = ACTIONS(690), @@ -22184,7 +22391,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(690), [sym_comment] = ACTIONS(52), }, - [850] = { + [857] = { [sym_file_descriptor] = ACTIONS(416), [sym__concat] = ACTIONS(416), [anon_sym_PIPE] = ACTIONS(836), @@ -22204,12 +22411,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(416), [sym_comment] = ACTIONS(52), }, - [851] = { + [858] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2290), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -22217,27 +22424,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [852] = { - [sym_string] = STATE(1069), - [sym_simple_expansion] = STATE(1069), - [sym_expansion] = STATE(1069), - [sym_command_substitution] = STATE(1069), - [sym_process_substitution] = STATE(1069), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_raw_string] = ACTIONS(2268), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1150), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1154), - [anon_sym_LT_LPAREN] = ACTIONS(1156), - [anon_sym_GT_LPAREN] = ACTIONS(1156), - [sym_word] = ACTIONS(2270), + [859] = { + [sym_string] = STATE(1078), + [sym_simple_expansion] = STATE(1078), + [sym_expansion] = STATE(1078), + [sym_command_substitution] = STATE(1078), + [sym_process_substitution] = STATE(1078), + [anon_sym_DQUOTE] = ACTIONS(1146), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(1150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_LT_LPAREN] = ACTIONS(1158), + [anon_sym_GT_LPAREN] = ACTIONS(1158), + [sym_word] = ACTIONS(2294), [sym_comment] = ACTIONS(52), }, - [853] = { - [aux_sym_concatenation_repeat1] = STATE(1070), + [860] = { + [aux_sym_concatenation_repeat1] = STATE(1079), [sym_file_descriptor] = ACTIONS(440), - [sym__concat] = ACTIONS(1730), + [sym__concat] = ACTIONS(1748), [anon_sym_PIPE] = ACTIONS(844), [anon_sym_RPAREN] = ACTIONS(440), [anon_sym_PIPE_AMP] = ACTIONS(440), @@ -22254,7 +22461,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(440), [sym_comment] = ACTIONS(52), }, - [854] = { + [861] = { [sym_file_descriptor] = ACTIONS(444), [sym__concat] = ACTIONS(444), [anon_sym_PIPE] = ACTIONS(456), @@ -22274,7 +22481,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(444), [sym_comment] = ACTIONS(52), }, - [855] = { + [862] = { [sym_file_descriptor] = ACTIONS(448), [sym__concat] = ACTIONS(448), [anon_sym_PIPE] = ACTIONS(846), @@ -22294,7 +22501,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(448), [sym_comment] = ACTIONS(52), }, - [856] = { + [863] = { [sym_file_descriptor] = ACTIONS(452), [sym__concat] = ACTIONS(452), [anon_sym_PIPE] = ACTIONS(848), @@ -22314,8 +22521,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(452), [sym_comment] = ACTIONS(52), }, - [857] = { - [sym_special_variable_name] = STATE(1072), + [864] = { + [sym_special_variable_name] = STATE(1081), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -22328,7 +22535,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(2272), + [sym_simple_variable_name] = ACTIONS(2296), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -22336,41 +22543,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [858] = { - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_COLON] = ACTIONS(2280), - [anon_sym_COLON_QMARK] = ACTIONS(2278), - [anon_sym_COLON_DASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), + [865] = { + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_EQ] = ACTIONS(2302), + [anon_sym_COLON] = ACTIONS(2304), + [anon_sym_COLON_QMARK] = ACTIONS(2302), + [anon_sym_COLON_DASH] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2302), + [anon_sym_SLASH] = ACTIONS(2302), [sym_comment] = ACTIONS(52), }, - [859] = { - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2288), - [anon_sym_COLON_QMARK] = ACTIONS(2286), - [anon_sym_COLON_DASH] = ACTIONS(2286), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_SLASH] = ACTIONS(2286), + [866] = { + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_EQ] = ACTIONS(2310), + [anon_sym_COLON] = ACTIONS(2312), + [anon_sym_COLON_QMARK] = ACTIONS(2310), + [anon_sym_COLON_DASH] = ACTIONS(2310), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_SLASH] = ACTIONS(2310), [sym_comment] = ACTIONS(52), }, - [860] = { + [867] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(2314), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [861] = { + [868] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(2314), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -22392,15 +22599,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [862] = { + [869] = { [anon_sym_PIPE] = ACTIONS(542), [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(2290), + [anon_sym_BQUOTE] = ACTIONS(2314), [sym_comment] = ACTIONS(52), }, - [863] = { + [870] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(542), @@ -22419,25 +22626,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(2290), + [anon_sym_BQUOTE] = ACTIONS(2314), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [864] = { + [871] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2316), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [865] = { + [872] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2316), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -22459,45 +22666,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [866] = { - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_RPAREN] = ACTIONS(1880), - [anon_sym_PIPE_AMP] = ACTIONS(1880), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_GT] = ACTIONS(2294), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_AMP_GT] = ACTIONS(2294), - [anon_sym_AMP_GT_GT] = ACTIONS(1880), - [anon_sym_LT_AMP] = ACTIONS(1880), - [anon_sym_GT_AMP] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(2294), - [anon_sym_LT_LT_DASH] = ACTIONS(1880), - [anon_sym_BQUOTE] = ACTIONS(1880), + [873] = { + [sym_file_descriptor] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_PIPE_AMP] = ACTIONS(1898), + [anon_sym_AMP_AMP] = ACTIONS(1898), + [anon_sym_PIPE_PIPE] = ACTIONS(1898), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(1898), + [anon_sym_AMP_GT] = ACTIONS(2318), + [anon_sym_AMP_GT_GT] = ACTIONS(1898), + [anon_sym_LT_AMP] = ACTIONS(1898), + [anon_sym_GT_AMP] = ACTIONS(1898), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_LT_LT_DASH] = ACTIONS(1898), + [anon_sym_BQUOTE] = ACTIONS(1898), [sym_comment] = ACTIONS(52), }, - [867] = { - [sym_simple_expansion] = STATE(638), - [sym_expansion] = STATE(638), - [aux_sym_heredoc_repeat1] = STATE(916), - [sym__heredoc_middle] = ACTIONS(1250), - [sym__heredoc_end] = ACTIONS(2296), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [874] = { + [sym_simple_expansion] = STATE(639), + [sym_expansion] = STATE(639), + [aux_sym_heredoc_repeat1] = STATE(923), + [sym__heredoc_middle] = ACTIONS(1252), + [sym__heredoc_end] = ACTIONS(2320), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), [sym_comment] = ACTIONS(52), }, - [868] = { + [875] = { [sym_file_redirect] = STATE(326), [sym_heredoc_redirect] = STATE(326), - [aux_sym_command_repeat2] = STATE(590), + [aux_sym_command_repeat2] = STATE(591), [sym_file_descriptor] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_RPAREN] = ACTIONS(2300), - [anon_sym_PIPE_AMP] = ACTIONS(2300), - [anon_sym_AMP_AMP] = ACTIONS(2300), - [anon_sym_PIPE_PIPE] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(2322), + [anon_sym_RPAREN] = ACTIONS(2324), + [anon_sym_PIPE_AMP] = ACTIONS(2324), + [anon_sym_AMP_AMP] = ACTIONS(2324), + [anon_sym_PIPE_PIPE] = ACTIONS(2324), [anon_sym_LT] = ACTIONS(520), [anon_sym_GT] = ACTIONS(520), [anon_sym_GT_GT] = ACTIONS(522), @@ -22509,10 +22716,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(526), [sym_comment] = ACTIONS(52), }, - [869] = { - [aux_sym_concatenation_repeat1] = STATE(1082), + [876] = { + [aux_sym_concatenation_repeat1] = STATE(1091), [sym_file_descriptor] = ACTIONS(440), - [sym__concat] = ACTIONS(1625), + [sym__concat] = ACTIONS(1641), [sym_variable_name] = ACTIONS(440), [anon_sym_PIPE] = ACTIONS(844), [anon_sym_PIPE_AMP] = ACTIONS(440), @@ -22536,49 +22743,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(442), [sym_comment] = ACTIONS(52), }, - [870] = { - [sym_compound_statement] = STATE(1083), + [877] = { + [sym_compound_statement] = STATE(1092), [anon_sym_LBRACE] = ACTIONS(504), [sym_comment] = ACTIONS(52), }, - [871] = { - [sym_file_redirect] = STATE(1049), - [sym_file_descriptor] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_PIPE_AMP] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_PIPE_PIPE] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1182), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(1182), - [anon_sym_LT_AMP] = ACTIONS(1182), - [anon_sym_GT_AMP] = ACTIONS(1182), - [anon_sym_BQUOTE] = ACTIONS(2226), + [878] = { + [sym_file_redirect] = STATE(1058), + [sym_file_descriptor] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PIPE_AMP] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_AMP_GT] = ACTIONS(1182), + [anon_sym_AMP_GT_GT] = ACTIONS(1184), + [anon_sym_LT_AMP] = ACTIONS(1184), + [anon_sym_GT_AMP] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(2250), [sym_comment] = ACTIONS(52), }, - [872] = { - [sym_concatenation] = STATE(1051), - [sym_string] = STATE(1084), - [sym_simple_expansion] = STATE(1084), - [sym_expansion] = STATE(1084), - [sym_command_substitution] = STATE(1084), - [sym_process_substitution] = STATE(1084), - [anon_sym_DQUOTE] = ACTIONS(1700), - [sym_raw_string] = ACTIONS(2302), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(2304), + [879] = { + [sym_concatenation] = STATE(1060), + [sym_string] = STATE(1093), + [sym_simple_expansion] = STATE(1093), + [sym_expansion] = STATE(1093), + [sym_command_substitution] = STATE(1093), + [sym_process_substitution] = STATE(1093), + [anon_sym_DQUOTE] = ACTIONS(1718), + [sym_raw_string] = ACTIONS(2326), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_word] = ACTIONS(2328), [sym_comment] = ACTIONS(52), }, - [873] = { - [aux_sym_concatenation_repeat1] = STATE(1085), - [sym__concat] = ACTIONS(2254), + [880] = { + [aux_sym_concatenation_repeat1] = STATE(1094), + [sym__concat] = ACTIONS(2278), [anon_sym_PIPE] = ACTIONS(404), [anon_sym_PIPE_AMP] = ACTIONS(400), [anon_sym_AMP_AMP] = ACTIONS(400), @@ -22586,10 +22793,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(400), [sym_comment] = ACTIONS(52), }, - [874] = { - [aux_sym_concatenation_repeat1] = STATE(875), + [881] = { + [aux_sym_concatenation_repeat1] = STATE(882), [sym_file_descriptor] = ACTIONS(690), - [sym__concat] = ACTIONS(1730), + [sym__concat] = ACTIONS(1748), [anon_sym_PIPE] = ACTIONS(692), [anon_sym_PIPE_AMP] = ACTIONS(690), [anon_sym_AMP_AMP] = ACTIONS(690), @@ -22606,10 +22813,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(690), [sym_comment] = ACTIONS(52), }, - [875] = { - [aux_sym_concatenation_repeat1] = STATE(1086), + [882] = { + [aux_sym_concatenation_repeat1] = STATE(1095), [sym_file_descriptor] = ACTIONS(440), - [sym__concat] = ACTIONS(1730), + [sym__concat] = ACTIONS(1748), [anon_sym_PIPE] = ACTIONS(844), [anon_sym_PIPE_AMP] = ACTIONS(440), [anon_sym_AMP_AMP] = ACTIONS(440), @@ -22626,15 +22833,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(440), [sym_comment] = ACTIONS(52), }, - [876] = { + [883] = { [sym_file_redirect] = STATE(326), [sym_heredoc_redirect] = STATE(326), - [aux_sym_command_repeat2] = STATE(606), + [aux_sym_command_repeat2] = STATE(607), [sym_file_descriptor] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_PIPE_AMP] = ACTIONS(2300), - [anon_sym_AMP_AMP] = ACTIONS(2300), - [anon_sym_PIPE_PIPE] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(2322), + [anon_sym_PIPE_AMP] = ACTIONS(2324), + [anon_sym_AMP_AMP] = ACTIONS(2324), + [anon_sym_PIPE_PIPE] = ACTIONS(2324), [anon_sym_LT] = ACTIONS(550), [anon_sym_GT] = ACTIONS(550), [anon_sym_GT_GT] = ACTIONS(552), @@ -22644,47 +22851,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(552), [anon_sym_LT_LT] = ACTIONS(524), [anon_sym_LT_LT_DASH] = ACTIONS(526), - [anon_sym_BQUOTE] = ACTIONS(2300), + [anon_sym_BQUOTE] = ACTIONS(2324), [sym_comment] = ACTIONS(52), }, - [877] = { - [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), + [884] = { + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_SEMI_SEMI] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_PIPE_PIPE] = ACTIONS(2118), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LF] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_LF] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), }, - [878] = { - [aux_sym_concatenation_repeat1] = STATE(883), - [sym__concat] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [885] = { + [aux_sym_concatenation_repeat1] = STATE(890), + [sym__concat] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_SEMI_SEMI] = ACTIONS(1864), + [anon_sym_PIPE_AMP] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), }, - [879] = { - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [886] = { + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_SEMI_SEMI] = ACTIONS(1864), + [anon_sym_PIPE_AMP] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), }, - [880] = { + [887] = { [sym__concat] = ACTIONS(416), [anon_sym_PIPE] = ACTIONS(418), [anon_sym_RPAREN] = ACTIONS(418), @@ -22697,12 +22904,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(418), [anon_sym_AMP] = ACTIONS(418), }, - [881] = { + [888] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(2306), + [anon_sym_DQUOTE] = ACTIONS(2330), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -22710,26 +22917,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [882] = { - [sym_string] = STATE(1088), - [sym_simple_expansion] = STATE(1088), - [sym_expansion] = STATE(1088), - [sym_command_substitution] = STATE(1088), - [sym_process_substitution] = STATE(1088), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_raw_string] = ACTIONS(2308), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1218), - [anon_sym_GT_LPAREN] = ACTIONS(1218), - [sym_word] = ACTIONS(2310), + [889] = { + [sym_string] = STATE(1097), + [sym_simple_expansion] = STATE(1097), + [sym_expansion] = STATE(1097), + [sym_command_substitution] = STATE(1097), + [sym_process_substitution] = STATE(1097), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_raw_string] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1218), + [anon_sym_LT_LPAREN] = ACTIONS(1220), + [anon_sym_GT_LPAREN] = ACTIONS(1220), + [sym_word] = ACTIONS(2334), [sym_comment] = ACTIONS(52), }, - [883] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [sym__concat] = ACTIONS(1834), + [890] = { + [aux_sym_concatenation_repeat1] = STATE(1098), + [sym__concat] = ACTIONS(1852), [anon_sym_PIPE] = ACTIONS(442), [anon_sym_SEMI_SEMI] = ACTIONS(442), [anon_sym_PIPE_AMP] = ACTIONS(442), @@ -22740,7 +22947,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(442), [anon_sym_AMP] = ACTIONS(442), }, - [884] = { + [891] = { [sym__concat] = ACTIONS(444), [anon_sym_PIPE] = ACTIONS(446), [anon_sym_RPAREN] = ACTIONS(446), @@ -22753,7 +22960,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(446), [anon_sym_AMP] = ACTIONS(446), }, - [885] = { + [892] = { [sym__concat] = ACTIONS(448), [anon_sym_PIPE] = ACTIONS(450), [anon_sym_RPAREN] = ACTIONS(450), @@ -22766,7 +22973,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(450), [anon_sym_AMP] = ACTIONS(450), }, - [886] = { + [893] = { [sym__concat] = ACTIONS(452), [anon_sym_PIPE] = ACTIONS(454), [anon_sym_RPAREN] = ACTIONS(454), @@ -22779,8 +22986,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(454), [anon_sym_AMP] = ACTIONS(454), }, - [887] = { - [sym_special_variable_name] = STATE(1091), + [894] = { + [sym_special_variable_name] = STATE(1100), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -22793,7 +23000,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(2312), + [sym_simple_variable_name] = ACTIONS(2336), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -22801,41 +23008,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [888] = { - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2316), - [anon_sym_EQ] = ACTIONS(2318), - [anon_sym_COLON] = ACTIONS(2320), - [anon_sym_COLON_QMARK] = ACTIONS(2318), - [anon_sym_COLON_DASH] = ACTIONS(2318), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_SLASH] = ACTIONS(2318), + [895] = { + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_EQ] = ACTIONS(2342), + [anon_sym_COLON] = ACTIONS(2344), + [anon_sym_COLON_QMARK] = ACTIONS(2342), + [anon_sym_COLON_DASH] = ACTIONS(2342), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_SLASH] = ACTIONS(2342), [sym_comment] = ACTIONS(52), }, - [889] = { - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2324), - [anon_sym_EQ] = ACTIONS(2326), - [anon_sym_COLON] = ACTIONS(2328), - [anon_sym_COLON_QMARK] = ACTIONS(2326), - [anon_sym_COLON_DASH] = ACTIONS(2326), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_SLASH] = ACTIONS(2326), + [896] = { + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_EQ] = ACTIONS(2350), + [anon_sym_COLON] = ACTIONS(2352), + [anon_sym_COLON_QMARK] = ACTIONS(2350), + [anon_sym_COLON_DASH] = ACTIONS(2350), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_SLASH] = ACTIONS(2350), [sym_comment] = ACTIONS(52), }, - [890] = { + [897] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2354), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [891] = { + [898] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2354), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -22857,15 +23064,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [892] = { + [899] = { [anon_sym_PIPE] = ACTIONS(542), [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(2330), + [anon_sym_BQUOTE] = ACTIONS(2354), [sym_comment] = ACTIONS(52), }, - [893] = { + [900] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(542), @@ -22884,25 +23091,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(2330), + [anon_sym_BQUOTE] = ACTIONS(2354), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [894] = { + [901] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2332), + [anon_sym_RPAREN] = ACTIONS(2356), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [895] = { + [902] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2332), + [anon_sym_RPAREN] = ACTIONS(2356), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -22924,7 +23131,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [896] = { + [903] = { [sym_file_descriptor] = ACTIONS(1000), [sym__concat] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1002), @@ -22947,7 +23154,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1002), [anon_sym_AMP] = ACTIONS(1002), }, - [897] = { + [904] = { [sym_file_descriptor] = ACTIONS(1021), [sym__concat] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(1023), @@ -22970,10 +23177,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [898] = { - [aux_sym_concatenation_repeat1] = STATE(898), + [905] = { + [aux_sym_concatenation_repeat1] = STATE(905), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(2334), + [sym__concat] = ACTIONS(2358), [anon_sym_PIPE] = ACTIONS(1023), [anon_sym_SEMI_SEMI] = ACTIONS(1023), [anon_sym_PIPE_AMP] = ACTIONS(1023), @@ -22993,17 +23200,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [899] = { - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2339), + [906] = { + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2363), [sym_comment] = ACTIONS(52), }, - [900] = { - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2343), + [907] = { + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2367), [sym_comment] = ACTIONS(52), }, - [901] = { + [908] = { [sym_file_descriptor] = ACTIONS(1036), [sym__concat] = ACTIONS(1036), [anon_sym_PIPE] = ACTIONS(1038), @@ -23026,142 +23233,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1038), [anon_sym_AMP] = ACTIONS(1038), }, - [902] = { - [anon_sym_AT] = ACTIONS(2345), - [sym_comment] = ACTIONS(52), - }, - [903] = { - [sym_concatenation] = STATE(1106), - [sym_string] = STATE(1105), - [sym_simple_expansion] = STATE(1105), - [sym_expansion] = STATE(1105), - [sym_command_substitution] = STATE(1105), - [sym_process_substitution] = STATE(1105), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2349), - [sym_comment] = ACTIONS(52), - }, - [904] = { - [sym_file_descriptor] = ACTIONS(1046), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_SEMI_SEMI] = ACTIONS(1048), - [anon_sym_PIPE_AMP] = ACTIONS(1048), - [anon_sym_AMP_AMP] = ACTIONS(1048), - [anon_sym_PIPE_PIPE] = ACTIONS(1048), - [anon_sym_LT] = ACTIONS(1048), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_AMP_GT] = ACTIONS(1048), - [anon_sym_AMP_GT_GT] = ACTIONS(1048), - [anon_sym_LT_AMP] = ACTIONS(1048), - [anon_sym_GT_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1048), - [anon_sym_LT_LT_DASH] = ACTIONS(1048), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_LF] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), - }, - [905] = { - [anon_sym_AT] = ACTIONS(2351), - [sym_comment] = ACTIONS(52), - }, - [906] = { - [sym_concatenation] = STATE(1109), - [sym_string] = STATE(1108), - [sym_simple_expansion] = STATE(1108), - [sym_expansion] = STATE(1108), - [sym_command_substitution] = STATE(1108), - [sym_process_substitution] = STATE(1108), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2355), - [sym_comment] = ACTIONS(52), - }, - [907] = { - [sym_file_descriptor] = ACTIONS(1136), - [sym__concat] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_RPAREN] = ACTIONS(1138), - [anon_sym_SEMI_SEMI] = ACTIONS(1138), - [anon_sym_PIPE_AMP] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1138), - [anon_sym_GT] = ACTIONS(1138), - [anon_sym_GT_GT] = ACTIONS(1138), - [anon_sym_AMP_GT] = ACTIONS(1138), - [anon_sym_AMP_GT_GT] = ACTIONS(1138), - [anon_sym_LT_AMP] = ACTIONS(1138), - [anon_sym_GT_AMP] = ACTIONS(1138), - [anon_sym_LT_LT] = ACTIONS(1138), - [anon_sym_LT_LT_DASH] = ACTIONS(1138), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LF] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - }, - [908] = { - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_SEMI_SEMI] = ACTIONS(1194), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_AMP_GT] = ACTIONS(1194), - [anon_sym_AMP_GT_GT] = ACTIONS(1194), - [anon_sym_LT_AMP] = ACTIONS(1194), - [anon_sym_GT_AMP] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_LT_LT_DASH] = ACTIONS(1194), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - }, [909] = { + [anon_sym_AT] = ACTIONS(2369), + [sym_comment] = ACTIONS(52), + }, + [910] = { + [sym_concatenation] = STATE(1116), + [sym_string] = STATE(1115), + [sym_simple_expansion] = STATE(1115), + [sym_expansion] = STATE(1115), + [sym_command_substitution] = STATE(1115), + [sym_process_substitution] = STATE(1115), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2375), + [sym_comment] = ACTIONS(52), + }, + [911] = { + [sym_file_descriptor] = ACTIONS(1048), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + }, + [912] = { + [anon_sym_AT] = ACTIONS(2377), + [sym_comment] = ACTIONS(52), + }, + [913] = { + [sym_concatenation] = STATE(1119), + [sym_string] = STATE(1118), + [sym_simple_expansion] = STATE(1118), + [sym_expansion] = STATE(1118), + [sym_command_substitution] = STATE(1118), + [sym_process_substitution] = STATE(1118), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2381), + [sym_comment] = ACTIONS(52), + }, + [914] = { + [sym_file_descriptor] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_SEMI_SEMI] = ACTIONS(1140), + [anon_sym_PIPE_AMP] = ACTIONS(1140), + [anon_sym_AMP_AMP] = ACTIONS(1140), + [anon_sym_PIPE_PIPE] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_GT] = ACTIONS(1140), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_AMP_GT] = ACTIONS(1140), + [anon_sym_AMP_GT_GT] = ACTIONS(1140), + [anon_sym_LT_AMP] = ACTIONS(1140), + [anon_sym_GT_AMP] = ACTIONS(1140), + [anon_sym_LT_LT] = ACTIONS(1140), + [anon_sym_LT_LT_DASH] = ACTIONS(1140), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_LF] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + }, + [915] = { + [sym_file_descriptor] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_LF] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + }, + [916] = { [sym__heredoc_middle] = ACTIONS(444), [sym__heredoc_end] = ACTIONS(444), [anon_sym_DOLLAR] = ACTIONS(456), [anon_sym_DOLLAR_LBRACE] = ACTIONS(444), [sym_comment] = ACTIONS(52), }, - [910] = { + [917] = { [sym__heredoc_middle] = ACTIONS(448), [sym__heredoc_end] = ACTIONS(448), [anon_sym_DOLLAR] = ACTIONS(846), [anon_sym_DOLLAR_LBRACE] = ACTIONS(448), [sym_comment] = ACTIONS(52), }, - [911] = { + [918] = { [sym__heredoc_middle] = ACTIONS(452), [sym__heredoc_end] = ACTIONS(452), [anon_sym_DOLLAR] = ACTIONS(848), [anon_sym_DOLLAR_LBRACE] = ACTIONS(452), [sym_comment] = ACTIONS(52), }, - [912] = { - [sym_special_variable_name] = STATE(1111), + [919] = { + [sym_special_variable_name] = STATE(1121), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -23174,7 +23383,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(2357), + [sym_simple_variable_name] = ACTIONS(2383), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -23182,90 +23391,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [913] = { - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2363), - [anon_sym_COLON_DASH] = ACTIONS(2363), - [anon_sym_PERCENT] = ACTIONS(2363), - [anon_sym_SLASH] = ACTIONS(2363), + [920] = { + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2387), + [anon_sym_EQ] = ACTIONS(2389), + [anon_sym_COLON] = ACTIONS(2391), + [anon_sym_COLON_QMARK] = ACTIONS(2389), + [anon_sym_COLON_DASH] = ACTIONS(2389), + [anon_sym_PERCENT] = ACTIONS(2389), + [anon_sym_SLASH] = ACTIONS(2389), [sym_comment] = ACTIONS(52), }, - [914] = { - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_EQ] = ACTIONS(2371), - [anon_sym_COLON] = ACTIONS(2373), - [anon_sym_COLON_QMARK] = ACTIONS(2371), - [anon_sym_COLON_DASH] = ACTIONS(2371), - [anon_sym_PERCENT] = ACTIONS(2371), - [anon_sym_SLASH] = ACTIONS(2371), + [921] = { + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_EQ] = ACTIONS(2397), + [anon_sym_COLON] = ACTIONS(2399), + [anon_sym_COLON_QMARK] = ACTIONS(2397), + [anon_sym_COLON_DASH] = ACTIONS(2397), + [anon_sym_PERCENT] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), [sym_comment] = ACTIONS(52), }, - [915] = { - [sym_file_descriptor] = ACTIONS(2375), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_RPAREN] = ACTIONS(2377), - [anon_sym_SEMI_SEMI] = ACTIONS(2377), - [anon_sym_PIPE_AMP] = ACTIONS(2377), - [anon_sym_AMP_AMP] = ACTIONS(2377), - [anon_sym_PIPE_PIPE] = ACTIONS(2377), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_AMP_GT] = ACTIONS(2377), - [anon_sym_AMP_GT_GT] = ACTIONS(2377), - [anon_sym_LT_AMP] = ACTIONS(2377), - [anon_sym_GT_AMP] = ACTIONS(2377), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_LT_LT_DASH] = ACTIONS(2377), + [922] = { + [sym_file_descriptor] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2403), + [anon_sym_SEMI_SEMI] = ACTIONS(2403), + [anon_sym_PIPE_AMP] = ACTIONS(2403), + [anon_sym_AMP_AMP] = ACTIONS(2403), + [anon_sym_PIPE_PIPE] = ACTIONS(2403), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_GT] = ACTIONS(2403), + [anon_sym_GT_GT] = ACTIONS(2403), + [anon_sym_AMP_GT] = ACTIONS(2403), + [anon_sym_AMP_GT_GT] = ACTIONS(2403), + [anon_sym_LT_AMP] = ACTIONS(2403), + [anon_sym_GT_AMP] = ACTIONS(2403), + [anon_sym_LT_LT] = ACTIONS(2403), + [anon_sym_LT_LT_DASH] = ACTIONS(2403), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2377), - [anon_sym_LF] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_LF] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2403), }, - [916] = { - [sym_simple_expansion] = STATE(638), - [sym_expansion] = STATE(638), - [aux_sym_heredoc_repeat1] = STATE(916), - [sym__heredoc_middle] = ACTIONS(2379), - [sym__heredoc_end] = ACTIONS(2382), - [anon_sym_DOLLAR] = ACTIONS(2384), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), + [923] = { + [sym_simple_expansion] = STATE(639), + [sym_expansion] = STATE(639), + [aux_sym_heredoc_repeat1] = STATE(923), + [sym__heredoc_middle] = ACTIONS(2405), + [sym__heredoc_end] = ACTIONS(2408), + [anon_sym_DOLLAR] = ACTIONS(2410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2413), [sym_comment] = ACTIONS(52), }, - [917] = { - [sym_file_descriptor] = ACTIONS(1338), - [sym_variable_name] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_AMP_GT] = ACTIONS(2172), - [anon_sym_AMP_GT_GT] = ACTIONS(1338), - [anon_sym_LT_AMP] = ACTIONS(1338), - [anon_sym_GT_AMP] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_raw_string] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(2172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_LT_LPAREN] = ACTIONS(1338), - [anon_sym_GT_LPAREN] = ACTIONS(1338), - [sym_word] = ACTIONS(2172), + [924] = { + [sym_file_descriptor] = ACTIONS(1340), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(2196), + [anon_sym_AMP_GT_GT] = ACTIONS(1340), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(1340), + [anon_sym_GT_LPAREN] = ACTIONS(1340), + [sym_word] = ACTIONS(2196), [sym_comment] = ACTIONS(52), }, - [918] = { + [925] = { [sym_concatenation] = STATE(397), [sym_string] = STATE(391), [sym_simple_expansion] = STATE(391), [sym_expansion] = STATE(391), [sym_command_substitution] = STATE(391), [sym_process_substitution] = STATE(391), - [aux_sym_for_statement_repeat1] = STATE(677), - [anon_sym_RPAREN] = ACTIONS(2390), + [aux_sym_for_statement_repeat1] = STATE(678), + [anon_sym_RPAREN] = ACTIONS(2416), [anon_sym_DQUOTE] = ACTIONS(716), [sym_raw_string] = ACTIONS(718), [anon_sym_DOLLAR] = ACTIONS(720), @@ -23277,308 +23486,348 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(730), [sym_comment] = ACTIONS(52), }, - [919] = { - [sym__concat] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(1599), - [sym_comment] = ACTIONS(52), - }, - [920] = { - [anon_sym_AT] = ACTIONS(2392), - [sym_comment] = ACTIONS(52), - }, - [921] = { - [sym__concat] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_RBRACK] = ACTIONS(1605), - [sym_comment] = ACTIONS(52), - }, - [922] = { - [anon_sym_AT] = ACTIONS(2394), - [sym_comment] = ACTIONS(52), - }, - [923] = { - [anon_sym_RBRACK] = ACTIONS(2396), - [sym_comment] = ACTIONS(52), - }, - [924] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2398), - [sym_comment] = ACTIONS(52), - }, - [925] = { - [anon_sym_RBRACE] = ACTIONS(2398), - [sym_comment] = ACTIONS(52), - }, [926] = { - [anon_sym_RBRACK] = ACTIONS(2400), + [sym__concat] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_RBRACK] = ACTIONS(1611), [sym_comment] = ACTIONS(52), }, [927] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_AT] = ACTIONS(2418), [sym_comment] = ACTIONS(52), }, [928] = { - [anon_sym_RBRACE] = ACTIONS(2402), + [sym__concat] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1617), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_RBRACK] = ACTIONS(1617), [sym_comment] = ACTIONS(52), }, [929] = { + [anon_sym_AT] = ACTIONS(2420), + [sym_comment] = ACTIONS(52), + }, + [930] = { + [anon_sym_RBRACK] = ACTIONS(2422), + [sym_comment] = ACTIONS(52), + }, + [931] = { + [sym__concat] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_RBRACK] = ACTIONS(1625), + [sym_comment] = ACTIONS(52), + }, + [932] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2424), + [sym_comment] = ACTIONS(52), + }, + [933] = { + [anon_sym_RBRACE] = ACTIONS(2424), + [sym_comment] = ACTIONS(52), + }, + [934] = { + [anon_sym_RBRACK] = ACTIONS(2426), + [sym_comment] = ACTIONS(52), + }, + [935] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2428), + [sym_comment] = ACTIONS(52), + }, + [936] = { + [anon_sym_RBRACE] = ACTIONS(2428), + [sym_comment] = ACTIONS(52), + }, + [937] = { [sym__concat] = ACTIONS(1000), [anon_sym_RPAREN] = ACTIONS(1000), [anon_sym_DQUOTE] = ACTIONS(1000), [sym_raw_string] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1502), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), [anon_sym_BQUOTE] = ACTIONS(1000), [anon_sym_LT_LPAREN] = ACTIONS(1000), [anon_sym_GT_LPAREN] = ACTIONS(1000), - [sym_word] = ACTIONS(1498), + [sym_word] = ACTIONS(1502), [sym_comment] = ACTIONS(52), }, - [930] = { + [938] = { [sym__concat] = ACTIONS(1021), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), [anon_sym_LT_LPAREN] = ACTIONS(1021), [anon_sym_GT_LPAREN] = ACTIONS(1021), - [sym_word] = ACTIONS(1500), + [sym_word] = ACTIONS(1504), [sym_comment] = ACTIONS(52), }, - [931] = { - [aux_sym_concatenation_repeat1] = STATE(931), - [sym__concat] = ACTIONS(2404), + [939] = { + [aux_sym_concatenation_repeat1] = STATE(939), + [sym__concat] = ACTIONS(2430), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), [anon_sym_LT_LPAREN] = ACTIONS(1021), [anon_sym_GT_LPAREN] = ACTIONS(1021), - [sym_word] = ACTIONS(1500), + [sym_word] = ACTIONS(1504), [sym_comment] = ACTIONS(52), }, - [932] = { - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2409), + [940] = { + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2435), [sym_comment] = ACTIONS(52), }, - [933] = { - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2413), + [941] = { + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2439), [sym_comment] = ACTIONS(52), }, - [934] = { + [942] = { [sym__concat] = ACTIONS(1036), [anon_sym_RPAREN] = ACTIONS(1036), [anon_sym_DQUOTE] = ACTIONS(1036), [sym_raw_string] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1517), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), [anon_sym_BQUOTE] = ACTIONS(1036), [anon_sym_LT_LPAREN] = ACTIONS(1036), [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_word] = ACTIONS(1513), + [sym_word] = ACTIONS(1517), [sym_comment] = ACTIONS(52), }, - [935] = { - [anon_sym_AT] = ACTIONS(2415), - [sym_comment] = ACTIONS(52), - }, - [936] = { - [sym_concatenation] = STATE(1131), - [sym_string] = STATE(1130), - [sym_simple_expansion] = STATE(1130), - [sym_expansion] = STATE(1130), - [sym_command_substitution] = STATE(1130), - [sym_process_substitution] = STATE(1130), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2419), - [sym_comment] = ACTIONS(52), - }, - [937] = { - [sym__concat] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1046), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1046), - [anon_sym_GT_LPAREN] = ACTIONS(1046), - [sym_word] = ACTIONS(1521), - [sym_comment] = ACTIONS(52), - }, - [938] = { - [anon_sym_AT] = ACTIONS(2421), - [sym_comment] = ACTIONS(52), - }, - [939] = { - [sym_concatenation] = STATE(1134), - [sym_string] = STATE(1133), - [sym_simple_expansion] = STATE(1133), - [sym_expansion] = STATE(1133), - [sym_command_substitution] = STATE(1133), - [sym_process_substitution] = STATE(1133), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2425), - [sym_comment] = ACTIONS(52), - }, - [940] = { - [sym__concat] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_raw_string] = ACTIONS(1136), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), - [anon_sym_LT_LPAREN] = ACTIONS(1136), - [anon_sym_GT_LPAREN] = ACTIONS(1136), - [sym_word] = ACTIONS(1529), - [sym_comment] = ACTIONS(52), - }, - [941] = { - [sym__concat] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_word] = ACTIONS(1531), - [sym_comment] = ACTIONS(52), - }, - [942] = { - [sym_file_descriptor] = ACTIONS(1599), - [sym__concat] = ACTIONS(1599), - [sym_variable_name] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_SEMI_SEMI] = ACTIONS(1601), - [anon_sym_PIPE_AMP] = ACTIONS(1601), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_PIPE_PIPE] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_GT] = ACTIONS(1601), - [anon_sym_GT_GT] = ACTIONS(1601), - [anon_sym_AMP_GT] = ACTIONS(1601), - [anon_sym_AMP_GT_GT] = ACTIONS(1601), - [anon_sym_LT_AMP] = ACTIONS(1601), - [anon_sym_GT_AMP] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [sym_raw_string] = ACTIONS(1601), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1601), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [anon_sym_LT_LPAREN] = ACTIONS(1601), - [anon_sym_GT_LPAREN] = ACTIONS(1601), - [sym_word] = ACTIONS(1601), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_LF] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1601), - }, [943] = { - [anon_sym_AT] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(2441), [sym_comment] = ACTIONS(52), }, [944] = { - [sym_file_descriptor] = ACTIONS(1605), - [sym__concat] = ACTIONS(1605), - [sym_variable_name] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_SEMI_SEMI] = ACTIONS(1607), - [anon_sym_PIPE_AMP] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_PIPE_PIPE] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_GT] = ACTIONS(1607), - [anon_sym_AMP_GT] = ACTIONS(1607), - [anon_sym_AMP_GT_GT] = ACTIONS(1607), - [anon_sym_LT_AMP] = ACTIONS(1607), - [anon_sym_GT_AMP] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_raw_string] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1607), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1607), - [anon_sym_BQUOTE] = ACTIONS(1607), - [anon_sym_LT_LPAREN] = ACTIONS(1607), - [anon_sym_GT_LPAREN] = ACTIONS(1607), - [sym_word] = ACTIONS(1607), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_LF] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), + [sym_concatenation] = STATE(1142), + [sym_string] = STATE(1141), + [sym_simple_expansion] = STATE(1141), + [sym_expansion] = STATE(1141), + [sym_command_substitution] = STATE(1141), + [sym_process_substitution] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2445), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2447), + [sym_comment] = ACTIONS(52), }, [945] = { - [anon_sym_AT] = ACTIONS(2429), + [sym__concat] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_LT_LPAREN] = ACTIONS(1048), + [anon_sym_GT_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1527), [sym_comment] = ACTIONS(52), }, [946] = { - [anon_sym_RBRACK] = ACTIONS(2431), + [anon_sym_AT] = ACTIONS(2449), [sym_comment] = ACTIONS(52), }, [947] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2433), + [sym_concatenation] = STATE(1145), + [sym_string] = STATE(1144), + [sym_simple_expansion] = STATE(1144), + [sym_expansion] = STATE(1144), + [sym_command_substitution] = STATE(1144), + [sym_process_substitution] = STATE(1144), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2451), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2453), [sym_comment] = ACTIONS(52), }, [948] = { - [anon_sym_RBRACE] = ACTIONS(2433), + [sym__concat] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_raw_string] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [anon_sym_LT_LPAREN] = ACTIONS(1138), + [anon_sym_GT_LPAREN] = ACTIONS(1138), + [sym_word] = ACTIONS(1535), [sym_comment] = ACTIONS(52), }, [949] = { - [anon_sym_RBRACK] = ACTIONS(2435), + [sym__concat] = ACTIONS(1194), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1194), + [sym_raw_string] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(1194), + [anon_sym_GT_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(1537), [sym_comment] = ACTIONS(52), }, [950] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2437), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1611), + [sym__concat] = ACTIONS(1611), + [sym_variable_name] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(1613), + [anon_sym_SEMI_SEMI] = ACTIONS(1613), + [anon_sym_PIPE_AMP] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1613), + [anon_sym_PIPE_PIPE] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(1613), + [anon_sym_GT] = ACTIONS(1613), + [anon_sym_GT_GT] = ACTIONS(1613), + [anon_sym_AMP_GT] = ACTIONS(1613), + [anon_sym_AMP_GT_GT] = ACTIONS(1613), + [anon_sym_LT_AMP] = ACTIONS(1613), + [anon_sym_GT_AMP] = ACTIONS(1613), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_raw_string] = ACTIONS(1613), + [anon_sym_DOLLAR] = ACTIONS(1613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1613), + [anon_sym_BQUOTE] = ACTIONS(1613), + [anon_sym_LT_LPAREN] = ACTIONS(1613), + [anon_sym_GT_LPAREN] = ACTIONS(1613), + [sym_word] = ACTIONS(1613), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1613), }, [951] = { - [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_AT] = ACTIONS(2455), [sym_comment] = ACTIONS(52), }, [952] = { + [sym_file_descriptor] = ACTIONS(1617), + [sym__concat] = ACTIONS(1617), + [sym_variable_name] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_SEMI_SEMI] = ACTIONS(1619), + [anon_sym_PIPE_AMP] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_GT_GT] = ACTIONS(1619), + [anon_sym_AMP_GT] = ACTIONS(1619), + [anon_sym_AMP_GT_GT] = ACTIONS(1619), + [anon_sym_LT_AMP] = ACTIONS(1619), + [anon_sym_GT_AMP] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym_raw_string] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [anon_sym_LT_LPAREN] = ACTIONS(1619), + [anon_sym_GT_LPAREN] = ACTIONS(1619), + [sym_word] = ACTIONS(1619), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + }, + [953] = { + [anon_sym_AT] = ACTIONS(2457), + [sym_comment] = ACTIONS(52), + }, + [954] = { + [anon_sym_RBRACK] = ACTIONS(2459), + [sym_comment] = ACTIONS(52), + }, + [955] = { + [sym_file_descriptor] = ACTIONS(1625), + [sym__concat] = ACTIONS(1625), + [sym_variable_name] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1627), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_SEMI_SEMI] = ACTIONS(1627), + [anon_sym_PIPE_AMP] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_GT_GT] = ACTIONS(1627), + [anon_sym_AMP_GT] = ACTIONS(1627), + [anon_sym_AMP_GT_GT] = ACTIONS(1627), + [anon_sym_LT_AMP] = ACTIONS(1627), + [anon_sym_GT_AMP] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_raw_string] = ACTIONS(1627), + [anon_sym_DOLLAR] = ACTIONS(1627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [anon_sym_LT_LPAREN] = ACTIONS(1627), + [anon_sym_GT_LPAREN] = ACTIONS(1627), + [sym_word] = ACTIONS(1627), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + }, + [956] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2461), + [sym_comment] = ACTIONS(52), + }, + [957] = { + [anon_sym_RBRACE] = ACTIONS(2461), + [sym_comment] = ACTIONS(52), + }, + [958] = { + [anon_sym_RBRACK] = ACTIONS(2463), + [sym_comment] = ACTIONS(52), + }, + [959] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2465), + [sym_comment] = ACTIONS(52), + }, + [960] = { + [anon_sym_RBRACE] = ACTIONS(2465), + [sym_comment] = ACTIONS(52), + }, + [961] = { [sym__concat] = ACTIONS(1000), [anon_sym_SEMI_SEMI] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(1002), @@ -23595,7 +23844,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1002), [anon_sym_AMP] = ACTIONS(1002), }, - [953] = { + [962] = { [sym__concat] = ACTIONS(1021), [anon_sym_SEMI_SEMI] = ACTIONS(1023), [anon_sym_DQUOTE] = ACTIONS(1023), @@ -23612,9 +23861,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [954] = { - [aux_sym_concatenation_repeat1] = STATE(954), - [sym__concat] = ACTIONS(2439), + [963] = { + [aux_sym_concatenation_repeat1] = STATE(963), + [sym__concat] = ACTIONS(2467), [anon_sym_SEMI_SEMI] = ACTIONS(1023), [anon_sym_DQUOTE] = ACTIONS(1023), [sym_raw_string] = ACTIONS(1023), @@ -23630,17 +23879,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [955] = { - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2444), + [964] = { + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), [sym_comment] = ACTIONS(52), }, - [956] = { - [anon_sym_RBRACE] = ACTIONS(2446), - [anon_sym_LBRACK] = ACTIONS(2448), + [965] = { + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2476), [sym_comment] = ACTIONS(52), }, - [957] = { + [966] = { [sym__concat] = ACTIONS(1036), [anon_sym_SEMI_SEMI] = ACTIONS(1038), [anon_sym_DQUOTE] = ACTIONS(1038), @@ -23657,114 +23906,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1038), [anon_sym_AMP] = ACTIONS(1038), }, - [958] = { - [anon_sym_AT] = ACTIONS(2450), + [967] = { + [anon_sym_AT] = ACTIONS(2478), [sym_comment] = ACTIONS(52), }, - [959] = { - [sym_concatenation] = STATE(1147), - [sym_string] = STATE(1146), - [sym_simple_expansion] = STATE(1146), - [sym_expansion] = STATE(1146), - [sym_command_substitution] = STATE(1146), - [sym_process_substitution] = STATE(1146), + [968] = { + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(1158), + [sym_simple_expansion] = STATE(1158), + [sym_expansion] = STATE(1158), + [sym_command_substitution] = STATE(1158), + [sym_process_substitution] = STATE(1158), + [anon_sym_RBRACE] = ACTIONS(2480), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2452), + [sym_raw_string] = ACTIONS(2482), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2454), + [sym_word] = ACTIONS(2484), [sym_comment] = ACTIONS(52), }, - [960] = { - [sym__concat] = ACTIONS(1046), - [anon_sym_SEMI_SEMI] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym_raw_string] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), - [anon_sym_BQUOTE] = ACTIONS(1048), - [anon_sym_LT_LPAREN] = ACTIONS(1048), - [anon_sym_GT_LPAREN] = ACTIONS(1048), - [sym_word] = ACTIONS(1048), + [969] = { + [sym__concat] = ACTIONS(1048), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [sym_word] = ACTIONS(1050), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_LF] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), }, - [961] = { - [anon_sym_AT] = ACTIONS(2456), + [970] = { + [anon_sym_AT] = ACTIONS(2486), [sym_comment] = ACTIONS(52), }, - [962] = { - [sym_concatenation] = STATE(1150), - [sym_string] = STATE(1149), - [sym_simple_expansion] = STATE(1149), - [sym_expansion] = STATE(1149), - [sym_command_substitution] = STATE(1149), - [sym_process_substitution] = STATE(1149), + [971] = { + [sym_concatenation] = STATE(1162), + [sym_string] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [anon_sym_RBRACE] = ACTIONS(2474), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2458), + [sym_raw_string] = ACTIONS(2488), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2460), + [sym_word] = ACTIONS(2490), [sym_comment] = ACTIONS(52), }, - [963] = { - [sym__concat] = ACTIONS(1136), - [anon_sym_SEMI_SEMI] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_raw_string] = ACTIONS(1138), - [anon_sym_DOLLAR] = ACTIONS(1138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), - [anon_sym_BQUOTE] = ACTIONS(1138), - [anon_sym_LT_LPAREN] = ACTIONS(1138), - [anon_sym_GT_LPAREN] = ACTIONS(1138), - [sym_word] = ACTIONS(1138), + [972] = { + [sym__concat] = ACTIONS(1138), + [anon_sym_SEMI_SEMI] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [sym_raw_string] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1140), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1140), + [anon_sym_BQUOTE] = ACTIONS(1140), + [anon_sym_LT_LPAREN] = ACTIONS(1140), + [anon_sym_GT_LPAREN] = ACTIONS(1140), + [sym_word] = ACTIONS(1140), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LF] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_LF] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), }, - [964] = { - [sym__concat] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym_raw_string] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1194), - [anon_sym_BQUOTE] = ACTIONS(1194), - [anon_sym_LT_LPAREN] = ACTIONS(1194), - [anon_sym_GT_LPAREN] = ACTIONS(1194), - [sym_word] = ACTIONS(1194), + [973] = { + [sym__concat] = ACTIONS(1194), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_word] = ACTIONS(1196), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_LF] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), }, - [965] = { - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_RPAREN] = ACTIONS(2462), - [anon_sym_SEMI_SEMI] = ACTIONS(2462), - [anon_sym_PIPE_AMP] = ACTIONS(2462), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [974] = { + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_SEMI_SEMI] = ACTIONS(2492), + [anon_sym_PIPE_AMP] = ACTIONS(2492), + [anon_sym_AMP_AMP] = ACTIONS(2492), + [anon_sym_PIPE_PIPE] = ACTIONS(2492), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_LF] = ACTIONS(2462), - [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_LF] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), }, - [966] = { + [975] = { [sym__terminated_statement] = STATE(432), [sym_for_statement] = STATE(433), [sym_while_statement] = STATE(433), @@ -23786,16 +24037,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(1151), + [aux_sym_program_repeat1] = STATE(1163), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2464), - [anon_sym_elif] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), + [anon_sym_fi] = ACTIONS(2494), + [anon_sym_elif] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -23819,7 +24070,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [967] = { + [976] = { [sym_file_descriptor] = ACTIONS(574), [sym_variable_name] = ACTIONS(574), [anon_sym_for] = ACTIONS(576), @@ -23849,20 +24100,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(578), [sym_comment] = ACTIONS(52), }, - [968] = { - [sym__terminated_statement] = STATE(713), - [sym_for_statement] = STATE(714), - [sym_while_statement] = STATE(714), - [sym_if_statement] = STATE(714), - [sym_case_statement] = STATE(714), - [sym_function_definition] = STATE(714), - [sym_subshell] = STATE(714), - [sym_pipeline] = STATE(714), - [sym_list] = STATE(714), - [sym_bracket_command] = STATE(714), - [sym_command] = STATE(714), + [977] = { + [sym__terminated_statement] = STATE(714), + [sym_for_statement] = STATE(715), + [sym_while_statement] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_case_statement] = STATE(715), + [sym_function_definition] = STATE(715), + [sym_subshell] = STATE(715), + [sym_pipeline] = STATE(715), + [sym_list] = STATE(715), + [sym_bracket_command] = STATE(715), + [sym_command] = STATE(715), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(715), + [sym_environment_variable_assignment] = STATE(716), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -23871,14 +24122,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(968), + [aux_sym_program_repeat1] = STATE(977), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(610), [sym_variable_name] = ACTIONS(613), [anon_sym_for] = ACTIONS(618), [anon_sym_while] = ACTIONS(621), [anon_sym_if] = ACTIONS(624), - [anon_sym_fi] = ACTIONS(2053), + [anon_sym_fi] = ACTIONS(2075), [anon_sym_case] = ACTIONS(627), [anon_sym_function] = ACTIONS(630), [anon_sym_LPAREN] = ACTIONS(633), @@ -23902,41 +24153,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(669), [sym_comment] = ACTIONS(52), }, - [969] = { - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_RPAREN] = ACTIONS(2466), - [anon_sym_SEMI_SEMI] = ACTIONS(2466), - [anon_sym_PIPE_AMP] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2466), - [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [978] = { + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_RPAREN] = ACTIONS(2496), + [anon_sym_SEMI_SEMI] = ACTIONS(2496), + [anon_sym_PIPE_AMP] = ACTIONS(2496), + [anon_sym_AMP_AMP] = ACTIONS(2496), + [anon_sym_PIPE_PIPE] = ACTIONS(2496), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_LF] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_LF] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), }, - [970] = { - [anon_sym_fi] = ACTIONS(2468), + [979] = { + [anon_sym_fi] = ACTIONS(2498), [sym_comment] = ACTIONS(52), }, - [971] = { - [sym_concatenation] = STATE(1154), - [sym_string] = STATE(1153), - [sym_simple_expansion] = STATE(1153), - [sym_expansion] = STATE(1153), - [sym_command_substitution] = STATE(1153), - [sym_process_substitution] = STATE(1153), + [980] = { + [sym_concatenation] = STATE(1166), + [sym_string] = STATE(1165), + [sym_simple_expansion] = STATE(1165), + [sym_expansion] = STATE(1165), + [sym_command_substitution] = STATE(1165), + [sym_process_substitution] = STATE(1165), [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(2470), + [sym_raw_string] = ACTIONS(2500), [anon_sym_DOLLAR] = ACTIONS(274), [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), [anon_sym_BQUOTE] = ACTIONS(280), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(2472), + [sym_word] = ACTIONS(2502), [sym_comment] = ACTIONS(52), }, - [972] = { + [981] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -23958,7 +24209,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(1156), + [aux_sym_program_repeat1] = STATE(1168), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -23966,7 +24217,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), + [anon_sym_SEMI_SEMI] = ACTIONS(2504), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -23989,123 +24240,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [973] = { - [aux_sym_case_item_repeat1] = STATE(1158), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2476), + [982] = { + [aux_sym_case_item_repeat1] = STATE(1170), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(2506), [sym_comment] = ACTIONS(52), }, - [974] = { - [aux_sym_concatenation_repeat1] = STATE(1159), + [983] = { + [aux_sym_concatenation_repeat1] = STATE(1171), [sym__concat] = ACTIONS(696), [anon_sym_PIPE] = ACTIONS(440), [anon_sym_RPAREN] = ACTIONS(440), [sym_comment] = ACTIONS(52), }, - [975] = { - [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), + [984] = { + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_RPAREN] = ACTIONS(2508), + [anon_sym_SEMI_SEMI] = ACTIONS(2508), + [anon_sym_PIPE_AMP] = ACTIONS(2508), + [anon_sym_AMP_AMP] = ACTIONS(2508), + [anon_sym_PIPE_PIPE] = ACTIONS(2508), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_LF] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2508), + [anon_sym_LF] = ACTIONS(2508), + [anon_sym_AMP] = ACTIONS(2508), }, - [976] = { - [sym_case_item] = STATE(725), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), - [aux_sym_case_statement_repeat1] = STATE(976), - [anon_sym_esac] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2482), - [sym_raw_string] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2488), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2491), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2494), - [anon_sym_BQUOTE] = ACTIONS(2497), - [anon_sym_LT_LPAREN] = ACTIONS(2500), - [anon_sym_GT_LPAREN] = ACTIONS(2500), - [sym_word] = ACTIONS(2503), + [985] = { + [sym_case_item] = STATE(726), + [sym_concatenation] = STATE(727), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [aux_sym_case_statement_repeat1] = STATE(985), + [anon_sym_esac] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [sym_raw_string] = ACTIONS(2515), + [anon_sym_DOLLAR] = ACTIONS(2518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2521), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2524), + [anon_sym_BQUOTE] = ACTIONS(2527), + [anon_sym_LT_LPAREN] = ACTIONS(2530), + [anon_sym_GT_LPAREN] = ACTIONS(2530), + [sym_word] = ACTIONS(2533), [sym_comment] = ACTIONS(52), }, - [977] = { - [sym_case_item] = STATE(725), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), - [aux_sym_case_statement_repeat1] = STATE(976), - [anon_sym_esac] = ACTIONS(2506), + [986] = { + [sym_case_item] = STATE(726), + [sym_concatenation] = STATE(727), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [aux_sym_case_statement_repeat1] = STATE(985), + [anon_sym_esac] = ACTIONS(2536), [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(1440), + [sym_raw_string] = ACTIONS(1442), [anon_sym_DOLLAR] = ACTIONS(274), [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), [anon_sym_BQUOTE] = ACTIONS(280), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(1442), + [sym_word] = ACTIONS(1444), [sym_comment] = ACTIONS(52), }, - [978] = { - [anon_sym_RBRACK] = ACTIONS(2508), + [987] = { + [anon_sym_RBRACK] = ACTIONS(2538), [sym_comment] = ACTIONS(52), }, - [979] = { - [anon_sym_RBRACK] = ACTIONS(2510), + [988] = { + [anon_sym_RBRACK] = ACTIONS(2540), [sym_comment] = ACTIONS(52), }, - [980] = { - [anon_sym_RBRACE] = ACTIONS(2512), + [989] = { + [anon_sym_RBRACE] = ACTIONS(2542), [sym_comment] = ACTIONS(52), }, - [981] = { - [sym__concat] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2164), - [anon_sym_SEMI_SEMI] = ACTIONS(2164), + [990] = { + [sym__concat] = ACTIONS(2186), + [anon_sym_in] = ACTIONS(2188), + [anon_sym_SEMI_SEMI] = ACTIONS(2188), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), }, - [982] = { - [anon_sym_RBRACE] = ACTIONS(2514), + [991] = { + [anon_sym_RBRACE] = ACTIONS(2544), [sym_comment] = ACTIONS(52), }, - [983] = { - [sym__concat] = ACTIONS(2168), - [anon_sym_in] = ACTIONS(2170), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), + [992] = { + [sym__concat] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2194), + [anon_sym_SEMI_SEMI] = ACTIONS(2194), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), }, - [984] = { - [anon_sym_PIPE] = ACTIONS(2516), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_SEMI_SEMI] = ACTIONS(2516), - [anon_sym_PIPE_AMP] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [993] = { + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_SEMI_SEMI] = ACTIONS(2546), + [anon_sym_PIPE_AMP] = ACTIONS(2546), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_LF] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_LF] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), }, - [985] = { - [aux_sym_concatenation_repeat1] = STATE(985), + [994] = { + [aux_sym_concatenation_repeat1] = STATE(994), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(1979), + [sym__concat] = ACTIONS(1999), [sym_variable_name] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(1023), [anon_sym_RPAREN] = ACTIONS(1023), @@ -24134,15 +24385,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [986] = { - [sym_file_redirect] = STATE(984), + [995] = { + [sym_file_redirect] = STATE(993), [sym_file_descriptor] = ACTIONS(816), - [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_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_SEMI_SEMI] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_PIPE_PIPE] = ACTIONS(2118), [anon_sym_LT] = ACTIONS(818), [anon_sym_GT] = ACTIONS(818), [anon_sym_GT_GT] = ACTIONS(818), @@ -24151,27 +24402,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(818), [anon_sym_GT_AMP] = ACTIONS(818), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LF] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_LF] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), }, - [987] = { - [aux_sym_concatenation_repeat1] = STATE(988), - [sym__concat] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), + [996] = { + [aux_sym_concatenation_repeat1] = STATE(997), + [sym__concat] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_SEMI_SEMI] = ACTIONS(1864), + [anon_sym_PIPE_AMP] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), }, - [988] = { - [aux_sym_concatenation_repeat1] = STATE(1165), - [sym__concat] = ACTIONS(1834), + [997] = { + [aux_sym_concatenation_repeat1] = STATE(1177), + [sym__concat] = ACTIONS(1852), [anon_sym_PIPE] = ACTIONS(442), [anon_sym_RPAREN] = ACTIONS(442), [anon_sym_SEMI_SEMI] = ACTIONS(442), @@ -24183,10 +24434,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(442), [anon_sym_AMP] = ACTIONS(442), }, - [989] = { - [aux_sym_concatenation_repeat1] = STATE(989), + [998] = { + [aux_sym_concatenation_repeat1] = STATE(998), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(2334), + [sym__concat] = ACTIONS(2358), [anon_sym_PIPE] = ACTIONS(1023), [anon_sym_RPAREN] = ACTIONS(1023), [anon_sym_SEMI_SEMI] = ACTIONS(1023), @@ -24207,313 +24458,313 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [990] = { - [anon_sym_RBRACK] = ACTIONS(2518), - [sym_comment] = ACTIONS(52), - }, - [991] = { - [anon_sym_RBRACK] = ACTIONS(2520), - [sym_comment] = ACTIONS(52), - }, - [992] = { - [anon_sym_RBRACE] = ACTIONS(2522), - [sym_comment] = ACTIONS(52), - }, - [993] = { - [sym__concat] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_RBRACK] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2162), - [sym_raw_string] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(2524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2162), - [anon_sym_BQUOTE] = ACTIONS(2162), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_word] = ACTIONS(2164), - [sym_comment] = ACTIONS(52), - }, - [994] = { - [anon_sym_RBRACE] = ACTIONS(2526), - [sym_comment] = ACTIONS(52), - }, - [995] = { - [sym__concat] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2168), - [sym_raw_string] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_LT_LPAREN] = ACTIONS(2168), - [anon_sym_GT_LPAREN] = ACTIONS(2168), - [sym_word] = ACTIONS(2170), - [sym_comment] = ACTIONS(52), - }, - [996] = { - [anon_sym_RBRACK] = ACTIONS(2530), - [sym_comment] = ACTIONS(52), - }, - [997] = { - [anon_sym_RBRACK] = ACTIONS(2532), - [sym_comment] = ACTIONS(52), - }, - [998] = { - [anon_sym_RBRACE] = ACTIONS(2534), - [sym_comment] = ACTIONS(52), - }, [999] = { - [sym__concat] = ACTIONS(2162), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2162), - [sym_raw_string] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(2524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2162), - [anon_sym_BQUOTE] = ACTIONS(2162), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_word] = ACTIONS(2164), - [sym_comment] = ACTIONS(52), - }, - [1000] = { - [anon_sym_RBRACE] = ACTIONS(2536), - [sym_comment] = ACTIONS(52), - }, - [1001] = { - [sym__concat] = ACTIONS(2168), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2168), - [sym_raw_string] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_LT_LPAREN] = ACTIONS(2168), - [anon_sym_GT_LPAREN] = ACTIONS(2168), - [sym_word] = ACTIONS(2170), - [sym_comment] = ACTIONS(52), - }, - [1002] = { - [anon_sym_RBRACK] = ACTIONS(2538), - [sym_comment] = ACTIONS(52), - }, - [1003] = { - [anon_sym_RBRACK] = ACTIONS(2540), - [sym_comment] = ACTIONS(52), - }, - [1004] = { - [anon_sym_RBRACE] = ACTIONS(2542), - [sym_comment] = ACTIONS(52), - }, - [1005] = { - [sym_file_descriptor] = ACTIONS(2162), - [sym__concat] = ACTIONS(2162), - [sym_variable_name] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_GT] = ACTIONS(2524), - [anon_sym_AMP_GT_GT] = ACTIONS(2162), - [anon_sym_LT_AMP] = ACTIONS(2162), - [anon_sym_GT_AMP] = ACTIONS(2162), - [anon_sym_DQUOTE] = ACTIONS(2162), - [sym_raw_string] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(2524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2162), - [anon_sym_BQUOTE] = ACTIONS(2162), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_word] = ACTIONS(2524), - [sym_comment] = ACTIONS(52), - }, - [1006] = { - [anon_sym_RBRACE] = ACTIONS(2544), - [sym_comment] = ACTIONS(52), - }, - [1007] = { - [sym_file_descriptor] = ACTIONS(2168), - [sym__concat] = ACTIONS(2168), - [sym_variable_name] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2168), - [anon_sym_AMP_GT] = ACTIONS(2528), - [anon_sym_AMP_GT_GT] = ACTIONS(2168), - [anon_sym_LT_AMP] = ACTIONS(2168), - [anon_sym_GT_AMP] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [sym_raw_string] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_LT_LPAREN] = ACTIONS(2168), - [anon_sym_GT_LPAREN] = ACTIONS(2168), - [sym_word] = ACTIONS(2528), - [sym_comment] = ACTIONS(52), - }, - [1008] = { - [anon_sym_RBRACK] = ACTIONS(2546), - [sym_comment] = ACTIONS(52), - }, - [1009] = { [anon_sym_RBRACK] = ACTIONS(2548), [sym_comment] = ACTIONS(52), }, - [1010] = { - [anon_sym_RBRACE] = ACTIONS(2550), + [1000] = { + [anon_sym_RBRACK] = ACTIONS(2550), [sym_comment] = ACTIONS(52), }, - [1011] = { - [anon_sym_DQUOTE] = ACTIONS(2164), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2524), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2164), - [anon_sym_BQUOTE] = ACTIONS(2164), - [sym_comment] = ACTIONS(150), - }, - [1012] = { + [1001] = { [anon_sym_RBRACE] = ACTIONS(2552), [sym_comment] = ACTIONS(52), }, - [1013] = { - [anon_sym_DQUOTE] = ACTIONS(2170), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2528), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2170), - [anon_sym_BQUOTE] = ACTIONS(2170), - [sym_comment] = ACTIONS(150), - }, - [1014] = { - [anon_sym_RBRACE] = ACTIONS(2554), + [1002] = { + [sym__concat] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_RBRACK] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2186), + [anon_sym_BQUOTE] = ACTIONS(2186), + [anon_sym_LT_LPAREN] = ACTIONS(2186), + [anon_sym_GT_LPAREN] = ACTIONS(2186), + [sym_word] = ACTIONS(2188), [sym_comment] = ACTIONS(52), }, - [1015] = { + [1003] = { [anon_sym_RBRACE] = ACTIONS(2556), [sym_comment] = ACTIONS(52), }, + [1004] = { + [sym__concat] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_RBRACK] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), + [sym_word] = ACTIONS(2194), + [sym_comment] = ACTIONS(52), + }, + [1005] = { + [anon_sym_RBRACK] = ACTIONS(2560), + [sym_comment] = ACTIONS(52), + }, + [1006] = { + [anon_sym_RBRACK] = ACTIONS(2562), + [sym_comment] = ACTIONS(52), + }, + [1007] = { + [anon_sym_RBRACE] = ACTIONS(2564), + [sym_comment] = ACTIONS(52), + }, + [1008] = { + [sym__concat] = ACTIONS(2186), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2186), + [anon_sym_BQUOTE] = ACTIONS(2186), + [anon_sym_LT_LPAREN] = ACTIONS(2186), + [anon_sym_GT_LPAREN] = ACTIONS(2186), + [sym_word] = ACTIONS(2188), + [sym_comment] = ACTIONS(52), + }, + [1009] = { + [anon_sym_RBRACE] = ACTIONS(2566), + [sym_comment] = ACTIONS(52), + }, + [1010] = { + [sym__concat] = ACTIONS(2192), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), + [sym_word] = ACTIONS(2194), + [sym_comment] = ACTIONS(52), + }, + [1011] = { + [anon_sym_RBRACK] = ACTIONS(2568), + [sym_comment] = ACTIONS(52), + }, + [1012] = { + [anon_sym_RBRACK] = ACTIONS(2570), + [sym_comment] = ACTIONS(52), + }, + [1013] = { + [anon_sym_RBRACE] = ACTIONS(2572), + [sym_comment] = ACTIONS(52), + }, + [1014] = { + [sym_file_descriptor] = ACTIONS(2186), + [sym__concat] = ACTIONS(2186), + [sym_variable_name] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2554), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2186), + [anon_sym_BQUOTE] = ACTIONS(2186), + [anon_sym_LT_LPAREN] = ACTIONS(2186), + [anon_sym_GT_LPAREN] = ACTIONS(2186), + [sym_word] = ACTIONS(2554), + [sym_comment] = ACTIONS(52), + }, + [1015] = { + [anon_sym_RBRACE] = ACTIONS(2574), + [sym_comment] = ACTIONS(52), + }, [1016] = { - [sym_file_descriptor] = ACTIONS(2558), - [sym__concat] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_SEMI_SEMI] = ACTIONS(2560), - [anon_sym_PIPE_AMP] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2560), - [anon_sym_AMP_GT] = ACTIONS(2560), - [anon_sym_AMP_GT_GT] = ACTIONS(2560), - [anon_sym_LT_AMP] = ACTIONS(2560), - [anon_sym_GT_AMP] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_LT_LT_DASH] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [sym_raw_string] = ACTIONS(2560), - [anon_sym_DOLLAR] = ACTIONS(2560), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2560), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2560), - [anon_sym_BQUOTE] = ACTIONS(2560), - [anon_sym_LT_LPAREN] = ACTIONS(2560), - [anon_sym_GT_LPAREN] = ACTIONS(2560), - [sym_word] = ACTIONS(2560), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LF] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2560), + [sym_file_descriptor] = ACTIONS(2192), + [sym__concat] = ACTIONS(2192), + [sym_variable_name] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2558), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), + [sym_word] = ACTIONS(2558), + [sym_comment] = ACTIONS(52), }, [1017] = { - [aux_sym_concatenation_repeat1] = STATE(1017), - [sym__concat] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_RBRACK] = ACTIONS(2576), [sym_comment] = ACTIONS(52), }, [1018] = { - [sym_file_descriptor] = ACTIONS(2562), - [sym__concat] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2564), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_SEMI_SEMI] = ACTIONS(2564), - [anon_sym_PIPE_AMP] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2564), - [anon_sym_AMP_GT] = ACTIONS(2564), - [anon_sym_AMP_GT_GT] = ACTIONS(2564), - [anon_sym_LT_AMP] = ACTIONS(2564), - [anon_sym_GT_AMP] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2564), - [anon_sym_LT_LT_DASH] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [sym_raw_string] = ACTIONS(2564), - [anon_sym_DOLLAR] = ACTIONS(2564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), - [anon_sym_BQUOTE] = ACTIONS(2564), - [anon_sym_LT_LPAREN] = ACTIONS(2564), - [anon_sym_GT_LPAREN] = ACTIONS(2564), - [sym_word] = ACTIONS(2564), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_LF] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2564), + [anon_sym_RBRACK] = ACTIONS(2578), + [sym_comment] = ACTIONS(52), }, [1019] = { - [sym_file_descriptor] = ACTIONS(1951), - [sym_variable_name] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_PIPE_AMP] = ACTIONS(1951), - [anon_sym_AMP_AMP] = ACTIONS(1951), - [anon_sym_PIPE_PIPE] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_GT] = ACTIONS(2566), - [anon_sym_GT_GT] = ACTIONS(1951), - [anon_sym_AMP_GT] = ACTIONS(2566), - [anon_sym_AMP_GT_GT] = ACTIONS(1951), - [anon_sym_LT_AMP] = ACTIONS(1951), - [anon_sym_GT_AMP] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym_raw_string] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(2566), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1951), - [anon_sym_BQUOTE] = ACTIONS(1951), - [anon_sym_LT_LPAREN] = ACTIONS(1951), - [anon_sym_GT_LPAREN] = ACTIONS(1951), - [sym_word] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(2580), [sym_comment] = ACTIONS(52), }, [1020] = { + [anon_sym_DQUOTE] = ACTIONS(2188), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_comment] = ACTIONS(150), + }, + [1021] = { + [anon_sym_RBRACE] = ACTIONS(2582), + [sym_comment] = ACTIONS(52), + }, + [1022] = { + [anon_sym_DQUOTE] = ACTIONS(2194), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2558), + [anon_sym_DOLLAR] = ACTIONS(2194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [sym_comment] = ACTIONS(150), + }, + [1023] = { + [anon_sym_RBRACE] = ACTIONS(2584), + [sym_comment] = ACTIONS(52), + }, + [1024] = { + [anon_sym_RBRACE] = ACTIONS(2586), + [sym_comment] = ACTIONS(52), + }, + [1025] = { + [sym_file_descriptor] = ACTIONS(2588), + [sym__concat] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(2590), + [anon_sym_SEMI_SEMI] = ACTIONS(2590), + [anon_sym_PIPE_AMP] = ACTIONS(2590), + [anon_sym_AMP_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(2590), + [anon_sym_GT_GT] = ACTIONS(2590), + [anon_sym_AMP_GT] = ACTIONS(2590), + [anon_sym_AMP_GT_GT] = ACTIONS(2590), + [anon_sym_LT_AMP] = ACTIONS(2590), + [anon_sym_GT_AMP] = ACTIONS(2590), + [anon_sym_LT_LT] = ACTIONS(2590), + [anon_sym_LT_LT_DASH] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2590), + [sym_raw_string] = ACTIONS(2590), + [anon_sym_DOLLAR] = ACTIONS(2590), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2590), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2590), + [anon_sym_BQUOTE] = ACTIONS(2590), + [anon_sym_LT_LPAREN] = ACTIONS(2590), + [anon_sym_GT_LPAREN] = ACTIONS(2590), + [sym_word] = ACTIONS(2590), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_LF] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), + }, + [1026] = { + [aux_sym_concatenation_repeat1] = STATE(1026), + [sym__concat] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1021), + [sym_comment] = ACTIONS(52), + }, + [1027] = { + [sym_file_descriptor] = ACTIONS(2592), + [sym__concat] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_RPAREN] = ACTIONS(2594), + [anon_sym_SEMI_SEMI] = ACTIONS(2594), + [anon_sym_PIPE_AMP] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_GT] = ACTIONS(2594), + [anon_sym_AMP_GT] = ACTIONS(2594), + [anon_sym_AMP_GT_GT] = ACTIONS(2594), + [anon_sym_LT_AMP] = ACTIONS(2594), + [anon_sym_GT_AMP] = ACTIONS(2594), + [anon_sym_LT_LT] = ACTIONS(2594), + [anon_sym_LT_LT_DASH] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [sym_raw_string] = ACTIONS(2594), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2594), + [anon_sym_BQUOTE] = ACTIONS(2594), + [anon_sym_LT_LPAREN] = ACTIONS(2594), + [anon_sym_GT_LPAREN] = ACTIONS(2594), + [sym_word] = ACTIONS(2594), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_LF] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + }, + [1028] = { + [sym_file_descriptor] = ACTIONS(1971), + [sym_variable_name] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(2596), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(2596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [sym_word] = ACTIONS(1973), + [sym_comment] = ACTIONS(52), + }, + [1029] = { [sym_file_descriptor] = ACTIONS(1000), [sym__concat] = ACTIONS(1000), [sym_variable_name] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1502), [anon_sym_RPAREN] = ACTIONS(1000), [anon_sym_PIPE_AMP] = ACTIONS(1000), [anon_sym_AMP_AMP] = ACTIONS(1000), - [anon_sym_PIPE_PIPE] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1502), [anon_sym_GT_GT] = ACTIONS(1000), - [anon_sym_AMP_GT] = ACTIONS(1498), + [anon_sym_AMP_GT] = ACTIONS(1502), [anon_sym_AMP_GT_GT] = ACTIONS(1000), [anon_sym_LT_AMP] = ACTIONS(1000), [anon_sym_GT_AMP] = ACTIONS(1000), [anon_sym_DQUOTE] = ACTIONS(1000), [sym_raw_string] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1502), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), [anon_sym_BQUOTE] = ACTIONS(1000), @@ -24522,25 +24773,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1002), [sym_comment] = ACTIONS(52), }, - [1021] = { + [1030] = { [sym_file_descriptor] = ACTIONS(1021), [sym__concat] = ACTIONS(1021), [sym_variable_name] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), @@ -24549,26 +24800,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1023), [sym_comment] = ACTIONS(52), }, - [1022] = { - [aux_sym_concatenation_repeat1] = STATE(1022), + [1031] = { + [aux_sym_concatenation_repeat1] = STATE(1031), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(2568), + [sym__concat] = ACTIONS(2598), [sym_variable_name] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), @@ -24577,35 +24828,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1023), [sym_comment] = ACTIONS(52), }, - [1023] = { - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2573), + [1032] = { + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2603), [sym_comment] = ACTIONS(52), }, - [1024] = { - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2577), + [1033] = { + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2607), [sym_comment] = ACTIONS(52), }, - [1025] = { + [1034] = { [sym_file_descriptor] = ACTIONS(1036), [sym__concat] = ACTIONS(1036), [sym_variable_name] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1517), [anon_sym_RPAREN] = ACTIONS(1036), [anon_sym_PIPE_AMP] = ACTIONS(1036), [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1517), [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(1517), [anon_sym_AMP_GT_GT] = ACTIONS(1036), [anon_sym_LT_AMP] = ACTIONS(1036), [anon_sym_GT_AMP] = ACTIONS(1036), [anon_sym_DQUOTE] = ACTIONS(1036), [sym_raw_string] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1517), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), [anon_sym_BQUOTE] = ACTIONS(1036), @@ -24614,328 +24865,330 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1038), [sym_comment] = ACTIONS(52), }, - [1026] = { - [anon_sym_AT] = ACTIONS(2579), - [sym_comment] = ACTIONS(52), - }, - [1027] = { - [sym_concatenation] = STATE(1190), - [sym_string] = STATE(1189), - [sym_simple_expansion] = STATE(1189), - [sym_expansion] = STATE(1189), - [sym_command_substitution] = STATE(1189), - [sym_process_substitution] = STATE(1189), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2583), - [sym_comment] = ACTIONS(52), - }, - [1028] = { - [sym_file_descriptor] = ACTIONS(1046), - [sym__concat] = ACTIONS(1046), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_PIPE_AMP] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1521), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_AMP_GT] = ACTIONS(1521), - [anon_sym_AMP_GT_GT] = ACTIONS(1046), - [anon_sym_LT_AMP] = ACTIONS(1046), - [anon_sym_GT_AMP] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1046), - [anon_sym_BQUOTE] = ACTIONS(1046), - [anon_sym_LT_LPAREN] = ACTIONS(1046), - [anon_sym_GT_LPAREN] = ACTIONS(1046), - [sym_word] = ACTIONS(1048), - [sym_comment] = ACTIONS(52), - }, - [1029] = { - [anon_sym_AT] = ACTIONS(2585), - [sym_comment] = ACTIONS(52), - }, - [1030] = { - [sym_concatenation] = STATE(1193), - [sym_string] = STATE(1192), - [sym_simple_expansion] = STATE(1192), - [sym_expansion] = STATE(1192), - [sym_command_substitution] = STATE(1192), - [sym_process_substitution] = STATE(1192), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2587), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2589), - [sym_comment] = ACTIONS(52), - }, - [1031] = { - [sym_file_descriptor] = ACTIONS(1136), - [sym__concat] = ACTIONS(1136), - [sym_variable_name] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_AMP_GT] = ACTIONS(1529), - [anon_sym_AMP_GT_GT] = ACTIONS(1136), - [anon_sym_LT_AMP] = ACTIONS(1136), - [anon_sym_GT_AMP] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_raw_string] = ACTIONS(1136), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), - [anon_sym_LT_LPAREN] = ACTIONS(1136), - [anon_sym_GT_LPAREN] = ACTIONS(1136), - [sym_word] = ACTIONS(1138), - [sym_comment] = ACTIONS(52), - }, - [1032] = { - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1192), - [sym_variable_name] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_RPAREN] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1531), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_word] = ACTIONS(1194), - [sym_comment] = ACTIONS(52), - }, - [1033] = { - [sym_do_group] = STATE(1194), - [anon_sym_do] = ACTIONS(1078), - [sym_comment] = ACTIONS(52), - }, - [1034] = { - [anon_sym_PIPE] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_PIPE_AMP] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_PIPE_PIPE] = ACTIONS(2593), - [anon_sym_BQUOTE] = ACTIONS(2593), - [sym_comment] = ACTIONS(52), - }, [1035] = { - [anon_sym_PIPE] = ACTIONS(2595), - [anon_sym_RPAREN] = ACTIONS(2597), - [anon_sym_PIPE_AMP] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BQUOTE] = ACTIONS(2597), + [anon_sym_AT] = ACTIONS(2609), [sym_comment] = ACTIONS(52), }, [1036] = { - [anon_sym_fi] = ACTIONS(2599), + [sym_concatenation] = STATE(1203), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2613), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2615), [sym_comment] = ACTIONS(52), }, [1037] = { - [sym_elif_clause] = STATE(434), - [sym_else_clause] = STATE(1196), - [aux_sym_if_statement_repeat1] = STATE(722), - [anon_sym_fi] = ACTIONS(2599), - [anon_sym_elif] = ACTIONS(1434), - [anon_sym_else] = ACTIONS(1436), + [sym_file_descriptor] = ACTIONS(1048), + [sym__concat] = ACTIONS(1048), + [sym_variable_name] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_PIPE_AMP] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(1048), + [anon_sym_LT_AMP] = ACTIONS(1048), + [anon_sym_GT_AMP] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_LT_LPAREN] = ACTIONS(1048), + [anon_sym_GT_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1050), [sym_comment] = ACTIONS(52), }, [1038] = { - [anon_sym_PIPE] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2603), - [anon_sym_PIPE_AMP] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_PIPE_PIPE] = ACTIONS(2603), - [anon_sym_BQUOTE] = ACTIONS(2603), + [anon_sym_AT] = ACTIONS(2617), [sym_comment] = ACTIONS(52), }, [1039] = { - [sym_case_item] = STATE(725), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), - [aux_sym_case_statement_repeat1] = STATE(976), - [anon_sym_esac] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), - [anon_sym_BQUOTE] = ACTIONS(280), - [anon_sym_LT_LPAREN] = ACTIONS(282), - [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(1442), + [sym_concatenation] = STATE(1206), + [sym_string] = STATE(1205), + [sym_simple_expansion] = STATE(1205), + [sym_expansion] = STATE(1205), + [sym_command_substitution] = STATE(1205), + [sym_process_substitution] = STATE(1205), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2619), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2621), [sym_comment] = ACTIONS(52), }, [1040] = { - [sym_case_item] = STATE(725), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), - [aux_sym_case_statement_repeat1] = STATE(1198), - [anon_sym_esac] = ACTIONS(2605), + [sym_file_descriptor] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [sym_variable_name] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_PIPE_AMP] = ACTIONS(1138), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE_PIPE] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1138), + [anon_sym_AMP_GT] = ACTIONS(1535), + [anon_sym_AMP_GT_GT] = ACTIONS(1138), + [anon_sym_LT_AMP] = ACTIONS(1138), + [anon_sym_GT_AMP] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_raw_string] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [anon_sym_LT_LPAREN] = ACTIONS(1138), + [anon_sym_GT_LPAREN] = ACTIONS(1138), + [sym_word] = ACTIONS(1140), + [sym_comment] = ACTIONS(52), + }, + [1041] = { + [sym_file_descriptor] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [sym_variable_name] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_PIPE_AMP] = ACTIONS(1194), + [anon_sym_AMP_AMP] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_GT_GT] = ACTIONS(1194), + [anon_sym_AMP_GT] = ACTIONS(1537), + [anon_sym_AMP_GT_GT] = ACTIONS(1194), + [anon_sym_LT_AMP] = ACTIONS(1194), + [anon_sym_GT_AMP] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1194), + [sym_raw_string] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(1194), + [anon_sym_GT_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(1196), + [sym_comment] = ACTIONS(52), + }, + [1042] = { + [sym_do_group] = STATE(1207), + [anon_sym_do] = ACTIONS(1080), + [sym_comment] = ACTIONS(52), + }, + [1043] = { + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_PIPE_AMP] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_BQUOTE] = ACTIONS(2625), + [sym_comment] = ACTIONS(52), + }, + [1044] = { + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2629), + [anon_sym_PIPE_AMP] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_BQUOTE] = ACTIONS(2629), + [sym_comment] = ACTIONS(52), + }, + [1045] = { + [anon_sym_fi] = ACTIONS(2631), + [sym_comment] = ACTIONS(52), + }, + [1046] = { + [sym_elif_clause] = STATE(434), + [sym_else_clause] = STATE(1209), + [aux_sym_if_statement_repeat1] = STATE(723), + [anon_sym_fi] = ACTIONS(2631), + [anon_sym_elif] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1438), + [sym_comment] = ACTIONS(52), + }, + [1047] = { + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_RPAREN] = ACTIONS(2635), + [anon_sym_PIPE_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_BQUOTE] = ACTIONS(2635), + [sym_comment] = ACTIONS(52), + }, + [1048] = { + [sym_case_item] = STATE(726), + [sym_concatenation] = STATE(727), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [aux_sym_case_statement_repeat1] = STATE(985), + [anon_sym_esac] = ACTIONS(2637), [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(1440), + [sym_raw_string] = ACTIONS(1442), [anon_sym_DOLLAR] = ACTIONS(274), [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), [anon_sym_BQUOTE] = ACTIONS(280), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(1442), - [sym_comment] = ACTIONS(52), - }, - [1041] = { - [sym_file_redirect] = STATE(1199), - [sym_file_descriptor] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2609), - [anon_sym_PIPE_AMP] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_GT] = ACTIONS(1134), - [anon_sym_AMP_GT] = ACTIONS(1132), - [anon_sym_AMP_GT_GT] = ACTIONS(1134), - [anon_sym_LT_AMP] = ACTIONS(1134), - [anon_sym_GT_AMP] = ACTIONS(1134), - [sym_comment] = ACTIONS(52), - }, - [1042] = { - [anon_sym_PIPE] = ACTIONS(2611), - [anon_sym_RPAREN] = ACTIONS(2613), - [anon_sym_PIPE_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_BQUOTE] = ACTIONS(2613), - [sym_comment] = ACTIONS(52), - }, - [1043] = { - [anon_sym_RBRACK] = ACTIONS(2615), - [sym_comment] = ACTIONS(52), - }, - [1044] = { - [anon_sym_RBRACK] = ACTIONS(2617), - [sym_comment] = ACTIONS(52), - }, - [1045] = { - [anon_sym_RBRACE] = ACTIONS(2619), - [sym_comment] = ACTIONS(52), - }, - [1046] = { - [sym_file_descriptor] = ACTIONS(2162), - [sym__concat] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2524), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_PIPE_AMP] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_GT] = ACTIONS(2524), - [anon_sym_AMP_GT_GT] = ACTIONS(2162), - [anon_sym_LT_AMP] = ACTIONS(2162), - [anon_sym_GT_AMP] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2524), - [anon_sym_LT_LT_DASH] = ACTIONS(2162), - [anon_sym_DQUOTE] = ACTIONS(2162), - [sym_raw_string] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(2524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2162), - [anon_sym_BQUOTE] = ACTIONS(2162), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_word] = ACTIONS(2164), - [sym_comment] = ACTIONS(52), - }, - [1047] = { - [anon_sym_RBRACE] = ACTIONS(2621), - [sym_comment] = ACTIONS(52), - }, - [1048] = { - [sym_file_descriptor] = ACTIONS(2168), - [sym__concat] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_PIPE_AMP] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2168), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2168), - [anon_sym_AMP_GT] = ACTIONS(2528), - [anon_sym_AMP_GT_GT] = ACTIONS(2168), - [anon_sym_LT_AMP] = ACTIONS(2168), - [anon_sym_GT_AMP] = ACTIONS(2168), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_LT_LT_DASH] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [sym_raw_string] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_LT_LPAREN] = ACTIONS(2168), - [anon_sym_GT_LPAREN] = ACTIONS(2168), - [sym_word] = ACTIONS(2170), + [sym_word] = ACTIONS(1444), [sym_comment] = ACTIONS(52), }, [1049] = { - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2609), - [anon_sym_PIPE_AMP] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BQUOTE] = ACTIONS(2609), + [sym_case_item] = STATE(726), + [sym_concatenation] = STATE(727), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [aux_sym_case_statement_repeat1] = STATE(1211), + [anon_sym_esac] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(270), + [sym_raw_string] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), + [anon_sym_BQUOTE] = ACTIONS(280), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_word] = ACTIONS(1444), [sym_comment] = ACTIONS(52), }, [1050] = { - [aux_sym_concatenation_repeat1] = STATE(1055), - [sym__concat] = ACTIONS(2254), + [sym_file_redirect] = STATE(1212), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_RPAREN] = ACTIONS(2641), + [anon_sym_PIPE_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_AMP_GT] = ACTIONS(1134), + [anon_sym_AMP_GT_GT] = ACTIONS(1136), + [anon_sym_LT_AMP] = ACTIONS(1136), + [anon_sym_GT_AMP] = ACTIONS(1136), + [sym_comment] = ACTIONS(52), + }, + [1051] = { + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_RPAREN] = ACTIONS(2645), + [anon_sym_PIPE_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_BQUOTE] = ACTIONS(2645), + [sym_comment] = ACTIONS(52), + }, + [1052] = { + [anon_sym_RBRACK] = ACTIONS(2647), + [sym_comment] = ACTIONS(52), + }, + [1053] = { + [anon_sym_RBRACK] = ACTIONS(2649), + [sym_comment] = ACTIONS(52), + }, + [1054] = { + [anon_sym_RBRACE] = ACTIONS(2651), + [sym_comment] = ACTIONS(52), + }, + [1055] = { + [sym_file_descriptor] = ACTIONS(2186), + [sym__concat] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2554), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_LT_LT_DASH] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2186), + [anon_sym_BQUOTE] = ACTIONS(2186), + [anon_sym_LT_LPAREN] = ACTIONS(2186), + [anon_sym_GT_LPAREN] = ACTIONS(2186), + [sym_word] = ACTIONS(2188), + [sym_comment] = ACTIONS(52), + }, + [1056] = { + [anon_sym_RBRACE] = ACTIONS(2653), + [sym_comment] = ACTIONS(52), + }, + [1057] = { + [sym_file_descriptor] = ACTIONS(2192), + [sym__concat] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2558), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_LT_LT_DASH] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), + [sym_word] = ACTIONS(2194), + [sym_comment] = ACTIONS(52), + }, + [1058] = { + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_RPAREN] = ACTIONS(2641), + [anon_sym_PIPE_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_BQUOTE] = ACTIONS(2641), + [sym_comment] = ACTIONS(52), + }, + [1059] = { + [aux_sym_concatenation_repeat1] = STATE(1064), + [sym__concat] = ACTIONS(2278), [anon_sym_PIPE] = ACTIONS(692), [anon_sym_RPAREN] = ACTIONS(690), [anon_sym_PIPE_AMP] = ACTIONS(690), @@ -24943,7 +25196,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(690), [sym_comment] = ACTIONS(52), }, - [1051] = { + [1060] = { [anon_sym_PIPE] = ACTIONS(692), [anon_sym_RPAREN] = ACTIONS(690), [anon_sym_PIPE_AMP] = ACTIONS(690), @@ -24952,7 +25205,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(690), [sym_comment] = ACTIONS(52), }, - [1052] = { + [1061] = { [sym__concat] = ACTIONS(416), [anon_sym_PIPE] = ACTIONS(836), [anon_sym_RPAREN] = ACTIONS(416), @@ -24962,12 +25215,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(416), [sym_comment] = ACTIONS(52), }, - [1053] = { + [1062] = { [sym_simple_expansion] = STATE(85), [sym_expansion] = STATE(85), [sym_command_substitution] = STATE(85), [aux_sym_string_repeat1] = STATE(277), - [anon_sym_DQUOTE] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2655), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(140), [anon_sym_DOLLAR] = ACTIONS(142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), @@ -24975,26 +25228,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(148), [sym_comment] = ACTIONS(150), }, - [1054] = { - [sym_string] = STATE(1205), - [sym_simple_expansion] = STATE(1205), - [sym_expansion] = STATE(1205), - [sym_command_substitution] = STATE(1205), - [sym_process_substitution] = STATE(1205), - [anon_sym_DQUOTE] = ACTIONS(1700), - [sym_raw_string] = ACTIONS(2625), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(2627), + [1063] = { + [sym_string] = STATE(1218), + [sym_simple_expansion] = STATE(1218), + [sym_expansion] = STATE(1218), + [sym_command_substitution] = STATE(1218), + [sym_process_substitution] = STATE(1218), + [anon_sym_DQUOTE] = ACTIONS(1718), + [sym_raw_string] = ACTIONS(2657), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_word] = ACTIONS(2659), [sym_comment] = ACTIONS(52), }, - [1055] = { - [aux_sym_concatenation_repeat1] = STATE(1206), - [sym__concat] = ACTIONS(2254), + [1064] = { + [aux_sym_concatenation_repeat1] = STATE(1219), + [sym__concat] = ACTIONS(2278), [anon_sym_PIPE] = ACTIONS(844), [anon_sym_RPAREN] = ACTIONS(440), [anon_sym_PIPE_AMP] = ACTIONS(440), @@ -25002,7 +25255,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(440), [sym_comment] = ACTIONS(52), }, - [1056] = { + [1065] = { [sym__concat] = ACTIONS(444), [anon_sym_PIPE] = ACTIONS(456), [anon_sym_RPAREN] = ACTIONS(444), @@ -25012,7 +25265,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(444), [sym_comment] = ACTIONS(52), }, - [1057] = { + [1066] = { [sym__concat] = ACTIONS(448), [anon_sym_PIPE] = ACTIONS(846), [anon_sym_RPAREN] = ACTIONS(448), @@ -25022,7 +25275,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(448), [sym_comment] = ACTIONS(52), }, - [1058] = { + [1067] = { [sym__concat] = ACTIONS(452), [anon_sym_PIPE] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(452), @@ -25032,8 +25285,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(452), [sym_comment] = ACTIONS(52), }, - [1059] = { - [sym_special_variable_name] = STATE(1208), + [1068] = { + [sym_special_variable_name] = STATE(1221), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(444), @@ -25046,7 +25299,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(444), [anon_sym_SLASH] = ACTIONS(444), [sym_comment] = ACTIONS(150), - [sym_simple_variable_name] = ACTIONS(2629), + [sym_simple_variable_name] = ACTIONS(2661), [anon_sym_STAR] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(164), [anon_sym_DASH] = ACTIONS(164), @@ -25054,41 +25307,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(170), [anon_sym__] = ACTIONS(170), }, - [1060] = { - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2635), - [anon_sym_COLON] = ACTIONS(2637), - [anon_sym_COLON_QMARK] = ACTIONS(2635), - [anon_sym_COLON_DASH] = ACTIONS(2635), - [anon_sym_PERCENT] = ACTIONS(2635), - [anon_sym_SLASH] = ACTIONS(2635), + [1069] = { + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_COLON] = ACTIONS(2669), + [anon_sym_COLON_QMARK] = ACTIONS(2667), + [anon_sym_COLON_DASH] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), [sym_comment] = ACTIONS(52), }, - [1061] = { - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2643), - [anon_sym_COLON] = ACTIONS(2645), - [anon_sym_COLON_QMARK] = ACTIONS(2643), - [anon_sym_COLON_DASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), + [1070] = { + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_EQ] = ACTIONS(2675), + [anon_sym_COLON] = ACTIONS(2677), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_COLON_DASH] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_SLASH] = ACTIONS(2675), [sym_comment] = ACTIONS(52), }, - [1062] = { + [1071] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2679), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [1063] = { + [1072] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2679), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -25110,15 +25363,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [1064] = { + [1073] = { [anon_sym_PIPE] = ACTIONS(542), [anon_sym_PIPE_AMP] = ACTIONS(544), [anon_sym_AMP_AMP] = ACTIONS(546), [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(2647), + [anon_sym_BQUOTE] = ACTIONS(2679), [sym_comment] = ACTIONS(52), }, - [1065] = { + [1074] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(542), @@ -25137,25 +25390,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(2647), + [anon_sym_BQUOTE] = ACTIONS(2679), [anon_sym_LT_LPAREN] = ACTIONS(254), [anon_sym_GT_LPAREN] = ACTIONS(254), [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [1066] = { + [1075] = { [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2681), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(512), [sym_comment] = ACTIONS(52), }, - [1067] = { + [1076] = { [sym_file_descriptor] = ACTIONS(254), [sym_variable_name] = ACTIONS(254), [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2681), [anon_sym_PIPE_AMP] = ACTIONS(510), [anon_sym_AMP_AMP] = ACTIONS(512), [anon_sym_PIPE_PIPE] = ACTIONS(532), @@ -25177,238 +25430,240 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(256), [sym_comment] = ACTIONS(52), }, - [1068] = { + [1077] = { [sym_file_descriptor] = ACTIONS(1000), [sym__concat] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1502), [anon_sym_RPAREN] = ACTIONS(1000), [anon_sym_PIPE_AMP] = ACTIONS(1000), [anon_sym_AMP_AMP] = ACTIONS(1000), [anon_sym_PIPE_PIPE] = ACTIONS(1000), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1502), [anon_sym_GT_GT] = ACTIONS(1000), - [anon_sym_AMP_GT] = ACTIONS(1498), + [anon_sym_AMP_GT] = ACTIONS(1502), [anon_sym_AMP_GT_GT] = ACTIONS(1000), [anon_sym_LT_AMP] = ACTIONS(1000), [anon_sym_GT_AMP] = ACTIONS(1000), - [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1502), [anon_sym_LT_LT_DASH] = ACTIONS(1000), [anon_sym_BQUOTE] = ACTIONS(1000), [sym_comment] = ACTIONS(52), }, - [1069] = { + [1078] = { [sym_file_descriptor] = ACTIONS(1021), [sym__concat] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), [anon_sym_PIPE_PIPE] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), - [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1504), [anon_sym_LT_LT_DASH] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), [sym_comment] = ACTIONS(52), }, - [1070] = { - [aux_sym_concatenation_repeat1] = STATE(1070), + [1079] = { + [aux_sym_concatenation_repeat1] = STATE(1079), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(1500), + [sym__concat] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), [anon_sym_PIPE_PIPE] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), - [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1504), [anon_sym_LT_LT_DASH] = ACTIONS(1021), [sym_comment] = ACTIONS(52), }, - [1071] = { - [anon_sym_RBRACE] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2656), + [1080] = { + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), [sym_comment] = ACTIONS(52), }, - [1072] = { - [anon_sym_RBRACE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2660), + [1081] = { + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2692), [sym_comment] = ACTIONS(52), }, - [1073] = { + [1082] = { [sym_file_descriptor] = ACTIONS(1036), [sym__concat] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1517), [anon_sym_RPAREN] = ACTIONS(1036), [anon_sym_PIPE_AMP] = ACTIONS(1036), [anon_sym_AMP_AMP] = ACTIONS(1036), [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1517), [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(1517), [anon_sym_AMP_GT_GT] = ACTIONS(1036), [anon_sym_LT_AMP] = ACTIONS(1036), [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1517), [anon_sym_LT_LT_DASH] = ACTIONS(1036), [anon_sym_BQUOTE] = ACTIONS(1036), [sym_comment] = ACTIONS(52), }, - [1074] = { - [anon_sym_AT] = ACTIONS(2662), + [1083] = { + [anon_sym_AT] = ACTIONS(2694), [sym_comment] = ACTIONS(52), }, - [1075] = { - [sym_concatenation] = STATE(1223), - [sym_string] = STATE(1222), - [sym_simple_expansion] = STATE(1222), - [sym_expansion] = STATE(1222), - [sym_command_substitution] = STATE(1222), - [sym_process_substitution] = STATE(1222), + [1084] = { + [sym_concatenation] = STATE(1237), + [sym_string] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [anon_sym_RBRACE] = ACTIONS(2696), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2664), + [sym_raw_string] = ACTIONS(2698), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2666), + [sym_word] = ACTIONS(2700), [sym_comment] = ACTIONS(52), }, - [1076] = { - [sym_file_descriptor] = ACTIONS(1046), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_PIPE_AMP] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1521), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_AMP_GT] = ACTIONS(1521), - [anon_sym_AMP_GT_GT] = ACTIONS(1046), - [anon_sym_LT_AMP] = ACTIONS(1046), - [anon_sym_GT_AMP] = ACTIONS(1046), - [anon_sym_LT_LT] = ACTIONS(1521), - [anon_sym_LT_LT_DASH] = ACTIONS(1046), - [anon_sym_BQUOTE] = ACTIONS(1046), + [1085] = { + [sym_file_descriptor] = ACTIONS(1048), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_PIPE_AMP] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(1048), + [anon_sym_LT_AMP] = ACTIONS(1048), + [anon_sym_GT_AMP] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), [sym_comment] = ACTIONS(52), }, - [1077] = { - [anon_sym_AT] = ACTIONS(2668), + [1086] = { + [anon_sym_AT] = ACTIONS(2702), [sym_comment] = ACTIONS(52), }, - [1078] = { - [sym_concatenation] = STATE(1226), - [sym_string] = STATE(1225), - [sym_simple_expansion] = STATE(1225), - [sym_expansion] = STATE(1225), - [sym_command_substitution] = STATE(1225), - [sym_process_substitution] = STATE(1225), + [1087] = { + [sym_concatenation] = STATE(1240), + [sym_string] = STATE(1239), + [sym_simple_expansion] = STATE(1239), + [sym_expansion] = STATE(1239), + [sym_command_substitution] = STATE(1239), + [sym_process_substitution] = STATE(1239), + [anon_sym_RBRACE] = ACTIONS(2690), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2670), + [sym_raw_string] = ACTIONS(2704), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2672), + [sym_word] = ACTIONS(2706), [sym_comment] = ACTIONS(52), }, - [1079] = { - [sym_file_descriptor] = ACTIONS(1136), - [sym__concat] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_AMP_GT] = ACTIONS(1529), - [anon_sym_AMP_GT_GT] = ACTIONS(1136), - [anon_sym_LT_AMP] = ACTIONS(1136), - [anon_sym_GT_AMP] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_LT_LT_DASH] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), + [1088] = { + [sym_file_descriptor] = ACTIONS(1138), + [sym__concat] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_PIPE_AMP] = ACTIONS(1138), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE_PIPE] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1138), + [anon_sym_AMP_GT] = ACTIONS(1535), + [anon_sym_AMP_GT_GT] = ACTIONS(1138), + [anon_sym_LT_AMP] = ACTIONS(1138), + [anon_sym_GT_AMP] = ACTIONS(1138), + [anon_sym_LT_LT] = ACTIONS(1535), + [anon_sym_LT_LT_DASH] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), [sym_comment] = ACTIONS(52), }, - [1080] = { - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_RPAREN] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1531), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), + [1089] = { + [sym_file_descriptor] = ACTIONS(1194), + [sym__concat] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_PIPE_AMP] = ACTIONS(1194), + [anon_sym_AMP_AMP] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_GT_GT] = ACTIONS(1194), + [anon_sym_AMP_GT] = ACTIONS(1537), + [anon_sym_AMP_GT_GT] = ACTIONS(1194), + [anon_sym_LT_AMP] = ACTIONS(1194), + [anon_sym_GT_AMP] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1537), + [anon_sym_LT_LT_DASH] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), [sym_comment] = ACTIONS(52), }, - [1081] = { - [sym_file_descriptor] = ACTIONS(2375), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_RPAREN] = ACTIONS(2375), - [anon_sym_PIPE_AMP] = ACTIONS(2375), - [anon_sym_AMP_AMP] = ACTIONS(2375), - [anon_sym_PIPE_PIPE] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_GT] = ACTIONS(2674), - [anon_sym_GT_GT] = ACTIONS(2375), - [anon_sym_AMP_GT] = ACTIONS(2674), - [anon_sym_AMP_GT_GT] = ACTIONS(2375), - [anon_sym_LT_AMP] = ACTIONS(2375), - [anon_sym_GT_AMP] = ACTIONS(2375), - [anon_sym_LT_LT] = ACTIONS(2674), - [anon_sym_LT_LT_DASH] = ACTIONS(2375), - [anon_sym_BQUOTE] = ACTIONS(2375), + [1090] = { + [sym_file_descriptor] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_PIPE_AMP] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_AMP_GT] = ACTIONS(2708), + [anon_sym_AMP_GT_GT] = ACTIONS(2401), + [anon_sym_LT_AMP] = ACTIONS(2401), + [anon_sym_GT_AMP] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_LT_LT_DASH] = ACTIONS(2401), + [anon_sym_BQUOTE] = ACTIONS(2401), [sym_comment] = ACTIONS(52), }, - [1082] = { - [aux_sym_concatenation_repeat1] = STATE(1082), + [1091] = { + [aux_sym_concatenation_repeat1] = STATE(1091), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(2568), + [sym__concat] = ACTIONS(2598), [sym_variable_name] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), [anon_sym_DQUOTE] = ACTIONS(1021), [sym_raw_string] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1504), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), @@ -25417,26 +25672,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1023), [sym_comment] = ACTIONS(52), }, - [1083] = { - [sym_file_redirect] = STATE(1199), - [sym_file_descriptor] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_PIPE_AMP] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1182), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(1182), - [anon_sym_LT_AMP] = ACTIONS(1182), - [anon_sym_GT_AMP] = ACTIONS(1182), - [anon_sym_BQUOTE] = ACTIONS(2609), + [1092] = { + [sym_file_redirect] = STATE(1212), + [sym_file_descriptor] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_PIPE_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_AMP_GT] = ACTIONS(1182), + [anon_sym_AMP_GT_GT] = ACTIONS(1184), + [anon_sym_LT_AMP] = ACTIONS(1184), + [anon_sym_GT_AMP] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(2641), [sym_comment] = ACTIONS(52), }, - [1084] = { - [aux_sym_concatenation_repeat1] = STATE(1085), - [sym__concat] = ACTIONS(2254), + [1093] = { + [aux_sym_concatenation_repeat1] = STATE(1094), + [sym__concat] = ACTIONS(2278), [anon_sym_PIPE] = ACTIONS(692), [anon_sym_PIPE_AMP] = ACTIONS(690), [anon_sym_AMP_AMP] = ACTIONS(690), @@ -25444,9 +25699,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(690), [sym_comment] = ACTIONS(52), }, - [1085] = { - [aux_sym_concatenation_repeat1] = STATE(1227), - [sym__concat] = ACTIONS(2254), + [1094] = { + [aux_sym_concatenation_repeat1] = STATE(1241), + [sym__concat] = ACTIONS(2278), [anon_sym_PIPE] = ACTIONS(844), [anon_sym_PIPE_AMP] = ACTIONS(440), [anon_sym_AMP_AMP] = ACTIONS(440), @@ -25454,27 +25709,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(440), [sym_comment] = ACTIONS(52), }, - [1086] = { - [aux_sym_concatenation_repeat1] = STATE(1086), + [1095] = { + [aux_sym_concatenation_repeat1] = STATE(1095), [sym_file_descriptor] = ACTIONS(1021), - [sym__concat] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(1500), + [sym__concat] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), [anon_sym_PIPE_PIPE] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1504), [anon_sym_AMP_GT_GT] = ACTIONS(1021), [anon_sym_LT_AMP] = ACTIONS(1021), [anon_sym_GT_AMP] = ACTIONS(1021), - [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1504), [anon_sym_LT_LT_DASH] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), [sym_comment] = ACTIONS(52), }, - [1087] = { + [1096] = { [sym__concat] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_RPAREN] = ACTIONS(1002), @@ -25487,7 +25742,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1002), [anon_sym_AMP] = ACTIONS(1002), }, - [1088] = { + [1097] = { [sym__concat] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(1023), [anon_sym_RPAREN] = ACTIONS(1023), @@ -25500,9 +25755,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [1089] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [sym__concat] = ACTIONS(2676), + [1098] = { + [aux_sym_concatenation_repeat1] = STATE(1098), + [sym__concat] = ACTIONS(2710), [anon_sym_PIPE] = ACTIONS(1023), [anon_sym_SEMI_SEMI] = ACTIONS(1023), [anon_sym_PIPE_AMP] = ACTIONS(1023), @@ -25513,17 +25768,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [1090] = { - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2681), + [1099] = { + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2715), [sym_comment] = ACTIONS(52), }, - [1091] = { - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2685), + [1100] = { + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), [sym_comment] = ACTIONS(52), }, - [1092] = { + [1101] = { [sym__concat] = ACTIONS(1036), [anon_sym_PIPE] = ACTIONS(1038), [anon_sym_RPAREN] = ACTIONS(1038), @@ -25536,503 +25791,561 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1038), [anon_sym_AMP] = ACTIONS(1038), }, - [1093] = { - [anon_sym_AT] = ACTIONS(2687), - [sym_comment] = ACTIONS(52), - }, - [1094] = { - [sym_concatenation] = STATE(1234), - [sym_string] = STATE(1233), - [sym_simple_expansion] = STATE(1233), - [sym_expansion] = STATE(1233), - [sym_command_substitution] = STATE(1233), - [sym_process_substitution] = STATE(1233), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2689), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2691), - [sym_comment] = ACTIONS(52), - }, - [1095] = { - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_SEMI_SEMI] = ACTIONS(1048), - [anon_sym_PIPE_AMP] = ACTIONS(1048), - [anon_sym_AMP_AMP] = ACTIONS(1048), - [anon_sym_PIPE_PIPE] = ACTIONS(1048), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_LF] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), - }, - [1096] = { - [anon_sym_AT] = ACTIONS(2693), - [sym_comment] = ACTIONS(52), - }, - [1097] = { - [sym_concatenation] = STATE(1237), - [sym_string] = STATE(1236), - [sym_simple_expansion] = STATE(1236), - [sym_expansion] = STATE(1236), - [sym_command_substitution] = STATE(1236), - [sym_process_substitution] = STATE(1236), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2695), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2697), - [sym_comment] = ACTIONS(52), - }, - [1098] = { - [sym__concat] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_RPAREN] = ACTIONS(1138), - [anon_sym_SEMI_SEMI] = ACTIONS(1138), - [anon_sym_PIPE_AMP] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LF] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - }, - [1099] = { - [sym__concat] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_SEMI_SEMI] = ACTIONS(1194), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - }, - [1100] = { - [sym_file_descriptor] = ACTIONS(1599), - [sym__concat] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_SEMI_SEMI] = ACTIONS(1601), - [anon_sym_PIPE_AMP] = ACTIONS(1601), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_PIPE_PIPE] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_GT] = ACTIONS(1601), - [anon_sym_GT_GT] = ACTIONS(1601), - [anon_sym_AMP_GT] = ACTIONS(1601), - [anon_sym_AMP_GT_GT] = ACTIONS(1601), - [anon_sym_LT_AMP] = ACTIONS(1601), - [anon_sym_GT_AMP] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1601), - [anon_sym_LT_LT_DASH] = ACTIONS(1601), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_LF] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1601), - }, - [1101] = { - [anon_sym_AT] = ACTIONS(2699), - [sym_comment] = ACTIONS(52), - }, [1102] = { - [sym_file_descriptor] = ACTIONS(1605), - [sym__concat] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_SEMI_SEMI] = ACTIONS(1607), - [anon_sym_PIPE_AMP] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_PIPE_PIPE] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_GT] = ACTIONS(1607), - [anon_sym_AMP_GT] = ACTIONS(1607), - [anon_sym_AMP_GT_GT] = ACTIONS(1607), - [anon_sym_LT_AMP] = ACTIONS(1607), - [anon_sym_GT_AMP] = ACTIONS(1607), - [anon_sym_LT_LT] = ACTIONS(1607), - [anon_sym_LT_LT_DASH] = ACTIONS(1607), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_LF] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_AT] = ACTIONS(2721), + [sym_comment] = ACTIONS(52), }, [1103] = { - [anon_sym_AT] = ACTIONS(2701), + [sym_concatenation] = STATE(1249), + [sym_string] = STATE(1248), + [sym_simple_expansion] = STATE(1248), + [sym_expansion] = STATE(1248), + [sym_command_substitution] = STATE(1248), + [sym_process_substitution] = STATE(1248), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2725), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2727), [sym_comment] = ACTIONS(52), }, [1104] = { - [anon_sym_RBRACK] = ACTIONS(2703), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), }, [1105] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_AT] = ACTIONS(2729), [sym_comment] = ACTIONS(52), }, [1106] = { - [anon_sym_RBRACE] = ACTIONS(2705), + [sym_concatenation] = STATE(1252), + [sym_string] = STATE(1251), + [sym_simple_expansion] = STATE(1251), + [sym_expansion] = STATE(1251), + [sym_command_substitution] = STATE(1251), + [sym_process_substitution] = STATE(1251), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2731), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2733), [sym_comment] = ACTIONS(52), }, [1107] = { - [anon_sym_RBRACK] = ACTIONS(2707), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_SEMI_SEMI] = ACTIONS(1140), + [anon_sym_PIPE_AMP] = ACTIONS(1140), + [anon_sym_AMP_AMP] = ACTIONS(1140), + [anon_sym_PIPE_PIPE] = ACTIONS(1140), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_LF] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), }, [1108] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2709), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_LF] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), }, [1109] = { - [anon_sym_RBRACE] = ACTIONS(2709), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1611), + [sym__concat] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(1613), + [anon_sym_SEMI_SEMI] = ACTIONS(1613), + [anon_sym_PIPE_AMP] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1613), + [anon_sym_PIPE_PIPE] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(1613), + [anon_sym_GT] = ACTIONS(1613), + [anon_sym_GT_GT] = ACTIONS(1613), + [anon_sym_AMP_GT] = ACTIONS(1613), + [anon_sym_AMP_GT_GT] = ACTIONS(1613), + [anon_sym_LT_AMP] = ACTIONS(1613), + [anon_sym_GT_AMP] = ACTIONS(1613), + [anon_sym_LT_LT] = ACTIONS(1613), + [anon_sym_LT_LT_DASH] = ACTIONS(1613), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1613), }, [1110] = { - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2735), [sym_comment] = ACTIONS(52), }, [1111] = { - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2717), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1617), + [sym__concat] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_SEMI_SEMI] = ACTIONS(1619), + [anon_sym_PIPE_AMP] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_GT_GT] = ACTIONS(1619), + [anon_sym_AMP_GT] = ACTIONS(1619), + [anon_sym_AMP_GT_GT] = ACTIONS(1619), + [anon_sym_LT_AMP] = ACTIONS(1619), + [anon_sym_GT_AMP] = ACTIONS(1619), + [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_LT_LT_DASH] = ACTIONS(1619), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), }, [1112] = { - [sym__heredoc_middle] = ACTIONS(1036), - [sym__heredoc_end] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [anon_sym_AT] = ACTIONS(2737), [sym_comment] = ACTIONS(52), }, [1113] = { - [anon_sym_AT] = ACTIONS(2719), + [anon_sym_RBRACK] = ACTIONS(2739), [sym_comment] = ACTIONS(52), }, [1114] = { - [sym_concatenation] = STATE(1250), - [sym_string] = STATE(1249), - [sym_simple_expansion] = STATE(1249), - [sym_expansion] = STATE(1249), - [sym_command_substitution] = STATE(1249), - [sym_process_substitution] = STATE(1249), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2721), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2723), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1625), + [sym__concat] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1627), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_SEMI_SEMI] = ACTIONS(1627), + [anon_sym_PIPE_AMP] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_GT_GT] = ACTIONS(1627), + [anon_sym_AMP_GT] = ACTIONS(1627), + [anon_sym_AMP_GT_GT] = ACTIONS(1627), + [anon_sym_LT_AMP] = ACTIONS(1627), + [anon_sym_GT_AMP] = ACTIONS(1627), + [anon_sym_LT_LT] = ACTIONS(1627), + [anon_sym_LT_LT_DASH] = ACTIONS(1627), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), }, [1115] = { - [sym__heredoc_middle] = ACTIONS(1046), - [sym__heredoc_end] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2741), [sym_comment] = ACTIONS(52), }, [1116] = { - [anon_sym_AT] = ACTIONS(2725), + [anon_sym_RBRACE] = ACTIONS(2741), [sym_comment] = ACTIONS(52), }, [1117] = { - [sym_concatenation] = STATE(1253), - [sym_string] = STATE(1252), - [sym_simple_expansion] = STATE(1252), - [sym_expansion] = STATE(1252), - [sym_command_substitution] = STATE(1252), - [sym_process_substitution] = STATE(1252), + [anon_sym_RBRACK] = ACTIONS(2743), + [sym_comment] = ACTIONS(52), + }, + [1118] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2745), + [sym_comment] = ACTIONS(52), + }, + [1119] = { + [anon_sym_RBRACE] = ACTIONS(2745), + [sym_comment] = ACTIONS(52), + }, + [1120] = { + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2749), + [sym_comment] = ACTIONS(52), + }, + [1121] = { + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2753), + [sym_comment] = ACTIONS(52), + }, + [1122] = { + [sym__heredoc_middle] = ACTIONS(1036), + [sym__heredoc_end] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [sym_comment] = ACTIONS(52), + }, + [1123] = { + [anon_sym_AT] = ACTIONS(2755), + [sym_comment] = ACTIONS(52), + }, + [1124] = { + [sym_concatenation] = STATE(1266), + [sym_string] = STATE(1265), + [sym_simple_expansion] = STATE(1265), + [sym_expansion] = STATE(1265), + [sym_command_substitution] = STATE(1265), + [sym_process_substitution] = STATE(1265), + [anon_sym_RBRACE] = ACTIONS(2757), [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2727), + [sym_raw_string] = ACTIONS(2759), [anon_sym_DOLLAR] = ACTIONS(94), [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), [anon_sym_BQUOTE] = ACTIONS(100), [anon_sym_LT_LPAREN] = ACTIONS(102), [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2729), - [sym_comment] = ACTIONS(52), - }, - [1118] = { - [sym_file_descriptor] = ACTIONS(1951), - [sym_variable_name] = ACTIONS(1951), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_GT] = ACTIONS(2566), - [anon_sym_GT_GT] = ACTIONS(1951), - [anon_sym_AMP_GT] = ACTIONS(2566), - [anon_sym_AMP_GT_GT] = ACTIONS(1951), - [anon_sym_LT_AMP] = ACTIONS(1951), - [anon_sym_GT_AMP] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym_raw_string] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(2566), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1951), - [anon_sym_BQUOTE] = ACTIONS(1951), - [anon_sym_LT_LPAREN] = ACTIONS(1951), - [anon_sym_GT_LPAREN] = ACTIONS(1951), - [sym_word] = ACTIONS(2566), - [sym_comment] = ACTIONS(52), - }, - [1119] = { - [anon_sym_RBRACK] = ACTIONS(2731), - [sym_comment] = ACTIONS(52), - }, - [1120] = { - [anon_sym_RBRACK] = ACTIONS(2733), - [sym_comment] = ACTIONS(52), - }, - [1121] = { - [anon_sym_RBRACE] = ACTIONS(2735), - [sym_comment] = ACTIONS(52), - }, - [1122] = { - [sym__concat] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_RBRACK] = ACTIONS(2162), - [sym_comment] = ACTIONS(52), - }, - [1123] = { - [anon_sym_RBRACE] = ACTIONS(2737), - [sym_comment] = ACTIONS(52), - }, - [1124] = { - [sym__concat] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2168), + [sym_word] = ACTIONS(2761), [sym_comment] = ACTIONS(52), }, [1125] = { - [sym__concat] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_raw_string] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [anon_sym_LT_LPAREN] = ACTIONS(1599), - [anon_sym_GT_LPAREN] = ACTIONS(1599), - [sym_word] = ACTIONS(2104), + [sym__heredoc_middle] = ACTIONS(1048), + [sym__heredoc_end] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), [sym_comment] = ACTIONS(52), }, [1126] = { - [anon_sym_AT] = ACTIONS(2739), + [anon_sym_AT] = ACTIONS(2763), [sym_comment] = ACTIONS(52), }, [1127] = { - [sym__concat] = ACTIONS(1605), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [sym_raw_string] = ACTIONS(1605), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [anon_sym_LT_LPAREN] = ACTIONS(1605), - [anon_sym_GT_LPAREN] = ACTIONS(1605), - [sym_word] = ACTIONS(2108), + [sym_concatenation] = STATE(1269), + [sym_string] = STATE(1268), + [sym_simple_expansion] = STATE(1268), + [sym_expansion] = STATE(1268), + [sym_command_substitution] = STATE(1268), + [sym_process_substitution] = STATE(1268), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2765), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2767), [sym_comment] = ACTIONS(52), }, [1128] = { - [anon_sym_AT] = ACTIONS(2741), + [sym_file_descriptor] = ACTIONS(1971), + [sym_variable_name] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(2596), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(2596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [sym_word] = ACTIONS(2596), [sym_comment] = ACTIONS(52), }, [1129] = { - [anon_sym_RBRACK] = ACTIONS(2743), + [anon_sym_RBRACK] = ACTIONS(2769), [sym_comment] = ACTIONS(52), }, [1130] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_RBRACK] = ACTIONS(2771), [sym_comment] = ACTIONS(52), }, [1131] = { - [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2773), [sym_comment] = ACTIONS(52), }, [1132] = { - [anon_sym_RBRACK] = ACTIONS(2747), + [sym__concat] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_RBRACK] = ACTIONS(2186), [sym_comment] = ACTIONS(52), }, [1133] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2775), [sym_comment] = ACTIONS(52), }, [1134] = { - [anon_sym_RBRACE] = ACTIONS(2749), + [sym__concat] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_RBRACK] = ACTIONS(2192), [sym_comment] = ACTIONS(52), }, [1135] = { - [anon_sym_RBRACK] = ACTIONS(2751), + [sym__concat] = ACTIONS(1611), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym_raw_string] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [anon_sym_LT_LPAREN] = ACTIONS(1611), + [anon_sym_GT_LPAREN] = ACTIONS(1611), + [sym_word] = ACTIONS(2126), [sym_comment] = ACTIONS(52), }, [1136] = { - [anon_sym_RBRACK] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2777), [sym_comment] = ACTIONS(52), }, [1137] = { - [anon_sym_RBRACE] = ACTIONS(2755), + [sym__concat] = ACTIONS(1617), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym_raw_string] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1617), + [anon_sym_BQUOTE] = ACTIONS(1617), + [anon_sym_LT_LPAREN] = ACTIONS(1617), + [anon_sym_GT_LPAREN] = ACTIONS(1617), + [sym_word] = ACTIONS(2130), [sym_comment] = ACTIONS(52), }, [1138] = { - [sym_file_descriptor] = ACTIONS(2162), - [sym__concat] = ACTIONS(2162), - [sym_variable_name] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(2164), - [anon_sym_SEMI_SEMI] = ACTIONS(2164), - [anon_sym_PIPE_AMP] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_AMP_GT] = ACTIONS(2164), - [anon_sym_AMP_GT_GT] = ACTIONS(2164), - [anon_sym_LT_AMP] = ACTIONS(2164), - [anon_sym_GT_AMP] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_raw_string] = ACTIONS(2164), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2164), - [anon_sym_BQUOTE] = ACTIONS(2164), - [anon_sym_LT_LPAREN] = ACTIONS(2164), - [anon_sym_GT_LPAREN] = ACTIONS(2164), - [sym_word] = ACTIONS(2164), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2779), + [sym_comment] = ACTIONS(52), }, [1139] = { - [anon_sym_RBRACE] = ACTIONS(2757), + [anon_sym_RBRACK] = ACTIONS(2781), [sym_comment] = ACTIONS(52), }, [1140] = { - [sym_file_descriptor] = ACTIONS(2168), - [sym__concat] = ACTIONS(2168), - [sym_variable_name] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), - [anon_sym_PIPE_AMP] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_GT] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_AMP_GT] = ACTIONS(2170), - [anon_sym_AMP_GT_GT] = ACTIONS(2170), - [anon_sym_LT_AMP] = ACTIONS(2170), - [anon_sym_GT_AMP] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2170), - [sym_raw_string] = ACTIONS(2170), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2170), - [anon_sym_BQUOTE] = ACTIONS(2170), - [anon_sym_LT_LPAREN] = ACTIONS(2170), - [anon_sym_GT_LPAREN] = ACTIONS(2170), - [sym_word] = ACTIONS(2170), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), + [sym__concat] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym_raw_string] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1625), + [anon_sym_BQUOTE] = ACTIONS(1625), + [anon_sym_LT_LPAREN] = ACTIONS(1625), + [anon_sym_GT_LPAREN] = ACTIONS(1625), + [sym_word] = ACTIONS(2136), + [sym_comment] = ACTIONS(52), }, [1141] = { - [sym__concat] = ACTIONS(1599), - [anon_sym_SEMI_SEMI] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [sym_raw_string] = ACTIONS(1601), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1601), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [anon_sym_LT_LPAREN] = ACTIONS(1601), - [anon_sym_GT_LPAREN] = ACTIONS(1601), - [sym_word] = ACTIONS(1601), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_LF] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1601), + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2783), + [sym_comment] = ACTIONS(52), }, [1142] = { - [anon_sym_AT] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2783), [sym_comment] = ACTIONS(52), }, [1143] = { - [sym__concat] = ACTIONS(1605), - [anon_sym_SEMI_SEMI] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_raw_string] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1607), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1607), - [anon_sym_BQUOTE] = ACTIONS(1607), - [anon_sym_LT_LPAREN] = ACTIONS(1607), - [anon_sym_GT_LPAREN] = ACTIONS(1607), - [sym_word] = ACTIONS(1607), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_LF] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_RBRACK] = ACTIONS(2785), + [sym_comment] = ACTIONS(52), }, [1144] = { - [anon_sym_AT] = ACTIONS(2761), + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2787), [sym_comment] = ACTIONS(52), }, [1145] = { - [anon_sym_RBRACK] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2787), [sym_comment] = ACTIONS(52), }, [1146] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2765), + [anon_sym_RBRACK] = ACTIONS(2789), [sym_comment] = ACTIONS(52), }, [1147] = { - [anon_sym_RBRACE] = ACTIONS(2765), + [anon_sym_RBRACK] = ACTIONS(2791), [sym_comment] = ACTIONS(52), }, [1148] = { - [anon_sym_RBRACK] = ACTIONS(2767), + [anon_sym_RBRACE] = ACTIONS(2793), [sym_comment] = ACTIONS(52), }, [1149] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2769), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2186), + [sym__concat] = ACTIONS(2186), + [sym_variable_name] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_SEMI_SEMI] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2188), + [anon_sym_GT_GT] = ACTIONS(2188), + [anon_sym_AMP_GT] = ACTIONS(2188), + [anon_sym_AMP_GT_GT] = ACTIONS(2188), + [anon_sym_LT_AMP] = ACTIONS(2188), + [anon_sym_GT_AMP] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [sym_raw_string] = ACTIONS(2188), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2188), + [anon_sym_LT_LPAREN] = ACTIONS(2188), + [anon_sym_GT_LPAREN] = ACTIONS(2188), + [sym_word] = ACTIONS(2188), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), }, [1150] = { - [anon_sym_RBRACE] = ACTIONS(2769), + [anon_sym_RBRACE] = ACTIONS(2795), [sym_comment] = ACTIONS(52), }, [1151] = { + [sym_file_descriptor] = ACTIONS(2192), + [sym__concat] = ACTIONS(2192), + [sym_variable_name] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_SEMI_SEMI] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_AMP_GT] = ACTIONS(2194), + [anon_sym_AMP_GT_GT] = ACTIONS(2194), + [anon_sym_LT_AMP] = ACTIONS(2194), + [anon_sym_GT_AMP] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_raw_string] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2194), + [anon_sym_GT_LPAREN] = ACTIONS(2194), + [sym_word] = ACTIONS(2194), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + }, + [1152] = { + [sym__concat] = ACTIONS(1611), + [anon_sym_SEMI_SEMI] = ACTIONS(1613), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_raw_string] = ACTIONS(1613), + [anon_sym_DOLLAR] = ACTIONS(1613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1613), + [anon_sym_BQUOTE] = ACTIONS(1613), + [anon_sym_LT_LPAREN] = ACTIONS(1613), + [anon_sym_GT_LPAREN] = ACTIONS(1613), + [sym_word] = ACTIONS(1613), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1613), + }, + [1153] = { + [anon_sym_AT] = ACTIONS(2797), + [sym_comment] = ACTIONS(52), + }, + [1154] = { + [sym__concat] = ACTIONS(1617), + [anon_sym_SEMI_SEMI] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym_raw_string] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [anon_sym_LT_LPAREN] = ACTIONS(1619), + [anon_sym_GT_LPAREN] = ACTIONS(1619), + [sym_word] = ACTIONS(1619), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + }, + [1155] = { + [anon_sym_AT] = ACTIONS(2799), + [sym_comment] = ACTIONS(52), + }, + [1156] = { + [anon_sym_RBRACK] = ACTIONS(2801), + [sym_comment] = ACTIONS(52), + }, + [1157] = { + [sym__concat] = ACTIONS(1625), + [anon_sym_SEMI_SEMI] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_raw_string] = ACTIONS(1627), + [anon_sym_DOLLAR] = ACTIONS(1627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [anon_sym_LT_LPAREN] = ACTIONS(1627), + [anon_sym_GT_LPAREN] = ACTIONS(1627), + [sym_word] = ACTIONS(1627), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + }, + [1158] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2803), + [sym_comment] = ACTIONS(52), + }, + [1159] = { + [anon_sym_RBRACE] = ACTIONS(2803), + [sym_comment] = ACTIONS(52), + }, + [1160] = { + [anon_sym_RBRACK] = ACTIONS(2805), + [sym_comment] = ACTIONS(52), + }, + [1161] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2807), + [sym_comment] = ACTIONS(52), + }, + [1162] = { + [anon_sym_RBRACE] = ACTIONS(2807), + [sym_comment] = ACTIONS(52), + }, + [1163] = { [sym__terminated_statement] = STATE(432), [sym_for_statement] = STATE(433), [sym_while_statement] = STATE(433), @@ -26054,16 +26367,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(720), + [aux_sym_program_repeat1] = STATE(721), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2771), - [anon_sym_elif] = ACTIONS(2771), - [anon_sym_else] = ACTIONS(2771), + [anon_sym_fi] = ACTIONS(2809), + [anon_sym_elif] = ACTIONS(2809), + [anon_sym_else] = ACTIONS(2809), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -26087,44 +26400,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [1152] = { - [anon_sym_PIPE] = ACTIONS(2773), - [anon_sym_RPAREN] = ACTIONS(2773), - [anon_sym_SEMI_SEMI] = ACTIONS(2773), - [anon_sym_PIPE_AMP] = ACTIONS(2773), - [anon_sym_AMP_AMP] = ACTIONS(2773), - [anon_sym_PIPE_PIPE] = ACTIONS(2773), + [1164] = { + [anon_sym_PIPE] = ACTIONS(2811), + [anon_sym_RPAREN] = ACTIONS(2811), + [anon_sym_SEMI_SEMI] = ACTIONS(2811), + [anon_sym_PIPE_AMP] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_PIPE_PIPE] = ACTIONS(2811), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2773), - [anon_sym_LF] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_LF] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2811), }, - [1153] = { - [aux_sym_concatenation_repeat1] = STATE(974), + [1165] = { + [aux_sym_concatenation_repeat1] = STATE(983), [sym__concat] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_RPAREN] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_RPAREN] = ACTIONS(2813), [sym_comment] = ACTIONS(52), }, - [1154] = { - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_RPAREN] = ACTIONS(2775), + [1166] = { + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_RPAREN] = ACTIONS(2813), [sym_comment] = ACTIONS(52), }, - [1155] = { - [anon_sym_esac] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_raw_string] = ACTIONS(2779), - [anon_sym_DOLLAR] = ACTIONS(2777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2779), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2779), - [anon_sym_BQUOTE] = ACTIONS(2779), - [anon_sym_LT_LPAREN] = ACTIONS(2779), - [anon_sym_GT_LPAREN] = ACTIONS(2779), - [sym_word] = ACTIONS(2781), + [1167] = { + [anon_sym_esac] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_raw_string] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_BQUOTE] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2817), + [anon_sym_GT_LPAREN] = ACTIONS(2817), + [sym_word] = ACTIONS(2819), [sym_comment] = ACTIONS(52), }, - [1156] = { + [1168] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -26146,7 +26459,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(1275), + [aux_sym_program_repeat1] = STATE(1291), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -26154,7 +26467,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2783), + [anon_sym_SEMI_SEMI] = ACTIONS(2821), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -26177,7 +26490,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [1157] = { + [1169] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -26199,7 +26512,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(1276), + [aux_sym_program_repeat1] = STATE(1292), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -26207,7 +26520,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2783), + [anon_sym_SEMI_SEMI] = ACTIONS(2821), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -26230,60 +26543,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [1158] = { - [aux_sym_case_item_repeat1] = STATE(1158), - [anon_sym_PIPE] = ACTIONS(2785), - [anon_sym_RPAREN] = ACTIONS(2775), + [1170] = { + [aux_sym_case_item_repeat1] = STATE(1170), + [anon_sym_PIPE] = ACTIONS(2823), + [anon_sym_RPAREN] = ACTIONS(2813), [sym_comment] = ACTIONS(52), }, - [1159] = { - [aux_sym_concatenation_repeat1] = STATE(1159), - [sym__concat] = ACTIONS(1900), + [1171] = { + [aux_sym_concatenation_repeat1] = STATE(1171), + [sym__concat] = ACTIONS(1918), [anon_sym_PIPE] = ACTIONS(1021), [anon_sym_RPAREN] = ACTIONS(1021), [sym_comment] = ACTIONS(52), }, - [1160] = { - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_SEMI_SEMI] = ACTIONS(2788), - [anon_sym_PIPE_AMP] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [1172] = { + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_SEMI_SEMI] = ACTIONS(2826), + [anon_sym_PIPE_AMP] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_PIPE_PIPE] = ACTIONS(2826), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_LF] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), }, - [1161] = { - [anon_sym_RBRACE] = ACTIONS(2790), + [1173] = { + [anon_sym_RBRACE] = ACTIONS(2828), [sym_comment] = ACTIONS(52), }, - [1162] = { - [anon_sym_RBRACE] = ACTIONS(2792), + [1174] = { + [anon_sym_RBRACE] = ACTIONS(2830), [sym_comment] = ACTIONS(52), }, - [1163] = { - [sym__concat] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2560), - [anon_sym_SEMI_SEMI] = ACTIONS(2560), + [1175] = { + [sym__concat] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2590), + [anon_sym_SEMI_SEMI] = ACTIONS(2590), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LF] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_LF] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), }, - [1164] = { - [sym__concat] = ACTIONS(2562), - [anon_sym_in] = ACTIONS(2564), - [anon_sym_SEMI_SEMI] = ACTIONS(2564), + [1176] = { + [sym__concat] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2594), + [anon_sym_SEMI_SEMI] = ACTIONS(2594), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_LF] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_LF] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), }, - [1165] = { - [aux_sym_concatenation_repeat1] = STATE(1165), - [sym__concat] = ACTIONS(2676), + [1177] = { + [aux_sym_concatenation_repeat1] = STATE(1177), + [sym__concat] = ACTIONS(2710), [anon_sym_PIPE] = ACTIONS(1023), [anon_sym_RPAREN] = ACTIONS(1023), [anon_sym_SEMI_SEMI] = ACTIONS(1023), @@ -26295,440 +26608,467 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1023), [anon_sym_AMP] = ACTIONS(1023), }, - [1166] = { - [anon_sym_RBRACE] = ACTIONS(2794), - [sym_comment] = ACTIONS(52), - }, - [1167] = { - [anon_sym_RBRACE] = ACTIONS(2796), - [sym_comment] = ACTIONS(52), - }, - [1168] = { - [sym__concat] = ACTIONS(2558), - [anon_sym_RBRACE] = ACTIONS(2558), - [anon_sym_RBRACK] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_raw_string] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2558), - [anon_sym_LT_LPAREN] = ACTIONS(2558), - [anon_sym_GT_LPAREN] = ACTIONS(2558), - [sym_word] = ACTIONS(2560), - [sym_comment] = ACTIONS(52), - }, - [1169] = { - [sym__concat] = ACTIONS(2562), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_RBRACK] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2562), - [sym_raw_string] = ACTIONS(2562), - [anon_sym_DOLLAR] = ACTIONS(2800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2562), - [anon_sym_LT_LPAREN] = ACTIONS(2562), - [anon_sym_GT_LPAREN] = ACTIONS(2562), - [sym_word] = ACTIONS(2564), - [sym_comment] = ACTIONS(52), - }, - [1170] = { - [anon_sym_RBRACE] = ACTIONS(2802), - [sym_comment] = ACTIONS(52), - }, - [1171] = { - [anon_sym_RBRACE] = ACTIONS(2804), - [sym_comment] = ACTIONS(52), - }, - [1172] = { - [sym__concat] = ACTIONS(2558), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_raw_string] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2558), - [anon_sym_LT_LPAREN] = ACTIONS(2558), - [anon_sym_GT_LPAREN] = ACTIONS(2558), - [sym_word] = ACTIONS(2560), - [sym_comment] = ACTIONS(52), - }, - [1173] = { - [sym__concat] = ACTIONS(2562), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2562), - [sym_raw_string] = ACTIONS(2562), - [anon_sym_DOLLAR] = ACTIONS(2800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2562), - [anon_sym_LT_LPAREN] = ACTIONS(2562), - [anon_sym_GT_LPAREN] = ACTIONS(2562), - [sym_word] = ACTIONS(2564), - [sym_comment] = ACTIONS(52), - }, - [1174] = { - [anon_sym_RBRACE] = ACTIONS(2806), - [sym_comment] = ACTIONS(52), - }, - [1175] = { - [anon_sym_RBRACE] = ACTIONS(2808), - [sym_comment] = ACTIONS(52), - }, - [1176] = { - [sym_file_descriptor] = ACTIONS(2558), - [sym__concat] = ACTIONS(2558), - [sym_variable_name] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_AMP_GT] = ACTIONS(2798), - [anon_sym_AMP_GT_GT] = ACTIONS(2558), - [anon_sym_LT_AMP] = ACTIONS(2558), - [anon_sym_GT_AMP] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_raw_string] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2558), - [anon_sym_LT_LPAREN] = ACTIONS(2558), - [anon_sym_GT_LPAREN] = ACTIONS(2558), - [sym_word] = ACTIONS(2798), - [sym_comment] = ACTIONS(52), - }, - [1177] = { - [sym_file_descriptor] = ACTIONS(2562), - [sym__concat] = ACTIONS(2562), - [sym_variable_name] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_AMP_GT] = ACTIONS(2800), - [anon_sym_AMP_GT_GT] = ACTIONS(2562), - [anon_sym_LT_AMP] = ACTIONS(2562), - [anon_sym_GT_AMP] = ACTIONS(2562), - [anon_sym_DQUOTE] = ACTIONS(2562), - [sym_raw_string] = ACTIONS(2562), - [anon_sym_DOLLAR] = ACTIONS(2800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2562), - [anon_sym_LT_LPAREN] = ACTIONS(2562), - [anon_sym_GT_LPAREN] = ACTIONS(2562), - [sym_word] = ACTIONS(2800), - [sym_comment] = ACTIONS(52), - }, [1178] = { - [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2832), [sym_comment] = ACTIONS(52), }, [1179] = { - [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_RBRACE] = ACTIONS(2834), [sym_comment] = ACTIONS(52), }, [1180] = { - [anon_sym_DQUOTE] = ACTIONS(2560), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2798), - [anon_sym_DOLLAR] = ACTIONS(2560), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2560), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2560), - [anon_sym_BQUOTE] = ACTIONS(2560), - [sym_comment] = ACTIONS(150), + [sym__concat] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_RBRACK] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_raw_string] = ACTIONS(2588), + [anon_sym_DOLLAR] = ACTIONS(2836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2588), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2588), + [anon_sym_BQUOTE] = ACTIONS(2588), + [anon_sym_LT_LPAREN] = ACTIONS(2588), + [anon_sym_GT_LPAREN] = ACTIONS(2588), + [sym_word] = ACTIONS(2590), + [sym_comment] = ACTIONS(52), }, [1181] = { - [anon_sym_DQUOTE] = ACTIONS(2564), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), - [anon_sym_BQUOTE] = ACTIONS(2564), - [sym_comment] = ACTIONS(150), + [sym__concat] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_RBRACK] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2592), + [sym_raw_string] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LT_LPAREN] = ACTIONS(2592), + [anon_sym_GT_LPAREN] = ACTIONS(2592), + [sym_word] = ACTIONS(2594), + [sym_comment] = ACTIONS(52), }, [1182] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(2816), - [anon_sym_LT_AMP] = ACTIONS(2816), - [anon_sym_GT_AMP] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2816), - [anon_sym_BQUOTE] = ACTIONS(2816), - [anon_sym_LT_LPAREN] = ACTIONS(2816), - [anon_sym_GT_LPAREN] = ACTIONS(2816), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_RBRACE] = ACTIONS(2840), + [sym_comment] = ACTIONS(52), }, [1183] = { - [sym_file_descriptor] = ACTIONS(2818), - [sym__concat] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_SEMI_SEMI] = ACTIONS(2820), - [anon_sym_PIPE_AMP] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_GT] = ACTIONS(2820), - [anon_sym_AMP_GT_GT] = ACTIONS(2820), - [anon_sym_LT_AMP] = ACTIONS(2820), - [anon_sym_GT_AMP] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_LT_LT_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [sym_raw_string] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), - [anon_sym_BQUOTE] = ACTIONS(2820), - [anon_sym_LT_LPAREN] = ACTIONS(2820), - [anon_sym_GT_LPAREN] = ACTIONS(2820), - [sym_word] = ACTIONS(2820), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2842), + [sym_comment] = ACTIONS(52), }, [1184] = { - [sym_file_descriptor] = ACTIONS(1599), - [sym__concat] = ACTIONS(1599), - [sym_variable_name] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_PIPE_AMP] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(1599), - [anon_sym_LT_AMP] = ACTIONS(1599), - [anon_sym_GT_AMP] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_raw_string] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [anon_sym_LT_LPAREN] = ACTIONS(1599), - [anon_sym_GT_LPAREN] = ACTIONS(1599), - [sym_word] = ACTIONS(1601), + [sym__concat] = ACTIONS(2588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_raw_string] = ACTIONS(2588), + [anon_sym_DOLLAR] = ACTIONS(2836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2588), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2588), + [anon_sym_BQUOTE] = ACTIONS(2588), + [anon_sym_LT_LPAREN] = ACTIONS(2588), + [anon_sym_GT_LPAREN] = ACTIONS(2588), + [sym_word] = ACTIONS(2590), [sym_comment] = ACTIONS(52), }, [1185] = { - [anon_sym_AT] = ACTIONS(2822), + [sym__concat] = ACTIONS(2592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2592), + [sym_raw_string] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LT_LPAREN] = ACTIONS(2592), + [anon_sym_GT_LPAREN] = ACTIONS(2592), + [sym_word] = ACTIONS(2594), [sym_comment] = ACTIONS(52), }, [1186] = { - [sym_file_descriptor] = ACTIONS(1605), - [sym__concat] = ACTIONS(1605), - [sym_variable_name] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_PIPE_AMP] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_AMP_GT] = ACTIONS(2108), - [anon_sym_AMP_GT_GT] = ACTIONS(1605), - [anon_sym_LT_AMP] = ACTIONS(1605), - [anon_sym_GT_AMP] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [sym_raw_string] = ACTIONS(1605), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [anon_sym_LT_LPAREN] = ACTIONS(1605), - [anon_sym_GT_LPAREN] = ACTIONS(1605), - [sym_word] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(2844), [sym_comment] = ACTIONS(52), }, [1187] = { - [anon_sym_AT] = ACTIONS(2824), + [anon_sym_RBRACE] = ACTIONS(2846), [sym_comment] = ACTIONS(52), }, [1188] = { - [anon_sym_RBRACK] = ACTIONS(2826), + [sym_file_descriptor] = ACTIONS(2588), + [sym__concat] = ACTIONS(2588), + [sym_variable_name] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_GT] = ACTIONS(2836), + [anon_sym_GT_GT] = ACTIONS(2588), + [anon_sym_AMP_GT] = ACTIONS(2836), + [anon_sym_AMP_GT_GT] = ACTIONS(2588), + [anon_sym_LT_AMP] = ACTIONS(2588), + [anon_sym_GT_AMP] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_raw_string] = ACTIONS(2588), + [anon_sym_DOLLAR] = ACTIONS(2836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2588), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2588), + [anon_sym_BQUOTE] = ACTIONS(2588), + [anon_sym_LT_LPAREN] = ACTIONS(2588), + [anon_sym_GT_LPAREN] = ACTIONS(2588), + [sym_word] = ACTIONS(2836), [sym_comment] = ACTIONS(52), }, [1189] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2828), + [sym_file_descriptor] = ACTIONS(2592), + [sym__concat] = ACTIONS(2592), + [sym_variable_name] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2592), + [anon_sym_AMP_GT] = ACTIONS(2838), + [anon_sym_AMP_GT_GT] = ACTIONS(2592), + [anon_sym_LT_AMP] = ACTIONS(2592), + [anon_sym_GT_AMP] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [sym_raw_string] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LT_LPAREN] = ACTIONS(2592), + [anon_sym_GT_LPAREN] = ACTIONS(2592), + [sym_word] = ACTIONS(2838), [sym_comment] = ACTIONS(52), }, [1190] = { - [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2848), [sym_comment] = ACTIONS(52), }, [1191] = { - [anon_sym_RBRACK] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2850), [sym_comment] = ACTIONS(52), }, [1192] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2832), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(2590), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2836), + [anon_sym_DOLLAR] = ACTIONS(2590), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2590), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2590), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_comment] = ACTIONS(150), }, [1193] = { - [anon_sym_RBRACE] = ACTIONS(2832), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(2594), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2838), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2594), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_comment] = ACTIONS(150), }, [1194] = { - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_PIPE_AMP] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_BQUOTE] = ACTIONS(2836), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2852), + [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), + [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_DQUOTE] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR] = 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_word] = ACTIONS(2854), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), }, [1195] = { - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_PIPE_AMP] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_BQUOTE] = ACTIONS(2840), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2856), + [sym__concat] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_RPAREN] = ACTIONS(2858), + [anon_sym_SEMI_SEMI] = ACTIONS(2858), + [anon_sym_PIPE_AMP] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_GT] = ACTIONS(2858), + [anon_sym_AMP_GT_GT] = ACTIONS(2858), + [anon_sym_LT_AMP] = ACTIONS(2858), + [anon_sym_GT_AMP] = ACTIONS(2858), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_LT_LT_DASH] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_raw_string] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2858), + [anon_sym_BQUOTE] = ACTIONS(2858), + [anon_sym_LT_LPAREN] = ACTIONS(2858), + [anon_sym_GT_LPAREN] = ACTIONS(2858), + [sym_word] = ACTIONS(2858), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), }, [1196] = { - [anon_sym_fi] = ACTIONS(2842), + [sym_file_descriptor] = ACTIONS(1611), + [sym__concat] = ACTIONS(1611), + [sym_variable_name] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_PIPE_AMP] = ACTIONS(1611), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_AMP_GT] = ACTIONS(2126), + [anon_sym_AMP_GT_GT] = ACTIONS(1611), + [anon_sym_LT_AMP] = ACTIONS(1611), + [anon_sym_GT_AMP] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym_raw_string] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [anon_sym_LT_LPAREN] = ACTIONS(1611), + [anon_sym_GT_LPAREN] = ACTIONS(1611), + [sym_word] = ACTIONS(1613), [sym_comment] = ACTIONS(52), }, [1197] = { - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_RPAREN] = ACTIONS(2846), - [anon_sym_PIPE_AMP] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BQUOTE] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2860), [sym_comment] = ACTIONS(52), }, [1198] = { - [sym_case_item] = STATE(725), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), - [aux_sym_case_statement_repeat1] = STATE(976), - [anon_sym_esac] = ACTIONS(2848), + [sym_file_descriptor] = ACTIONS(1617), + [sym__concat] = ACTIONS(1617), + [sym_variable_name] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_PIPE_AMP] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1617), + [anon_sym_PIPE_PIPE] = ACTIONS(2130), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1617), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1617), + [anon_sym_LT_AMP] = ACTIONS(1617), + [anon_sym_GT_AMP] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym_raw_string] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1617), + [anon_sym_BQUOTE] = ACTIONS(1617), + [anon_sym_LT_LPAREN] = ACTIONS(1617), + [anon_sym_GT_LPAREN] = ACTIONS(1617), + [sym_word] = ACTIONS(1619), + [sym_comment] = ACTIONS(52), + }, + [1199] = { + [anon_sym_AT] = ACTIONS(2862), + [sym_comment] = ACTIONS(52), + }, + [1200] = { + [anon_sym_RBRACK] = ACTIONS(2864), + [sym_comment] = ACTIONS(52), + }, + [1201] = { + [sym_file_descriptor] = ACTIONS(1625), + [sym__concat] = ACTIONS(1625), + [sym_variable_name] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_PIPE_AMP] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2136), + [anon_sym_GT] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(1625), + [anon_sym_AMP_GT] = ACTIONS(2136), + [anon_sym_AMP_GT_GT] = ACTIONS(1625), + [anon_sym_LT_AMP] = ACTIONS(1625), + [anon_sym_GT_AMP] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym_raw_string] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1625), + [anon_sym_BQUOTE] = ACTIONS(1625), + [anon_sym_LT_LPAREN] = ACTIONS(1625), + [anon_sym_GT_LPAREN] = ACTIONS(1625), + [sym_word] = ACTIONS(1627), + [sym_comment] = ACTIONS(52), + }, + [1202] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2866), + [sym_comment] = ACTIONS(52), + }, + [1203] = { + [anon_sym_RBRACE] = ACTIONS(2866), + [sym_comment] = ACTIONS(52), + }, + [1204] = { + [anon_sym_RBRACK] = ACTIONS(2868), + [sym_comment] = ACTIONS(52), + }, + [1205] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2870), + [sym_comment] = ACTIONS(52), + }, + [1206] = { + [anon_sym_RBRACE] = ACTIONS(2870), + [sym_comment] = ACTIONS(52), + }, + [1207] = { + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2874), + [anon_sym_PIPE_AMP] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_PIPE_PIPE] = ACTIONS(2874), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_comment] = ACTIONS(52), + }, + [1208] = { + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2878), + [anon_sym_PIPE_AMP] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), + [sym_comment] = ACTIONS(52), + }, + [1209] = { + [anon_sym_fi] = ACTIONS(2880), + [sym_comment] = ACTIONS(52), + }, + [1210] = { + [anon_sym_PIPE] = ACTIONS(2882), + [anon_sym_RPAREN] = ACTIONS(2884), + [anon_sym_PIPE_AMP] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BQUOTE] = ACTIONS(2884), + [sym_comment] = ACTIONS(52), + }, + [1211] = { + [sym_case_item] = STATE(726), + [sym_concatenation] = STATE(727), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [aux_sym_case_statement_repeat1] = STATE(985), + [anon_sym_esac] = ACTIONS(2886), [anon_sym_DQUOTE] = ACTIONS(270), - [sym_raw_string] = ACTIONS(1440), + [sym_raw_string] = ACTIONS(1442), [anon_sym_DOLLAR] = ACTIONS(274), [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), [anon_sym_BQUOTE] = ACTIONS(280), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), - [sym_word] = ACTIONS(1442), + [sym_word] = ACTIONS(1444), [sym_comment] = ACTIONS(52), }, - [1199] = { - [anon_sym_PIPE] = ACTIONS(2850), - [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_BQUOTE] = ACTIONS(2852), + [1212] = { + [anon_sym_PIPE] = ACTIONS(2888), + [anon_sym_RPAREN] = ACTIONS(2890), + [anon_sym_PIPE_AMP] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_BQUOTE] = ACTIONS(2890), [sym_comment] = ACTIONS(52), }, - [1200] = { - [anon_sym_RBRACE] = ACTIONS(2854), + [1213] = { + [anon_sym_RBRACE] = ACTIONS(2892), [sym_comment] = ACTIONS(52), }, - [1201] = { - [anon_sym_RBRACE] = ACTIONS(2856), + [1214] = { + [anon_sym_RBRACE] = ACTIONS(2894), [sym_comment] = ACTIONS(52), }, - [1202] = { - [sym_file_descriptor] = ACTIONS(2558), - [sym__concat] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2558), - [anon_sym_PIPE_AMP] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_AMP_GT] = ACTIONS(2798), - [anon_sym_AMP_GT_GT] = ACTIONS(2558), - [anon_sym_LT_AMP] = ACTIONS(2558), - [anon_sym_GT_AMP] = ACTIONS(2558), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_LT_LT_DASH] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_raw_string] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2558), - [anon_sym_LT_LPAREN] = ACTIONS(2558), - [anon_sym_GT_LPAREN] = ACTIONS(2558), - [sym_word] = ACTIONS(2560), + [1215] = { + [sym_file_descriptor] = ACTIONS(2588), + [sym__concat] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_PIPE_AMP] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_GT] = ACTIONS(2836), + [anon_sym_GT_GT] = ACTIONS(2588), + [anon_sym_AMP_GT] = ACTIONS(2836), + [anon_sym_AMP_GT_GT] = ACTIONS(2588), + [anon_sym_LT_AMP] = ACTIONS(2588), + [anon_sym_GT_AMP] = ACTIONS(2588), + [anon_sym_LT_LT] = ACTIONS(2836), + [anon_sym_LT_LT_DASH] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_raw_string] = ACTIONS(2588), + [anon_sym_DOLLAR] = ACTIONS(2836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2588), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2588), + [anon_sym_BQUOTE] = ACTIONS(2588), + [anon_sym_LT_LPAREN] = ACTIONS(2588), + [anon_sym_GT_LPAREN] = ACTIONS(2588), + [sym_word] = ACTIONS(2590), [sym_comment] = ACTIONS(52), }, - [1203] = { - [sym_file_descriptor] = ACTIONS(2562), - [sym__concat] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_PIPE_AMP] = ACTIONS(2562), - [anon_sym_AMP_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_AMP_GT] = ACTIONS(2800), - [anon_sym_AMP_GT_GT] = ACTIONS(2562), - [anon_sym_LT_AMP] = ACTIONS(2562), - [anon_sym_GT_AMP] = ACTIONS(2562), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_LT_LT_DASH] = ACTIONS(2562), - [anon_sym_DQUOTE] = ACTIONS(2562), - [sym_raw_string] = ACTIONS(2562), - [anon_sym_DOLLAR] = ACTIONS(2800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2562), - [anon_sym_LT_LPAREN] = ACTIONS(2562), - [anon_sym_GT_LPAREN] = ACTIONS(2562), - [sym_word] = ACTIONS(2564), + [1216] = { + [sym_file_descriptor] = ACTIONS(2592), + [sym__concat] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_PIPE_AMP] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE_PIPE] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2592), + [anon_sym_AMP_GT] = ACTIONS(2838), + [anon_sym_AMP_GT_GT] = ACTIONS(2592), + [anon_sym_LT_AMP] = ACTIONS(2592), + [anon_sym_GT_AMP] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(2838), + [anon_sym_LT_LT_DASH] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [sym_raw_string] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LT_LPAREN] = ACTIONS(2592), + [anon_sym_GT_LPAREN] = ACTIONS(2592), + [sym_word] = ACTIONS(2594), [sym_comment] = ACTIONS(52), }, - [1204] = { + [1217] = { [sym__concat] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1502), [anon_sym_RPAREN] = ACTIONS(1000), [anon_sym_PIPE_AMP] = ACTIONS(1000), [anon_sym_AMP_AMP] = ACTIONS(1000), @@ -26736,9 +27076,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1000), [sym_comment] = ACTIONS(52), }, - [1205] = { + [1218] = { [sym__concat] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), @@ -26746,29 +27086,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1021), [sym_comment] = ACTIONS(52), }, - [1206] = { - [aux_sym_concatenation_repeat1] = STATE(1206), - [sym__concat] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(1500), + [1219] = { + [aux_sym_concatenation_repeat1] = STATE(1219), + [sym__concat] = ACTIONS(2896), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), [anon_sym_PIPE_PIPE] = ACTIONS(1021), [sym_comment] = ACTIONS(52), }, - [1207] = { - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2863), + [1220] = { + [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2901), [sym_comment] = ACTIONS(52), }, - [1208] = { - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2867), + [1221] = { + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2905), [sym_comment] = ACTIONS(52), }, - [1209] = { + [1222] = { [sym__concat] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1517), [anon_sym_RPAREN] = ACTIONS(1036), [anon_sym_PIPE_AMP] = ACTIONS(1036), [anon_sym_AMP_AMP] = ACTIONS(1036), @@ -26776,540 +27116,582 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1036), [sym_comment] = ACTIONS(52), }, - [1210] = { - [anon_sym_AT] = ACTIONS(2869), - [sym_comment] = ACTIONS(52), - }, - [1211] = { - [sym_concatenation] = STATE(1303), - [sym_string] = STATE(1302), - [sym_simple_expansion] = STATE(1302), - [sym_expansion] = STATE(1302), - [sym_command_substitution] = STATE(1302), - [sym_process_substitution] = STATE(1302), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2871), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2873), - [sym_comment] = ACTIONS(52), - }, - [1212] = { - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_PIPE_AMP] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_BQUOTE] = ACTIONS(1046), - [sym_comment] = ACTIONS(52), - }, - [1213] = { - [anon_sym_AT] = ACTIONS(2875), - [sym_comment] = ACTIONS(52), - }, - [1214] = { - [sym_concatenation] = STATE(1306), - [sym_string] = STATE(1305), - [sym_simple_expansion] = STATE(1305), - [sym_expansion] = STATE(1305), - [sym_command_substitution] = STATE(1305), - [sym_process_substitution] = STATE(1305), - [anon_sym_DQUOTE] = ACTIONS(90), - [sym_raw_string] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(94), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), - [anon_sym_BQUOTE] = ACTIONS(100), - [anon_sym_LT_LPAREN] = ACTIONS(102), - [anon_sym_GT_LPAREN] = ACTIONS(102), - [sym_word] = ACTIONS(2879), - [sym_comment] = ACTIONS(52), - }, - [1215] = { - [sym__concat] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), - [sym_comment] = ACTIONS(52), - }, - [1216] = { - [sym__concat] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_RPAREN] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [sym_comment] = ACTIONS(52), - }, - [1217] = { - [sym_file_descriptor] = ACTIONS(1599), - [sym__concat] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_PIPE_AMP] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(1599), - [anon_sym_LT_AMP] = ACTIONS(1599), - [anon_sym_GT_AMP] = ACTIONS(1599), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [sym_comment] = ACTIONS(52), - }, - [1218] = { - [anon_sym_AT] = ACTIONS(2881), - [sym_comment] = ACTIONS(52), - }, - [1219] = { - [sym_file_descriptor] = ACTIONS(1605), - [sym__concat] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_PIPE_AMP] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_PIPE_PIPE] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_AMP_GT] = ACTIONS(2108), - [anon_sym_AMP_GT_GT] = ACTIONS(1605), - [anon_sym_LT_AMP] = ACTIONS(1605), - [anon_sym_GT_AMP] = ACTIONS(1605), - [anon_sym_LT_LT] = ACTIONS(2108), - [anon_sym_LT_LT_DASH] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [sym_comment] = ACTIONS(52), - }, - [1220] = { - [anon_sym_AT] = ACTIONS(2883), - [sym_comment] = ACTIONS(52), - }, - [1221] = { - [anon_sym_RBRACK] = ACTIONS(2885), - [sym_comment] = ACTIONS(52), - }, - [1222] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2887), - [sym_comment] = ACTIONS(52), - }, [1223] = { - [anon_sym_RBRACE] = ACTIONS(2887), + [anon_sym_AT] = ACTIONS(2907), [sym_comment] = ACTIONS(52), }, [1224] = { - [anon_sym_RBRACK] = ACTIONS(2889), + [sym_concatenation] = STATE(1320), + [sym_string] = STATE(1319), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1319), + [sym_process_substitution] = STATE(1319), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2911), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2913), [sym_comment] = ACTIONS(52), }, [1225] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2891), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_PIPE_AMP] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), [sym_comment] = ACTIONS(52), }, [1226] = { - [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym_AT] = ACTIONS(2915), [sym_comment] = ACTIONS(52), }, [1227] = { - [aux_sym_concatenation_repeat1] = STATE(1227), - [sym__concat] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(1500), + [sym_concatenation] = STATE(1323), + [sym_string] = STATE(1322), + [sym_simple_expansion] = STATE(1322), + [sym_expansion] = STATE(1322), + [sym_command_substitution] = STATE(1322), + [sym_process_substitution] = STATE(1322), + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(2917), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_word] = ACTIONS(2919), + [sym_comment] = ACTIONS(52), + }, + [1228] = { + [sym__concat] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_PIPE_AMP] = ACTIONS(1138), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE_PIPE] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [sym_comment] = ACTIONS(52), + }, + [1229] = { + [sym__concat] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_PIPE_AMP] = ACTIONS(1194), + [anon_sym_AMP_AMP] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(52), + }, + [1230] = { + [sym_file_descriptor] = ACTIONS(1611), + [sym__concat] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_PIPE_AMP] = ACTIONS(1611), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_AMP_GT] = ACTIONS(2126), + [anon_sym_AMP_GT_GT] = ACTIONS(1611), + [anon_sym_LT_AMP] = ACTIONS(1611), + [anon_sym_GT_AMP] = ACTIONS(1611), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_LT_LT_DASH] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_comment] = ACTIONS(52), + }, + [1231] = { + [anon_sym_AT] = ACTIONS(2921), + [sym_comment] = ACTIONS(52), + }, + [1232] = { + [sym_file_descriptor] = ACTIONS(1617), + [sym__concat] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_PIPE_AMP] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1617), + [anon_sym_PIPE_PIPE] = ACTIONS(1617), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1617), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1617), + [anon_sym_LT_AMP] = ACTIONS(1617), + [anon_sym_GT_AMP] = ACTIONS(1617), + [anon_sym_LT_LT] = ACTIONS(2130), + [anon_sym_LT_LT_DASH] = ACTIONS(1617), + [anon_sym_BQUOTE] = ACTIONS(1617), + [sym_comment] = ACTIONS(52), + }, + [1233] = { + [anon_sym_AT] = ACTIONS(2923), + [sym_comment] = ACTIONS(52), + }, + [1234] = { + [anon_sym_RBRACK] = ACTIONS(2925), + [sym_comment] = ACTIONS(52), + }, + [1235] = { + [sym_file_descriptor] = ACTIONS(1625), + [sym__concat] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_PIPE_AMP] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(2136), + [anon_sym_GT] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(1625), + [anon_sym_AMP_GT] = ACTIONS(2136), + [anon_sym_AMP_GT_GT] = ACTIONS(1625), + [anon_sym_LT_AMP] = ACTIONS(1625), + [anon_sym_GT_AMP] = ACTIONS(1625), + [anon_sym_LT_LT] = ACTIONS(2136), + [anon_sym_LT_LT_DASH] = ACTIONS(1625), + [anon_sym_BQUOTE] = ACTIONS(1625), + [sym_comment] = ACTIONS(52), + }, + [1236] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2927), + [sym_comment] = ACTIONS(52), + }, + [1237] = { + [anon_sym_RBRACE] = ACTIONS(2927), + [sym_comment] = ACTIONS(52), + }, + [1238] = { + [anon_sym_RBRACK] = ACTIONS(2929), + [sym_comment] = ACTIONS(52), + }, + [1239] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2931), + [sym_comment] = ACTIONS(52), + }, + [1240] = { + [anon_sym_RBRACE] = ACTIONS(2931), + [sym_comment] = ACTIONS(52), + }, + [1241] = { + [aux_sym_concatenation_repeat1] = STATE(1241), + [sym__concat] = ACTIONS(2896), + [anon_sym_PIPE] = ACTIONS(1504), [anon_sym_PIPE_AMP] = ACTIONS(1021), [anon_sym_AMP_AMP] = ACTIONS(1021), [anon_sym_PIPE_PIPE] = ACTIONS(1021), [anon_sym_BQUOTE] = ACTIONS(1021), [sym_comment] = ACTIONS(52), }, - [1228] = { - [sym__concat] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_SEMI_SEMI] = ACTIONS(1601), - [anon_sym_PIPE_AMP] = ACTIONS(1601), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_PIPE_PIPE] = ACTIONS(1601), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_LF] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1601), - }, - [1229] = { - [anon_sym_AT] = ACTIONS(2893), - [sym_comment] = ACTIONS(52), - }, - [1230] = { - [sym__concat] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_SEMI_SEMI] = ACTIONS(1607), - [anon_sym_PIPE_AMP] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_PIPE_PIPE] = ACTIONS(1607), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_LF] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - }, - [1231] = { - [anon_sym_AT] = ACTIONS(2895), - [sym_comment] = ACTIONS(52), - }, - [1232] = { - [anon_sym_RBRACK] = ACTIONS(2897), - [sym_comment] = ACTIONS(52), - }, - [1233] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2899), - [sym_comment] = ACTIONS(52), - }, - [1234] = { - [anon_sym_RBRACE] = ACTIONS(2899), - [sym_comment] = ACTIONS(52), - }, - [1235] = { - [anon_sym_RBRACK] = ACTIONS(2901), - [sym_comment] = ACTIONS(52), - }, - [1236] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2903), - [sym_comment] = ACTIONS(52), - }, - [1237] = { - [anon_sym_RBRACE] = ACTIONS(2903), - [sym_comment] = ACTIONS(52), - }, - [1238] = { - [anon_sym_RBRACK] = ACTIONS(2905), - [sym_comment] = ACTIONS(52), - }, - [1239] = { - [anon_sym_RBRACK] = ACTIONS(2907), - [sym_comment] = ACTIONS(52), - }, - [1240] = { - [anon_sym_RBRACE] = ACTIONS(2909), - [sym_comment] = ACTIONS(52), - }, - [1241] = { - [sym_file_descriptor] = ACTIONS(2162), - [sym__concat] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(2164), - [anon_sym_SEMI_SEMI] = ACTIONS(2164), - [anon_sym_PIPE_AMP] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_AMP_GT] = ACTIONS(2164), - [anon_sym_AMP_GT_GT] = ACTIONS(2164), - [anon_sym_LT_AMP] = ACTIONS(2164), - [anon_sym_GT_AMP] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LT_LT_DASH] = ACTIONS(2164), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - }, [1242] = { - [anon_sym_RBRACE] = ACTIONS(2911), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(1613), + [anon_sym_SEMI_SEMI] = ACTIONS(1613), + [anon_sym_PIPE_AMP] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1613), + [anon_sym_PIPE_PIPE] = ACTIONS(1613), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1613), }, [1243] = { - [sym_file_descriptor] = ACTIONS(2168), - [sym__concat] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), - [anon_sym_PIPE_AMP] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_GT] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_AMP_GT] = ACTIONS(2170), - [anon_sym_AMP_GT_GT] = ACTIONS(2170), - [anon_sym_LT_AMP] = ACTIONS(2170), - [anon_sym_GT_AMP] = ACTIONS(2170), - [anon_sym_LT_LT] = ACTIONS(2170), - [anon_sym_LT_LT_DASH] = ACTIONS(2170), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - }, - [1244] = { - [sym__heredoc_middle] = ACTIONS(1599), - [sym__heredoc_end] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1599), + [anon_sym_AT] = ACTIONS(2933), [sym_comment] = ACTIONS(52), }, + [1244] = { + [sym__concat] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_SEMI_SEMI] = ACTIONS(1619), + [anon_sym_PIPE_AMP] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_PIPE_PIPE] = ACTIONS(1619), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_LF] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + }, [1245] = { - [anon_sym_AT] = ACTIONS(2913), + [anon_sym_AT] = ACTIONS(2935), [sym_comment] = ACTIONS(52), }, [1246] = { - [sym__heredoc_middle] = ACTIONS(1605), - [sym__heredoc_end] = ACTIONS(1605), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1605), + [anon_sym_RBRACK] = ACTIONS(2937), [sym_comment] = ACTIONS(52), }, [1247] = { - [anon_sym_AT] = ACTIONS(2915), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1627), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_SEMI_SEMI] = ACTIONS(1627), + [anon_sym_PIPE_AMP] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_LF] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), }, [1248] = { - [anon_sym_RBRACK] = ACTIONS(2917), - [sym_comment] = ACTIONS(52), - }, - [1249] = { - [aux_sym_concatenation_repeat1] = STATE(793), + [aux_sym_concatenation_repeat1] = STATE(799), [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2919), - [sym_comment] = ACTIONS(52), - }, - [1250] = { - [anon_sym_RBRACE] = ACTIONS(2919), - [sym_comment] = ACTIONS(52), - }, - [1251] = { - [anon_sym_RBRACK] = ACTIONS(2921), - [sym_comment] = ACTIONS(52), - }, - [1252] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2923), - [sym_comment] = ACTIONS(52), - }, - [1253] = { - [anon_sym_RBRACE] = ACTIONS(2923), - [sym_comment] = ACTIONS(52), - }, - [1254] = { - [anon_sym_RBRACE] = ACTIONS(2925), - [sym_comment] = ACTIONS(52), - }, - [1255] = { - [anon_sym_RBRACE] = ACTIONS(2927), - [sym_comment] = ACTIONS(52), - }, - [1256] = { - [sym__concat] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_RPAREN] = ACTIONS(2558), - [anon_sym_RBRACK] = ACTIONS(2558), - [sym_comment] = ACTIONS(52), - }, - [1257] = { - [sym__concat] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_RBRACK] = ACTIONS(2562), - [sym_comment] = ACTIONS(52), - }, - [1258] = { - [anon_sym_RBRACK] = ACTIONS(2929), - [sym_comment] = ACTIONS(52), - }, - [1259] = { - [anon_sym_RBRACK] = ACTIONS(2931), - [sym_comment] = ACTIONS(52), - }, - [1260] = { - [anon_sym_RBRACE] = ACTIONS(2933), - [sym_comment] = ACTIONS(52), - }, - [1261] = { - [sym__concat] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_DQUOTE] = ACTIONS(2162), - [sym_raw_string] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(2524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2162), - [anon_sym_BQUOTE] = ACTIONS(2162), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_word] = ACTIONS(2524), - [sym_comment] = ACTIONS(52), - }, - [1262] = { - [anon_sym_RBRACE] = ACTIONS(2935), - [sym_comment] = ACTIONS(52), - }, - [1263] = { - [sym__concat] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [sym_raw_string] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_LT_LPAREN] = ACTIONS(2168), - [anon_sym_GT_LPAREN] = ACTIONS(2168), - [sym_word] = ACTIONS(2528), - [sym_comment] = ACTIONS(52), - }, - [1264] = { - [anon_sym_RBRACE] = ACTIONS(2937), - [sym_comment] = ACTIONS(52), - }, - [1265] = { [anon_sym_RBRACE] = ACTIONS(2939), [sym_comment] = ACTIONS(52), }, - [1266] = { - [sym_file_descriptor] = ACTIONS(2558), - [sym__concat] = ACTIONS(2558), - [sym_variable_name] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_SEMI_SEMI] = ACTIONS(2560), - [anon_sym_PIPE_AMP] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2560), - [anon_sym_AMP_GT] = ACTIONS(2560), - [anon_sym_AMP_GT_GT] = ACTIONS(2560), - [anon_sym_LT_AMP] = ACTIONS(2560), - [anon_sym_GT_AMP] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [sym_raw_string] = ACTIONS(2560), - [anon_sym_DOLLAR] = ACTIONS(2560), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2560), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2560), - [anon_sym_BQUOTE] = ACTIONS(2560), - [anon_sym_LT_LPAREN] = ACTIONS(2560), - [anon_sym_GT_LPAREN] = ACTIONS(2560), - [sym_word] = ACTIONS(2560), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LF] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2560), + [1249] = { + [anon_sym_RBRACE] = ACTIONS(2939), + [sym_comment] = ACTIONS(52), }, - [1267] = { - [sym_file_descriptor] = ACTIONS(2562), - [sym__concat] = ACTIONS(2562), - [sym_variable_name] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2564), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_SEMI_SEMI] = ACTIONS(2564), - [anon_sym_PIPE_AMP] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2564), - [anon_sym_AMP_GT] = ACTIONS(2564), - [anon_sym_AMP_GT_GT] = ACTIONS(2564), - [anon_sym_LT_AMP] = ACTIONS(2564), - [anon_sym_GT_AMP] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [sym_raw_string] = ACTIONS(2564), - [anon_sym_DOLLAR] = ACTIONS(2564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), - [anon_sym_BQUOTE] = ACTIONS(2564), - [anon_sym_LT_LPAREN] = ACTIONS(2564), - [anon_sym_GT_LPAREN] = ACTIONS(2564), - [sym_word] = ACTIONS(2564), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_LF] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2564), - }, - [1268] = { + [1250] = { [anon_sym_RBRACK] = ACTIONS(2941), [sym_comment] = ACTIONS(52), }, + [1251] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2943), + [sym_comment] = ACTIONS(52), + }, + [1252] = { + [anon_sym_RBRACE] = ACTIONS(2943), + [sym_comment] = ACTIONS(52), + }, + [1253] = { + [anon_sym_RBRACK] = ACTIONS(2945), + [sym_comment] = ACTIONS(52), + }, + [1254] = { + [anon_sym_RBRACK] = ACTIONS(2947), + [sym_comment] = ACTIONS(52), + }, + [1255] = { + [anon_sym_RBRACE] = ACTIONS(2949), + [sym_comment] = ACTIONS(52), + }, + [1256] = { + [sym_file_descriptor] = ACTIONS(2186), + [sym__concat] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_SEMI_SEMI] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2188), + [anon_sym_GT_GT] = ACTIONS(2188), + [anon_sym_AMP_GT] = ACTIONS(2188), + [anon_sym_AMP_GT_GT] = ACTIONS(2188), + [anon_sym_LT_AMP] = ACTIONS(2188), + [anon_sym_GT_AMP] = ACTIONS(2188), + [anon_sym_LT_LT] = ACTIONS(2188), + [anon_sym_LT_LT_DASH] = ACTIONS(2188), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), + }, + [1257] = { + [anon_sym_RBRACE] = ACTIONS(2951), + [sym_comment] = ACTIONS(52), + }, + [1258] = { + [sym_file_descriptor] = ACTIONS(2192), + [sym__concat] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_SEMI_SEMI] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_AMP_GT] = ACTIONS(2194), + [anon_sym_AMP_GT_GT] = ACTIONS(2194), + [anon_sym_LT_AMP] = ACTIONS(2194), + [anon_sym_GT_AMP] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2194), + [anon_sym_LT_LT_DASH] = ACTIONS(2194), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + }, + [1259] = { + [sym__heredoc_middle] = ACTIONS(1611), + [sym__heredoc_end] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [sym_comment] = ACTIONS(52), + }, + [1260] = { + [anon_sym_AT] = ACTIONS(2953), + [sym_comment] = ACTIONS(52), + }, + [1261] = { + [sym__heredoc_middle] = ACTIONS(1617), + [sym__heredoc_end] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1617), + [sym_comment] = ACTIONS(52), + }, + [1262] = { + [anon_sym_AT] = ACTIONS(2955), + [sym_comment] = ACTIONS(52), + }, + [1263] = { + [anon_sym_RBRACK] = ACTIONS(2957), + [sym_comment] = ACTIONS(52), + }, + [1264] = { + [sym__heredoc_middle] = ACTIONS(1625), + [sym__heredoc_end] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1625), + [sym_comment] = ACTIONS(52), + }, + [1265] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2959), + [sym_comment] = ACTIONS(52), + }, + [1266] = { + [anon_sym_RBRACE] = ACTIONS(2959), + [sym_comment] = ACTIONS(52), + }, + [1267] = { + [anon_sym_RBRACK] = ACTIONS(2961), + [sym_comment] = ACTIONS(52), + }, + [1268] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(2963), + [sym_comment] = ACTIONS(52), + }, [1269] = { - [anon_sym_RBRACK] = ACTIONS(2943), + [anon_sym_RBRACE] = ACTIONS(2963), [sym_comment] = ACTIONS(52), }, [1270] = { - [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_RBRACE] = ACTIONS(2965), [sym_comment] = ACTIONS(52), }, [1271] = { - [sym__concat] = ACTIONS(2162), - [anon_sym_SEMI_SEMI] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_raw_string] = ACTIONS(2164), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2164), - [anon_sym_BQUOTE] = ACTIONS(2164), - [anon_sym_LT_LPAREN] = ACTIONS(2164), - [anon_sym_GT_LPAREN] = ACTIONS(2164), - [sym_word] = ACTIONS(2164), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2967), + [sym_comment] = ACTIONS(52), }, [1272] = { - [anon_sym_RBRACE] = ACTIONS(2947), + [sym__concat] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_RBRACK] = ACTIONS(2588), [sym_comment] = ACTIONS(52), }, [1273] = { - [sym__concat] = ACTIONS(2168), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2170), - [sym_raw_string] = ACTIONS(2170), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2170), - [anon_sym_BQUOTE] = ACTIONS(2170), - [anon_sym_LT_LPAREN] = ACTIONS(2170), - [anon_sym_GT_LPAREN] = ACTIONS(2170), - [sym_word] = ACTIONS(2170), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), + [sym__concat] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_RBRACK] = ACTIONS(2592), + [sym_comment] = ACTIONS(52), }, [1274] = { - [anon_sym_esac] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_raw_string] = ACTIONS(2951), - [anon_sym_DOLLAR] = ACTIONS(2949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2951), - [anon_sym_BQUOTE] = ACTIONS(2951), - [anon_sym_LT_LPAREN] = ACTIONS(2951), - [anon_sym_GT_LPAREN] = ACTIONS(2951), - [sym_word] = ACTIONS(2953), + [anon_sym_RBRACK] = ACTIONS(2969), [sym_comment] = ACTIONS(52), }, [1275] = { + [anon_sym_RBRACK] = ACTIONS(2971), + [sym_comment] = ACTIONS(52), + }, + [1276] = { + [anon_sym_RBRACE] = ACTIONS(2973), + [sym_comment] = ACTIONS(52), + }, + [1277] = { + [sym__concat] = ACTIONS(2186), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2186), + [anon_sym_BQUOTE] = ACTIONS(2186), + [anon_sym_LT_LPAREN] = ACTIONS(2186), + [anon_sym_GT_LPAREN] = ACTIONS(2186), + [sym_word] = ACTIONS(2554), + [sym_comment] = ACTIONS(52), + }, + [1278] = { + [anon_sym_RBRACE] = ACTIONS(2975), + [sym_comment] = ACTIONS(52), + }, + [1279] = { + [sym__concat] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), + [sym_word] = ACTIONS(2558), + [sym_comment] = ACTIONS(52), + }, + [1280] = { + [anon_sym_RBRACE] = ACTIONS(2977), + [sym_comment] = ACTIONS(52), + }, + [1281] = { + [anon_sym_RBRACE] = ACTIONS(2979), + [sym_comment] = ACTIONS(52), + }, + [1282] = { + [sym_file_descriptor] = ACTIONS(2588), + [sym__concat] = ACTIONS(2588), + [sym_variable_name] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(2590), + [anon_sym_SEMI_SEMI] = ACTIONS(2590), + [anon_sym_PIPE_AMP] = ACTIONS(2590), + [anon_sym_AMP_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(2590), + [anon_sym_GT_GT] = ACTIONS(2590), + [anon_sym_AMP_GT] = ACTIONS(2590), + [anon_sym_AMP_GT_GT] = ACTIONS(2590), + [anon_sym_LT_AMP] = ACTIONS(2590), + [anon_sym_GT_AMP] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2590), + [sym_raw_string] = ACTIONS(2590), + [anon_sym_DOLLAR] = ACTIONS(2590), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2590), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2590), + [anon_sym_BQUOTE] = ACTIONS(2590), + [anon_sym_LT_LPAREN] = ACTIONS(2590), + [anon_sym_GT_LPAREN] = ACTIONS(2590), + [sym_word] = ACTIONS(2590), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_LF] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), + }, + [1283] = { + [sym_file_descriptor] = ACTIONS(2592), + [sym__concat] = ACTIONS(2592), + [sym_variable_name] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_RPAREN] = ACTIONS(2594), + [anon_sym_SEMI_SEMI] = ACTIONS(2594), + [anon_sym_PIPE_AMP] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_GT] = ACTIONS(2594), + [anon_sym_AMP_GT] = ACTIONS(2594), + [anon_sym_AMP_GT_GT] = ACTIONS(2594), + [anon_sym_LT_AMP] = ACTIONS(2594), + [anon_sym_GT_AMP] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [sym_raw_string] = ACTIONS(2594), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2594), + [anon_sym_BQUOTE] = ACTIONS(2594), + [anon_sym_LT_LPAREN] = ACTIONS(2594), + [anon_sym_GT_LPAREN] = ACTIONS(2594), + [sym_word] = ACTIONS(2594), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_LF] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + }, + [1284] = { + [anon_sym_RBRACK] = ACTIONS(2981), + [sym_comment] = ACTIONS(52), + }, + [1285] = { + [anon_sym_RBRACK] = ACTIONS(2983), + [sym_comment] = ACTIONS(52), + }, + [1286] = { + [anon_sym_RBRACE] = ACTIONS(2985), + [sym_comment] = ACTIONS(52), + }, + [1287] = { + [sym__concat] = ACTIONS(2186), + [anon_sym_SEMI_SEMI] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [sym_raw_string] = ACTIONS(2188), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2188), + [anon_sym_LT_LPAREN] = ACTIONS(2188), + [anon_sym_GT_LPAREN] = ACTIONS(2188), + [sym_word] = ACTIONS(2188), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), + }, + [1288] = { + [anon_sym_RBRACE] = ACTIONS(2987), + [sym_comment] = ACTIONS(52), + }, + [1289] = { + [sym__concat] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_raw_string] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2194), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2194), + [anon_sym_GT_LPAREN] = ACTIONS(2194), + [sym_word] = ACTIONS(2194), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + }, + [1290] = { + [anon_sym_esac] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_raw_string] = ACTIONS(2991), + [anon_sym_DOLLAR] = ACTIONS(2989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2991), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2991), + [anon_sym_BQUOTE] = ACTIONS(2991), + [anon_sym_LT_LPAREN] = ACTIONS(2991), + [anon_sym_GT_LPAREN] = ACTIONS(2991), + [sym_word] = ACTIONS(2993), + [sym_comment] = ACTIONS(52), + }, + [1291] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -27331,7 +27713,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(1275), + [aux_sym_program_repeat1] = STATE(1291), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(610), [sym_variable_name] = ACTIONS(613), @@ -27362,7 +27744,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(669), [sym_comment] = ACTIONS(52), }, - [1276] = { + [1292] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -27384,7 +27766,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(14), [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(1275), + [aux_sym_program_repeat1] = STATE(1291), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -27392,7 +27774,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2955), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -27415,1183 +27797,1193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [1277] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - }, - [1278] = { - [sym__concat] = ACTIONS(2818), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_SEMI_SEMI] = ACTIONS(2820), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - }, - [1279] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(52), - }, - [1280] = { - [sym__concat] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2818), - [anon_sym_RBRACK] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2818), - [sym_raw_string] = ACTIONS(2818), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2818), - [anon_sym_BQUOTE] = ACTIONS(2818), - [anon_sym_LT_LPAREN] = ACTIONS(2818), - [anon_sym_GT_LPAREN] = ACTIONS(2818), - [sym_word] = ACTIONS(2820), - [sym_comment] = ACTIONS(52), - }, - [1281] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(52), - }, - [1282] = { - [sym__concat] = ACTIONS(2818), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2818), - [sym_raw_string] = ACTIONS(2818), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2818), - [anon_sym_BQUOTE] = ACTIONS(2818), - [anon_sym_LT_LPAREN] = ACTIONS(2818), - [anon_sym_GT_LPAREN] = ACTIONS(2818), - [sym_word] = ACTIONS(2820), - [sym_comment] = ACTIONS(52), - }, - [1283] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [sym_variable_name] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_GT] = ACTIONS(2957), - [anon_sym_AMP_GT_GT] = ACTIONS(2814), - [anon_sym_LT_AMP] = ACTIONS(2814), - [anon_sym_GT_AMP] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2957), - [sym_comment] = ACTIONS(52), - }, - [1284] = { - [sym_file_descriptor] = ACTIONS(2818), - [sym__concat] = ACTIONS(2818), - [sym_variable_name] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_GT] = ACTIONS(2959), - [anon_sym_AMP_GT_GT] = ACTIONS(2818), - [anon_sym_LT_AMP] = ACTIONS(2818), - [anon_sym_GT_AMP] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [sym_raw_string] = ACTIONS(2818), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2818), - [anon_sym_BQUOTE] = ACTIONS(2818), - [anon_sym_LT_LPAREN] = ACTIONS(2818), - [anon_sym_GT_LPAREN] = ACTIONS(2818), - [sym_word] = ACTIONS(2959), - [sym_comment] = ACTIONS(52), - }, - [1285] = { - [anon_sym_DQUOTE] = ACTIONS(2816), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2816), - [anon_sym_BQUOTE] = ACTIONS(2816), - [sym_comment] = ACTIONS(150), - }, - [1286] = { - [anon_sym_DQUOTE] = ACTIONS(2820), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), - [anon_sym_BQUOTE] = ACTIONS(2820), - [sym_comment] = ACTIONS(150), - }, - [1287] = { - [anon_sym_RBRACK] = ACTIONS(2961), - [sym_comment] = ACTIONS(52), - }, - [1288] = { - [anon_sym_RBRACK] = ACTIONS(2963), - [sym_comment] = ACTIONS(52), - }, - [1289] = { - [anon_sym_RBRACE] = ACTIONS(2965), - [sym_comment] = ACTIONS(52), - }, - [1290] = { - [sym_file_descriptor] = ACTIONS(2162), - [sym__concat] = ACTIONS(2162), - [sym_variable_name] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2524), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_PIPE_AMP] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_GT] = ACTIONS(2524), - [anon_sym_AMP_GT_GT] = ACTIONS(2162), - [anon_sym_LT_AMP] = ACTIONS(2162), - [anon_sym_GT_AMP] = ACTIONS(2162), - [anon_sym_DQUOTE] = ACTIONS(2162), - [sym_raw_string] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(2524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2162), - [anon_sym_BQUOTE] = ACTIONS(2162), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_word] = ACTIONS(2164), - [sym_comment] = ACTIONS(52), - }, - [1291] = { - [anon_sym_RBRACE] = ACTIONS(2967), - [sym_comment] = ACTIONS(52), - }, - [1292] = { - [sym_file_descriptor] = ACTIONS(2168), - [sym__concat] = ACTIONS(2168), - [sym_variable_name] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_PIPE_AMP] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2168), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2168), - [anon_sym_AMP_GT] = ACTIONS(2528), - [anon_sym_AMP_GT_GT] = ACTIONS(2168), - [anon_sym_LT_AMP] = ACTIONS(2168), - [anon_sym_GT_AMP] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [sym_raw_string] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_LT_LPAREN] = ACTIONS(2168), - [anon_sym_GT_LPAREN] = ACTIONS(2168), - [sym_word] = ACTIONS(2170), - [sym_comment] = ACTIONS(52), - }, [1293] = { - [anon_sym_PIPE] = ACTIONS(2969), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2852), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), }, [1294] = { - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_PIPE_AMP] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_PIPE_PIPE] = ACTIONS(2975), - [anon_sym_BQUOTE] = ACTIONS(2975), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2856), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_SEMI_SEMI] = ACTIONS(2858), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), }, [1295] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_PIPE_AMP] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_GT] = ACTIONS(2957), - [anon_sym_AMP_GT_GT] = ACTIONS(2814), - [anon_sym_LT_AMP] = ACTIONS(2814), - [anon_sym_GT_AMP] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_LT_LT_DASH] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2816), + [sym__concat] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2852), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2997), + [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_word] = ACTIONS(2854), [sym_comment] = ACTIONS(52), }, [1296] = { - [sym_file_descriptor] = ACTIONS(2818), - [sym__concat] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_PIPE_AMP] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_GT] = ACTIONS(2959), - [anon_sym_AMP_GT_GT] = ACTIONS(2818), - [anon_sym_LT_AMP] = ACTIONS(2818), - [anon_sym_GT_AMP] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_LT_LT_DASH] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [sym_raw_string] = ACTIONS(2818), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2818), - [anon_sym_BQUOTE] = ACTIONS(2818), - [anon_sym_LT_LPAREN] = ACTIONS(2818), - [anon_sym_GT_LPAREN] = ACTIONS(2818), - [sym_word] = ACTIONS(2820), + [sym__concat] = ACTIONS(2856), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym_RBRACK] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2856), + [sym_raw_string] = ACTIONS(2856), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), + [anon_sym_LT_LPAREN] = ACTIONS(2856), + [anon_sym_GT_LPAREN] = ACTIONS(2856), + [sym_word] = ACTIONS(2858), [sym_comment] = ACTIONS(52), }, [1297] = { - [sym__concat] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_PIPE_AMP] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), + [sym__concat] = ACTIONS(2852), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2852), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2997), + [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_word] = ACTIONS(2854), [sym_comment] = ACTIONS(52), }, [1298] = { - [anon_sym_AT] = ACTIONS(2977), + [sym__concat] = ACTIONS(2856), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2856), + [sym_raw_string] = ACTIONS(2856), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), + [anon_sym_LT_LPAREN] = ACTIONS(2856), + [anon_sym_GT_LPAREN] = ACTIONS(2856), + [sym_word] = ACTIONS(2858), [sym_comment] = ACTIONS(52), }, [1299] = { - [sym__concat] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_PIPE_AMP] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_PIPE_PIPE] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [sym_variable_name] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2852), + [anon_sym_AMP_GT] = ACTIONS(2997), + [anon_sym_AMP_GT_GT] = ACTIONS(2852), + [anon_sym_LT_AMP] = ACTIONS(2852), + [anon_sym_GT_AMP] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2997), + [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_word] = ACTIONS(2997), [sym_comment] = ACTIONS(52), }, [1300] = { - [anon_sym_AT] = ACTIONS(2979), + [sym_file_descriptor] = ACTIONS(2856), + [sym__concat] = ACTIONS(2856), + [sym_variable_name] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(2856), + [anon_sym_AMP_GT] = ACTIONS(2999), + [anon_sym_AMP_GT_GT] = ACTIONS(2856), + [anon_sym_LT_AMP] = ACTIONS(2856), + [anon_sym_GT_AMP] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [sym_raw_string] = ACTIONS(2856), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), + [anon_sym_LT_LPAREN] = ACTIONS(2856), + [anon_sym_GT_LPAREN] = ACTIONS(2856), + [sym_word] = ACTIONS(2999), [sym_comment] = ACTIONS(52), }, [1301] = { - [anon_sym_RBRACK] = ACTIONS(2981), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(2854), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(2854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2854), + [anon_sym_BQUOTE] = ACTIONS(2854), + [sym_comment] = ACTIONS(150), }, [1302] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2983), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(2858), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2858), + [anon_sym_BQUOTE] = ACTIONS(2858), + [sym_comment] = ACTIONS(150), }, [1303] = { - [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_RBRACK] = ACTIONS(3001), [sym_comment] = ACTIONS(52), }, [1304] = { - [anon_sym_RBRACK] = ACTIONS(2985), + [anon_sym_RBRACK] = ACTIONS(3003), [sym_comment] = ACTIONS(52), }, [1305] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym__concat] = ACTIONS(360), - [anon_sym_RBRACE] = ACTIONS(2987), - [sym_comment] = ACTIONS(52), - }, - [1306] = { - [anon_sym_RBRACE] = ACTIONS(2987), - [sym_comment] = ACTIONS(52), - }, - [1307] = { - [anon_sym_RBRACK] = ACTIONS(2989), - [sym_comment] = ACTIONS(52), - }, - [1308] = { - [anon_sym_RBRACK] = ACTIONS(2991), - [sym_comment] = ACTIONS(52), - }, - [1309] = { - [anon_sym_RBRACE] = ACTIONS(2993), - [sym_comment] = ACTIONS(52), - }, - [1310] = { - [sym_file_descriptor] = ACTIONS(2162), - [sym__concat] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2524), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_PIPE_AMP] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_GT] = ACTIONS(2524), - [anon_sym_AMP_GT_GT] = ACTIONS(2162), - [anon_sym_LT_AMP] = ACTIONS(2162), - [anon_sym_GT_AMP] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2524), - [anon_sym_LT_LT_DASH] = ACTIONS(2162), - [anon_sym_BQUOTE] = ACTIONS(2162), - [sym_comment] = ACTIONS(52), - }, - [1311] = { - [anon_sym_RBRACE] = ACTIONS(2995), - [sym_comment] = ACTIONS(52), - }, - [1312] = { - [sym_file_descriptor] = ACTIONS(2168), - [sym__concat] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_PIPE_AMP] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2168), - [anon_sym_PIPE_PIPE] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2168), - [anon_sym_AMP_GT] = ACTIONS(2528), - [anon_sym_AMP_GT_GT] = ACTIONS(2168), - [anon_sym_LT_AMP] = ACTIONS(2168), - [anon_sym_GT_AMP] = ACTIONS(2168), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_LT_LT_DASH] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_comment] = ACTIONS(52), - }, - [1313] = { - [anon_sym_RBRACK] = ACTIONS(2997), - [sym_comment] = ACTIONS(52), - }, - [1314] = { - [anon_sym_RBRACK] = ACTIONS(2999), - [sym_comment] = ACTIONS(52), - }, - [1315] = { - [anon_sym_RBRACE] = ACTIONS(3001), - [sym_comment] = ACTIONS(52), - }, - [1316] = { - [sym__concat] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(2164), - [anon_sym_SEMI_SEMI] = ACTIONS(2164), - [anon_sym_PIPE_AMP] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - }, - [1317] = { - [anon_sym_RBRACE] = ACTIONS(3003), - [sym_comment] = ACTIONS(52), - }, - [1318] = { - [sym__concat] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), - [anon_sym_PIPE_AMP] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - }, - [1319] = { [anon_sym_RBRACE] = ACTIONS(3005), [sym_comment] = ACTIONS(52), }, - [1320] = { + [1306] = { + [sym_file_descriptor] = ACTIONS(2186), + [sym__concat] = ACTIONS(2186), + [sym_variable_name] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2554), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2186), + [anon_sym_BQUOTE] = ACTIONS(2186), + [anon_sym_LT_LPAREN] = ACTIONS(2186), + [anon_sym_GT_LPAREN] = ACTIONS(2186), + [sym_word] = ACTIONS(2188), + [sym_comment] = ACTIONS(52), + }, + [1307] = { [anon_sym_RBRACE] = ACTIONS(3007), [sym_comment] = ACTIONS(52), }, - [1321] = { - [sym_file_descriptor] = ACTIONS(2558), - [sym__concat] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_SEMI_SEMI] = ACTIONS(2560), - [anon_sym_PIPE_AMP] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2560), - [anon_sym_AMP_GT] = ACTIONS(2560), - [anon_sym_AMP_GT_GT] = ACTIONS(2560), - [anon_sym_LT_AMP] = ACTIONS(2560), - [anon_sym_GT_AMP] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_LT_LT_DASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LF] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2560), - }, - [1322] = { - [sym_file_descriptor] = ACTIONS(2562), - [sym__concat] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2564), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_SEMI_SEMI] = ACTIONS(2564), - [anon_sym_PIPE_AMP] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2564), - [anon_sym_AMP_GT] = ACTIONS(2564), - [anon_sym_AMP_GT_GT] = ACTIONS(2564), - [anon_sym_LT_AMP] = ACTIONS(2564), - [anon_sym_GT_AMP] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2564), - [anon_sym_LT_LT_DASH] = ACTIONS(2564), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_LF] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2564), - }, - [1323] = { - [anon_sym_RBRACK] = ACTIONS(3009), + [1308] = { + [sym_file_descriptor] = ACTIONS(2192), + [sym__concat] = ACTIONS(2192), + [sym_variable_name] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2558), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_raw_string] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_LT_LPAREN] = ACTIONS(2192), + [anon_sym_GT_LPAREN] = ACTIONS(2192), + [sym_word] = ACTIONS(2194), [sym_comment] = ACTIONS(52), }, - [1324] = { - [anon_sym_RBRACK] = ACTIONS(3011), + [1309] = { + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_RPAREN] = ACTIONS(3011), + [anon_sym_PIPE_AMP] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_BQUOTE] = ACTIONS(3011), [sym_comment] = ACTIONS(52), }, - [1325] = { - [anon_sym_RBRACE] = ACTIONS(3013), + [1310] = { + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_PIPE_AMP] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_BQUOTE] = ACTIONS(3015), [sym_comment] = ACTIONS(52), }, - [1326] = { - [sym__heredoc_middle] = ACTIONS(2162), - [sym__heredoc_end] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(2524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2162), + [1311] = { + [sym_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_PIPE_AMP] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2852), + [anon_sym_AMP_GT] = ACTIONS(2997), + [anon_sym_AMP_GT_GT] = ACTIONS(2852), + [anon_sym_LT_AMP] = ACTIONS(2852), + [anon_sym_GT_AMP] = ACTIONS(2852), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_LT_LT_DASH] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2997), + [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_word] = ACTIONS(2854), [sym_comment] = ACTIONS(52), }, - [1327] = { - [anon_sym_RBRACE] = ACTIONS(3015), + [1312] = { + [sym_file_descriptor] = ACTIONS(2856), + [sym__concat] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(2856), + [anon_sym_PIPE_AMP] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(2856), + [anon_sym_AMP_GT] = ACTIONS(2999), + [anon_sym_AMP_GT_GT] = ACTIONS(2856), + [anon_sym_LT_AMP] = ACTIONS(2856), + [anon_sym_GT_AMP] = ACTIONS(2856), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_LT_LT_DASH] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [sym_raw_string] = ACTIONS(2856), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), + [anon_sym_LT_LPAREN] = ACTIONS(2856), + [anon_sym_GT_LPAREN] = ACTIONS(2856), + [sym_word] = ACTIONS(2858), [sym_comment] = ACTIONS(52), }, - [1328] = { - [sym__heredoc_middle] = ACTIONS(2168), - [sym__heredoc_end] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2168), + [1313] = { + [sym__concat] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_PIPE_AMP] = ACTIONS(1611), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), [sym_comment] = ACTIONS(52), }, - [1329] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_RBRACK] = ACTIONS(2814), + [1314] = { + [anon_sym_AT] = ACTIONS(3017), [sym_comment] = ACTIONS(52), }, - [1330] = { - [sym__concat] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_RBRACK] = ACTIONS(2818), + [1315] = { + [sym__concat] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_PIPE_AMP] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1617), + [anon_sym_PIPE_PIPE] = ACTIONS(1617), + [anon_sym_BQUOTE] = ACTIONS(1617), [sym_comment] = ACTIONS(52), }, - [1331] = { - [anon_sym_RBRACE] = ACTIONS(3017), + [1316] = { + [anon_sym_AT] = ACTIONS(3019), [sym_comment] = ACTIONS(52), }, - [1332] = { - [anon_sym_RBRACE] = ACTIONS(3019), + [1317] = { + [anon_sym_RBRACK] = ACTIONS(3021), [sym_comment] = ACTIONS(52), }, - [1333] = { - [sym__concat] = ACTIONS(2558), - [anon_sym_RPAREN] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_raw_string] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2558), - [anon_sym_LT_LPAREN] = ACTIONS(2558), - [anon_sym_GT_LPAREN] = ACTIONS(2558), - [sym_word] = ACTIONS(2798), + [1318] = { + [sym__concat] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_PIPE_AMP] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1625), + [anon_sym_BQUOTE] = ACTIONS(1625), [sym_comment] = ACTIONS(52), }, - [1334] = { - [sym__concat] = ACTIONS(2562), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_DQUOTE] = ACTIONS(2562), - [sym_raw_string] = ACTIONS(2562), - [anon_sym_DOLLAR] = ACTIONS(2800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2562), - [anon_sym_LT_LPAREN] = ACTIONS(2562), - [anon_sym_GT_LPAREN] = ACTIONS(2562), - [sym_word] = ACTIONS(2800), - [sym_comment] = ACTIONS(52), - }, - [1335] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [sym_variable_name] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(2816), - [anon_sym_LT_AMP] = ACTIONS(2816), - [anon_sym_GT_AMP] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2816), - [anon_sym_BQUOTE] = ACTIONS(2816), - [anon_sym_LT_LPAREN] = ACTIONS(2816), - [anon_sym_GT_LPAREN] = ACTIONS(2816), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - }, - [1336] = { - [sym_file_descriptor] = ACTIONS(2818), - [sym__concat] = ACTIONS(2818), - [sym_variable_name] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_SEMI_SEMI] = ACTIONS(2820), - [anon_sym_PIPE_AMP] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_GT] = ACTIONS(2820), - [anon_sym_AMP_GT_GT] = ACTIONS(2820), - [anon_sym_LT_AMP] = ACTIONS(2820), - [anon_sym_GT_AMP] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [sym_raw_string] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), - [anon_sym_BQUOTE] = ACTIONS(2820), - [anon_sym_LT_LPAREN] = ACTIONS(2820), - [anon_sym_GT_LPAREN] = ACTIONS(2820), - [sym_word] = ACTIONS(2820), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - }, - [1337] = { - [anon_sym_RBRACE] = ACTIONS(3021), - [sym_comment] = ACTIONS(52), - }, - [1338] = { + [1319] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), [anon_sym_RBRACE] = ACTIONS(3023), [sym_comment] = ACTIONS(52), }, - [1339] = { - [sym__concat] = ACTIONS(2558), - [anon_sym_SEMI_SEMI] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [sym_raw_string] = ACTIONS(2560), - [anon_sym_DOLLAR] = ACTIONS(2560), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2560), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2560), - [anon_sym_BQUOTE] = ACTIONS(2560), - [anon_sym_LT_LPAREN] = ACTIONS(2560), - [anon_sym_GT_LPAREN] = ACTIONS(2560), - [sym_word] = ACTIONS(2560), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LF] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2560), - }, - [1340] = { - [sym__concat] = ACTIONS(2562), - [anon_sym_SEMI_SEMI] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [sym_raw_string] = ACTIONS(2564), - [anon_sym_DOLLAR] = ACTIONS(2564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), - [anon_sym_BQUOTE] = ACTIONS(2564), - [anon_sym_LT_LPAREN] = ACTIONS(2564), - [anon_sym_GT_LPAREN] = ACTIONS(2564), - [sym_word] = ACTIONS(2564), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_LF] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2564), - }, - [1341] = { - [anon_sym_esac] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [sym_raw_string] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3027), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LT_LPAREN] = ACTIONS(3027), - [anon_sym_GT_LPAREN] = ACTIONS(3027), - [sym_word] = ACTIONS(3029), + [1320] = { + [anon_sym_RBRACE] = ACTIONS(3023), [sym_comment] = ACTIONS(52), }, - [1342] = { - [anon_sym_RBRACE] = ACTIONS(3031), + [1321] = { + [anon_sym_RBRACK] = ACTIONS(3025), [sym_comment] = ACTIONS(52), }, - [1343] = { + [1322] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(3027), + [sym_comment] = ACTIONS(52), + }, + [1323] = { + [anon_sym_RBRACE] = ACTIONS(3027), + [sym_comment] = ACTIONS(52), + }, + [1324] = { + [anon_sym_RBRACK] = ACTIONS(3029), + [sym_comment] = ACTIONS(52), + }, + [1325] = { + [anon_sym_RBRACK] = ACTIONS(3031), + [sym_comment] = ACTIONS(52), + }, + [1326] = { [anon_sym_RBRACE] = ACTIONS(3033), [sym_comment] = ACTIONS(52), }, - [1344] = { - [sym_file_descriptor] = ACTIONS(2558), - [sym__concat] = ACTIONS(2558), - [sym_variable_name] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2558), - [anon_sym_PIPE_AMP] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_AMP_GT] = ACTIONS(2798), - [anon_sym_AMP_GT_GT] = ACTIONS(2558), - [anon_sym_LT_AMP] = ACTIONS(2558), - [anon_sym_GT_AMP] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_raw_string] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2558), - [anon_sym_LT_LPAREN] = ACTIONS(2558), - [anon_sym_GT_LPAREN] = ACTIONS(2558), - [sym_word] = ACTIONS(2560), + [1327] = { + [sym_file_descriptor] = ACTIONS(2186), + [sym__concat] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_AMP_GT] = ACTIONS(2554), + [anon_sym_AMP_GT_GT] = ACTIONS(2186), + [anon_sym_LT_AMP] = ACTIONS(2186), + [anon_sym_GT_AMP] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_LT_LT_DASH] = ACTIONS(2186), + [anon_sym_BQUOTE] = ACTIONS(2186), [sym_comment] = ACTIONS(52), }, - [1345] = { - [sym_file_descriptor] = ACTIONS(2562), - [sym__concat] = ACTIONS(2562), - [sym_variable_name] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_PIPE_AMP] = ACTIONS(2562), - [anon_sym_AMP_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_AMP_GT] = ACTIONS(2800), - [anon_sym_AMP_GT_GT] = ACTIONS(2562), - [anon_sym_LT_AMP] = ACTIONS(2562), - [anon_sym_GT_AMP] = ACTIONS(2562), - [anon_sym_DQUOTE] = ACTIONS(2562), - [sym_raw_string] = ACTIONS(2562), - [anon_sym_DOLLAR] = ACTIONS(2800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2562), - [anon_sym_LT_LPAREN] = ACTIONS(2562), - [anon_sym_GT_LPAREN] = ACTIONS(2562), - [sym_word] = ACTIONS(2564), + [1328] = { + [anon_sym_RBRACE] = ACTIONS(3035), [sym_comment] = ACTIONS(52), }, - [1346] = { - [anon_sym_RBRACK] = ACTIONS(3035), + [1329] = { + [sym_file_descriptor] = ACTIONS(2192), + [sym__concat] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2192), + [anon_sym_AMP_GT] = ACTIONS(2558), + [anon_sym_AMP_GT_GT] = ACTIONS(2192), + [anon_sym_LT_AMP] = ACTIONS(2192), + [anon_sym_GT_AMP] = ACTIONS(2192), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_LT_LT_DASH] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), [sym_comment] = ACTIONS(52), }, - [1347] = { + [1330] = { [anon_sym_RBRACK] = ACTIONS(3037), [sym_comment] = ACTIONS(52), }, - [1348] = { - [anon_sym_RBRACE] = ACTIONS(3039), + [1331] = { + [anon_sym_RBRACK] = ACTIONS(3039), [sym_comment] = ACTIONS(52), }, - [1349] = { - [sym__concat] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2524), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_PIPE_AMP] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_BQUOTE] = ACTIONS(2162), - [sym_comment] = ACTIONS(52), - }, - [1350] = { + [1332] = { [anon_sym_RBRACE] = ACTIONS(3041), [sym_comment] = ACTIONS(52), }, - [1351] = { - [sym__concat] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_PIPE_AMP] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2168), - [anon_sym_PIPE_PIPE] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_comment] = ACTIONS(52), + [1333] = { + [sym__concat] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_SEMI_SEMI] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), }, - [1352] = { + [1334] = { [anon_sym_RBRACE] = ACTIONS(3043), [sym_comment] = ACTIONS(52), }, - [1353] = { + [1335] = { + [sym__concat] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_SEMI_SEMI] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(2194), + [anon_sym_AMP_AMP] = ACTIONS(2194), + [anon_sym_PIPE_PIPE] = ACTIONS(2194), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + }, + [1336] = { [anon_sym_RBRACE] = ACTIONS(3045), [sym_comment] = ACTIONS(52), }, - [1354] = { - [sym_file_descriptor] = ACTIONS(2558), - [sym__concat] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2558), - [anon_sym_PIPE_AMP] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_AMP_GT] = ACTIONS(2798), - [anon_sym_AMP_GT_GT] = ACTIONS(2558), - [anon_sym_LT_AMP] = ACTIONS(2558), - [anon_sym_GT_AMP] = ACTIONS(2558), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_LT_LT_DASH] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2558), - [sym_comment] = ACTIONS(52), - }, - [1355] = { - [sym_file_descriptor] = ACTIONS(2562), - [sym__concat] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_PIPE_AMP] = ACTIONS(2562), - [anon_sym_AMP_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_AMP_GT] = ACTIONS(2800), - [anon_sym_AMP_GT_GT] = ACTIONS(2562), - [anon_sym_LT_AMP] = ACTIONS(2562), - [anon_sym_GT_AMP] = ACTIONS(2562), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_LT_LT_DASH] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2562), - [sym_comment] = ACTIONS(52), - }, - [1356] = { + [1337] = { [anon_sym_RBRACE] = ACTIONS(3047), [sym_comment] = ACTIONS(52), }, - [1357] = { - [anon_sym_RBRACE] = ACTIONS(3049), + [1338] = { + [sym_file_descriptor] = ACTIONS(2588), + [sym__concat] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(2590), + [anon_sym_SEMI_SEMI] = ACTIONS(2590), + [anon_sym_PIPE_AMP] = ACTIONS(2590), + [anon_sym_AMP_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(2590), + [anon_sym_GT_GT] = ACTIONS(2590), + [anon_sym_AMP_GT] = ACTIONS(2590), + [anon_sym_AMP_GT_GT] = ACTIONS(2590), + [anon_sym_LT_AMP] = ACTIONS(2590), + [anon_sym_GT_AMP] = ACTIONS(2590), + [anon_sym_LT_LT] = ACTIONS(2590), + [anon_sym_LT_LT_DASH] = ACTIONS(2590), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_LF] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), + }, + [1339] = { + [sym_file_descriptor] = ACTIONS(2592), + [sym__concat] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_RPAREN] = ACTIONS(2594), + [anon_sym_SEMI_SEMI] = ACTIONS(2594), + [anon_sym_PIPE_AMP] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_GT] = ACTIONS(2594), + [anon_sym_AMP_GT] = ACTIONS(2594), + [anon_sym_AMP_GT_GT] = ACTIONS(2594), + [anon_sym_LT_AMP] = ACTIONS(2594), + [anon_sym_GT_AMP] = ACTIONS(2594), + [anon_sym_LT_LT] = ACTIONS(2594), + [anon_sym_LT_LT_DASH] = ACTIONS(2594), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_LF] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + }, + [1340] = { + [anon_sym_RBRACK] = ACTIONS(3049), [sym_comment] = ACTIONS(52), }, - [1358] = { - [sym__concat] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_SEMI_SEMI] = ACTIONS(2560), - [anon_sym_PIPE_AMP] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LF] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2560), - }, - [1359] = { - [sym__concat] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2564), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_SEMI_SEMI] = ACTIONS(2564), - [anon_sym_PIPE_AMP] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_LF] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2564), - }, - [1360] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(2816), - [anon_sym_LT_AMP] = ACTIONS(2816), - [anon_sym_GT_AMP] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(2816), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - }, - [1361] = { - [sym_file_descriptor] = ACTIONS(2818), - [sym__concat] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_SEMI_SEMI] = ACTIONS(2820), - [anon_sym_PIPE_AMP] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_GT] = ACTIONS(2820), - [anon_sym_AMP_GT_GT] = ACTIONS(2820), - [anon_sym_LT_AMP] = ACTIONS(2820), - [anon_sym_GT_AMP] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_LT_LT_DASH] = ACTIONS(2820), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - }, - [1362] = { - [anon_sym_RBRACE] = ACTIONS(3051), + [1341] = { + [anon_sym_RBRACK] = ACTIONS(3051), [sym_comment] = ACTIONS(52), }, - [1363] = { + [1342] = { [anon_sym_RBRACE] = ACTIONS(3053), [sym_comment] = ACTIONS(52), }, - [1364] = { - [sym__heredoc_middle] = ACTIONS(2558), - [sym__heredoc_end] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2558), + [1343] = { + [sym__heredoc_middle] = ACTIONS(2186), + [sym__heredoc_end] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2186), [sym_comment] = ACTIONS(52), }, - [1365] = { - [sym__heredoc_middle] = ACTIONS(2562), - [sym__heredoc_end] = ACTIONS(2562), - [anon_sym_DOLLAR] = ACTIONS(2800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2562), - [sym_comment] = ACTIONS(52), - }, - [1366] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2957), - [sym_comment] = ACTIONS(52), - }, - [1367] = { - [sym__concat] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [sym_raw_string] = ACTIONS(2818), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2818), - [anon_sym_BQUOTE] = ACTIONS(2818), - [anon_sym_LT_LPAREN] = ACTIONS(2818), - [anon_sym_GT_LPAREN] = ACTIONS(2818), - [sym_word] = ACTIONS(2959), - [sym_comment] = ACTIONS(52), - }, - [1368] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2816), - [anon_sym_BQUOTE] = ACTIONS(2816), - [anon_sym_LT_LPAREN] = ACTIONS(2816), - [anon_sym_GT_LPAREN] = ACTIONS(2816), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - }, - [1369] = { - [sym__concat] = ACTIONS(2818), - [anon_sym_SEMI_SEMI] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [sym_raw_string] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), - [anon_sym_BQUOTE] = ACTIONS(2820), - [anon_sym_LT_LPAREN] = ACTIONS(2820), - [anon_sym_GT_LPAREN] = ACTIONS(2820), - [sym_word] = ACTIONS(2820), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - }, - [1370] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [sym_variable_name] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_PIPE_AMP] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_GT] = ACTIONS(2957), - [anon_sym_AMP_GT_GT] = ACTIONS(2814), - [anon_sym_LT_AMP] = ACTIONS(2814), - [anon_sym_GT_AMP] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(52), - }, - [1371] = { - [sym_file_descriptor] = ACTIONS(2818), - [sym__concat] = ACTIONS(2818), - [sym_variable_name] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_PIPE_AMP] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_GT] = ACTIONS(2959), - [anon_sym_AMP_GT_GT] = ACTIONS(2818), - [anon_sym_LT_AMP] = ACTIONS(2818), - [anon_sym_GT_AMP] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [sym_raw_string] = ACTIONS(2818), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2818), - [anon_sym_BQUOTE] = ACTIONS(2818), - [anon_sym_LT_LPAREN] = ACTIONS(2818), - [anon_sym_GT_LPAREN] = ACTIONS(2818), - [sym_word] = ACTIONS(2820), - [sym_comment] = ACTIONS(52), - }, - [1372] = { + [1344] = { [anon_sym_RBRACE] = ACTIONS(3055), [sym_comment] = ACTIONS(52), }, - [1373] = { + [1345] = { + [sym__heredoc_middle] = ACTIONS(2192), + [sym__heredoc_end] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), + [sym_comment] = ACTIONS(52), + }, + [1346] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2852), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_RBRACK] = ACTIONS(2852), + [sym_comment] = ACTIONS(52), + }, + [1347] = { + [sym__concat] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2856), + [anon_sym_RPAREN] = ACTIONS(2856), + [anon_sym_RBRACK] = ACTIONS(2856), + [sym_comment] = ACTIONS(52), + }, + [1348] = { [anon_sym_RBRACE] = ACTIONS(3057), [sym_comment] = ACTIONS(52), }, + [1349] = { + [anon_sym_RBRACE] = ACTIONS(3059), + [sym_comment] = ACTIONS(52), + }, + [1350] = { + [sym__concat] = ACTIONS(2588), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_raw_string] = ACTIONS(2588), + [anon_sym_DOLLAR] = ACTIONS(2836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2588), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2588), + [anon_sym_BQUOTE] = ACTIONS(2588), + [anon_sym_LT_LPAREN] = ACTIONS(2588), + [anon_sym_GT_LPAREN] = ACTIONS(2588), + [sym_word] = ACTIONS(2836), + [sym_comment] = ACTIONS(52), + }, + [1351] = { + [sym__concat] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [sym_raw_string] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LT_LPAREN] = ACTIONS(2592), + [anon_sym_GT_LPAREN] = ACTIONS(2592), + [sym_word] = ACTIONS(2838), + [sym_comment] = ACTIONS(52), + }, + [1352] = { + [sym_file_descriptor] = ACTIONS(2852), + [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), + [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_DQUOTE] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR] = 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_word] = ACTIONS(2854), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + }, + [1353] = { + [sym_file_descriptor] = ACTIONS(2856), + [sym__concat] = ACTIONS(2856), + [sym_variable_name] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_RPAREN] = ACTIONS(2858), + [anon_sym_SEMI_SEMI] = ACTIONS(2858), + [anon_sym_PIPE_AMP] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_GT] = ACTIONS(2858), + [anon_sym_AMP_GT_GT] = ACTIONS(2858), + [anon_sym_LT_AMP] = ACTIONS(2858), + [anon_sym_GT_AMP] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_raw_string] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2858), + [anon_sym_BQUOTE] = ACTIONS(2858), + [anon_sym_LT_LPAREN] = ACTIONS(2858), + [anon_sym_GT_LPAREN] = ACTIONS(2858), + [sym_word] = ACTIONS(2858), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + }, + [1354] = { + [anon_sym_RBRACE] = ACTIONS(3061), + [sym_comment] = ACTIONS(52), + }, + [1355] = { + [anon_sym_RBRACE] = ACTIONS(3063), + [sym_comment] = ACTIONS(52), + }, + [1356] = { + [sym__concat] = ACTIONS(2588), + [anon_sym_SEMI_SEMI] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2590), + [sym_raw_string] = ACTIONS(2590), + [anon_sym_DOLLAR] = ACTIONS(2590), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2590), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2590), + [anon_sym_BQUOTE] = ACTIONS(2590), + [anon_sym_LT_LPAREN] = ACTIONS(2590), + [anon_sym_GT_LPAREN] = ACTIONS(2590), + [sym_word] = ACTIONS(2590), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_LF] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), + }, + [1357] = { + [sym__concat] = ACTIONS(2592), + [anon_sym_SEMI_SEMI] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [sym_raw_string] = ACTIONS(2594), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2594), + [anon_sym_BQUOTE] = ACTIONS(2594), + [anon_sym_LT_LPAREN] = ACTIONS(2594), + [anon_sym_GT_LPAREN] = ACTIONS(2594), + [sym_word] = ACTIONS(2594), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_LF] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + }, + [1358] = { + [anon_sym_esac] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3067), + [anon_sym_LT_LPAREN] = ACTIONS(3067), + [anon_sym_GT_LPAREN] = ACTIONS(3067), + [sym_word] = ACTIONS(3069), + [sym_comment] = ACTIONS(52), + }, + [1359] = { + [anon_sym_RBRACE] = ACTIONS(3071), + [sym_comment] = ACTIONS(52), + }, + [1360] = { + [anon_sym_RBRACE] = ACTIONS(3073), + [sym_comment] = ACTIONS(52), + }, + [1361] = { + [sym_file_descriptor] = ACTIONS(2588), + [sym__concat] = ACTIONS(2588), + [sym_variable_name] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_PIPE_AMP] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_GT] = ACTIONS(2836), + [anon_sym_GT_GT] = ACTIONS(2588), + [anon_sym_AMP_GT] = ACTIONS(2836), + [anon_sym_AMP_GT_GT] = ACTIONS(2588), + [anon_sym_LT_AMP] = ACTIONS(2588), + [anon_sym_GT_AMP] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_raw_string] = ACTIONS(2588), + [anon_sym_DOLLAR] = ACTIONS(2836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2588), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2588), + [anon_sym_BQUOTE] = ACTIONS(2588), + [anon_sym_LT_LPAREN] = ACTIONS(2588), + [anon_sym_GT_LPAREN] = ACTIONS(2588), + [sym_word] = ACTIONS(2590), + [sym_comment] = ACTIONS(52), + }, + [1362] = { + [sym_file_descriptor] = ACTIONS(2592), + [sym__concat] = ACTIONS(2592), + [sym_variable_name] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_PIPE_AMP] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE_PIPE] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2592), + [anon_sym_AMP_GT] = ACTIONS(2838), + [anon_sym_AMP_GT_GT] = ACTIONS(2592), + [anon_sym_LT_AMP] = ACTIONS(2592), + [anon_sym_GT_AMP] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [sym_raw_string] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LT_LPAREN] = ACTIONS(2592), + [anon_sym_GT_LPAREN] = ACTIONS(2592), + [sym_word] = ACTIONS(2594), + [sym_comment] = ACTIONS(52), + }, + [1363] = { + [anon_sym_RBRACK] = ACTIONS(3075), + [sym_comment] = ACTIONS(52), + }, + [1364] = { + [anon_sym_RBRACK] = ACTIONS(3077), + [sym_comment] = ACTIONS(52), + }, + [1365] = { + [anon_sym_RBRACE] = ACTIONS(3079), + [sym_comment] = ACTIONS(52), + }, + [1366] = { + [sym__concat] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_PIPE_AMP] = ACTIONS(2186), + [anon_sym_AMP_AMP] = ACTIONS(2186), + [anon_sym_PIPE_PIPE] = ACTIONS(2186), + [anon_sym_BQUOTE] = ACTIONS(2186), + [sym_comment] = ACTIONS(52), + }, + [1367] = { + [anon_sym_RBRACE] = ACTIONS(3081), + [sym_comment] = ACTIONS(52), + }, + [1368] = { + [sym__concat] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [sym_comment] = ACTIONS(52), + }, + [1369] = { + [anon_sym_RBRACE] = ACTIONS(3083), + [sym_comment] = ACTIONS(52), + }, + [1370] = { + [anon_sym_RBRACE] = ACTIONS(3085), + [sym_comment] = ACTIONS(52), + }, + [1371] = { + [sym_file_descriptor] = ACTIONS(2588), + [sym__concat] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_PIPE_AMP] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_GT] = ACTIONS(2836), + [anon_sym_GT_GT] = ACTIONS(2588), + [anon_sym_AMP_GT] = ACTIONS(2836), + [anon_sym_AMP_GT_GT] = ACTIONS(2588), + [anon_sym_LT_AMP] = ACTIONS(2588), + [anon_sym_GT_AMP] = ACTIONS(2588), + [anon_sym_LT_LT] = ACTIONS(2836), + [anon_sym_LT_LT_DASH] = ACTIONS(2588), + [anon_sym_BQUOTE] = ACTIONS(2588), + [sym_comment] = ACTIONS(52), + }, + [1372] = { + [sym_file_descriptor] = ACTIONS(2592), + [sym__concat] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_PIPE_AMP] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE_PIPE] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2592), + [anon_sym_AMP_GT] = ACTIONS(2838), + [anon_sym_AMP_GT_GT] = ACTIONS(2592), + [anon_sym_LT_AMP] = ACTIONS(2592), + [anon_sym_GT_AMP] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(2838), + [anon_sym_LT_LT_DASH] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [sym_comment] = ACTIONS(52), + }, + [1373] = { + [anon_sym_RBRACE] = ACTIONS(3087), + [sym_comment] = ACTIONS(52), + }, [1374] = { - [sym__concat] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2558), - [anon_sym_PIPE_AMP] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(3089), [sym_comment] = ACTIONS(52), }, [1375] = { - [sym__concat] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_PIPE_AMP] = ACTIONS(2562), - [anon_sym_AMP_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2562), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(2590), + [anon_sym_SEMI_SEMI] = ACTIONS(2590), + [anon_sym_PIPE_AMP] = ACTIONS(2590), + [anon_sym_AMP_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2590), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_LF] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), }, [1376] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_PIPE_AMP] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_GT] = ACTIONS(2957), - [anon_sym_AMP_GT_GT] = ACTIONS(2814), - [anon_sym_LT_AMP] = ACTIONS(2814), - [anon_sym_GT_AMP] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_LT_LT_DASH] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_RPAREN] = ACTIONS(2594), + [anon_sym_SEMI_SEMI] = ACTIONS(2594), + [anon_sym_PIPE_AMP] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_LF] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), }, [1377] = { - [sym_file_descriptor] = ACTIONS(2818), - [sym__concat] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_PIPE_AMP] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_GT] = ACTIONS(2959), - [anon_sym_AMP_GT_GT] = ACTIONS(2818), - [anon_sym_LT_AMP] = ACTIONS(2818), - [anon_sym_GT_AMP] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_LT_LT_DASH] = ACTIONS(2818), - [anon_sym_BQUOTE] = ACTIONS(2818), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2852), + [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), + [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), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), }, [1378] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), + [sym_file_descriptor] = ACTIONS(2856), + [sym__concat] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_RPAREN] = ACTIONS(2858), + [anon_sym_SEMI_SEMI] = ACTIONS(2858), + [anon_sym_PIPE_AMP] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_GT] = ACTIONS(2858), + [anon_sym_AMP_GT_GT] = ACTIONS(2858), + [anon_sym_LT_AMP] = ACTIONS(2858), + [anon_sym_GT_AMP] = ACTIONS(2858), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_LT_LT_DASH] = ACTIONS(2858), [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), }, [1379] = { - [sym__concat] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_SEMI_SEMI] = ACTIONS(2820), - [anon_sym_PIPE_AMP] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [sym_comment] = ACTIONS(150), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(3091), + [sym_comment] = ACTIONS(52), }, [1380] = { - [sym__heredoc_middle] = ACTIONS(2814), - [sym__heredoc_end] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(3093), [sym_comment] = ACTIONS(52), }, [1381] = { - [sym__heredoc_middle] = ACTIONS(2818), - [sym__heredoc_end] = ACTIONS(2818), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), + [sym__heredoc_middle] = ACTIONS(2588), + [sym__heredoc_end] = ACTIONS(2588), + [anon_sym_DOLLAR] = ACTIONS(2836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2588), [sym_comment] = ACTIONS(52), }, [1382] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_PIPE_AMP] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), + [sym__heredoc_middle] = ACTIONS(2592), + [sym__heredoc_end] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), [sym_comment] = ACTIONS(52), }, [1383] = { - [sym__concat] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_PIPE_AMP] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BQUOTE] = ACTIONS(2818), + [sym__concat] = ACTIONS(2852), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2997), + [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_word] = ACTIONS(2997), + [sym_comment] = ACTIONS(52), + }, + [1384] = { + [sym__concat] = ACTIONS(2856), + [anon_sym_RPAREN] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [sym_raw_string] = ACTIONS(2856), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), + [anon_sym_LT_LPAREN] = ACTIONS(2856), + [anon_sym_GT_LPAREN] = ACTIONS(2856), + [sym_word] = ACTIONS(2999), + [sym_comment] = ACTIONS(52), + }, + [1385] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_SEMI_SEMI] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_raw_string] = ACTIONS(2854), + [anon_sym_DOLLAR] = 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_word] = ACTIONS(2854), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + }, + [1386] = { + [sym__concat] = ACTIONS(2856), + [anon_sym_SEMI_SEMI] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_raw_string] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2858), + [anon_sym_BQUOTE] = ACTIONS(2858), + [anon_sym_LT_LPAREN] = ACTIONS(2858), + [anon_sym_GT_LPAREN] = ACTIONS(2858), + [sym_word] = ACTIONS(2858), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + }, + [1387] = { + [sym_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [sym_variable_name] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2852), + [anon_sym_PIPE_AMP] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2852), + [anon_sym_AMP_GT] = ACTIONS(2997), + [anon_sym_AMP_GT_GT] = ACTIONS(2852), + [anon_sym_LT_AMP] = ACTIONS(2852), + [anon_sym_GT_AMP] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [sym_raw_string] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2997), + [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_word] = ACTIONS(2854), + [sym_comment] = ACTIONS(52), + }, + [1388] = { + [sym_file_descriptor] = ACTIONS(2856), + [sym__concat] = ACTIONS(2856), + [sym_variable_name] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(2856), + [anon_sym_PIPE_AMP] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(2856), + [anon_sym_AMP_GT] = ACTIONS(2999), + [anon_sym_AMP_GT_GT] = ACTIONS(2856), + [anon_sym_LT_AMP] = ACTIONS(2856), + [anon_sym_GT_AMP] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [sym_raw_string] = ACTIONS(2856), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), + [anon_sym_LT_LPAREN] = ACTIONS(2856), + [anon_sym_GT_LPAREN] = ACTIONS(2856), + [sym_word] = ACTIONS(2858), + [sym_comment] = ACTIONS(52), + }, + [1389] = { + [anon_sym_RBRACE] = ACTIONS(3095), + [sym_comment] = ACTIONS(52), + }, + [1390] = { + [anon_sym_RBRACE] = ACTIONS(3097), + [sym_comment] = ACTIONS(52), + }, + [1391] = { + [sym__concat] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_PIPE_AMP] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(2588), + [anon_sym_BQUOTE] = ACTIONS(2588), + [sym_comment] = ACTIONS(52), + }, + [1392] = { + [sym__concat] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_PIPE_AMP] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE_PIPE] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [sym_comment] = ACTIONS(52), + }, + [1393] = { + [sym_file_descriptor] = ACTIONS(2852), + [sym__concat] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2997), + [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(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2852), + [anon_sym_AMP_GT] = ACTIONS(2997), + [anon_sym_AMP_GT_GT] = ACTIONS(2852), + [anon_sym_LT_AMP] = ACTIONS(2852), + [anon_sym_GT_AMP] = ACTIONS(2852), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_LT_LT_DASH] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [sym_comment] = ACTIONS(52), + }, + [1394] = { + [sym_file_descriptor] = ACTIONS(2856), + [sym__concat] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(2856), + [anon_sym_PIPE_AMP] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(2856), + [anon_sym_AMP_GT] = ACTIONS(2999), + [anon_sym_AMP_GT_GT] = ACTIONS(2856), + [anon_sym_LT_AMP] = ACTIONS(2856), + [anon_sym_GT_AMP] = ACTIONS(2856), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_LT_LT_DASH] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), + [sym_comment] = ACTIONS(52), + }, + [1395] = { + [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_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + }, + [1396] = { + [sym__concat] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_RPAREN] = ACTIONS(2858), + [anon_sym_SEMI_SEMI] = ACTIONS(2858), + [anon_sym_PIPE_AMP] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [sym_comment] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + }, + [1397] = { + [sym__heredoc_middle] = ACTIONS(2852), + [sym__heredoc_end] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2852), + [sym_comment] = ACTIONS(52), + }, + [1398] = { + [sym__heredoc_middle] = ACTIONS(2856), + [sym__heredoc_end] = ACTIONS(2856), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2856), + [sym_comment] = ACTIONS(52), + }, + [1399] = { + [sym__concat] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2997), + [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_BQUOTE] = ACTIONS(2852), + [sym_comment] = ACTIONS(52), + }, + [1400] = { + [sym__concat] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(2856), + [anon_sym_PIPE_AMP] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), [sym_comment] = ACTIONS(52), }, }; @@ -29096,963 +29488,963 @@ static TSParseActionEntry ts_parse_actions[] = { [1038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [1048] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), + [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), + [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(527), + [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [1050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), - [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(529), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), + [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), + [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(530), [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), + [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(536), [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(540), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(540), + [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(541), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), - [1082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(544), + [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), [1084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(545), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), - [1088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(548), + [1086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(546), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), [1090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(549), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), - [1094] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(553), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(554), - [1100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(556), - [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), + [1092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(550), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), + [1096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(554), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555), + [1102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(557), [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), - [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), - [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), + [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), + [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(564), [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 2), - [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(570), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [1138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(576), - [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), + [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), + [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), + [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 2), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), + [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(571), + [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), + [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [1140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(577), [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(579), - [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), + [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(580), [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(582), [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(578), - [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), + [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(579), [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), - [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), - [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), - [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), - [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(592), - [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), - [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), + [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), + [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), + [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(593), + [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), - [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(598), - [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), - [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(602), - [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(602), + [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), + [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(599), + [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(603), [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(603), - [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(603), - [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [1194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), - [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(611), - [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), + [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), + [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613), - [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(614), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(615), [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), - [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(613), - [1222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620), - [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(620), - [1230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(622), - [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), - [1234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), - [1238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(627), - [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(626), - [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), - [1244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(630), - [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1248] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), + [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), + [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(614), + [1224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(621), + [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(621), + [1232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(623), + [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(625), + [1236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), + [1240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(628), + [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(627), + [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), + [1246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(631), + [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), - [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(640), - [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), - [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1266] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(13), - [1269] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(143), - [1272] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(15), - [1275] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16), - [1278] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17), - [1281] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(18), - [1284] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(19), - [1287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1289] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(140), - [1292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1294] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(141), - [1297] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(142), - [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(643), + [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), + [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(641), + [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(642), + [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1268] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(13), + [1271] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(143), + [1274] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(15), + [1277] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16), + [1280] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17), + [1283] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(18), + [1286] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(19), + [1289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1291] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(140), + [1294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1296] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(141), + [1299] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(142), [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(645), - [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(645), - [1308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(647), - [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648), - [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(648), - [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [1316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(650), - [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), + [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(646), + [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(646), + [1310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(648), + [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(649), + [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(649), + [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [1318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(651), [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), - [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(654), - [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), - [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(657), - [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), + [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), + [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(658), [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), - [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(660), - [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), - [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), - [1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(665), - [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(664), - [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(668), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), - [1358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(678), - [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), - [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(679), - [1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(681), - [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), + [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), + [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(661), + [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), + [1348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), + [1350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(666), + [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(665), + [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), + [1356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(669), + [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), + [1360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(679), + [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), + [1364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(680), + [1366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(682), [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), - [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(685), - [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(686), [1376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), - [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(688), - [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), + [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), + [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(689), [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), - [1386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(691), - [1388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), - [1390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), - [1392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(696), - [1394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(695), - [1396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), - [1398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(699), - [1400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(707), - [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(415), - [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(416), - [1406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(417), - [1408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), - [1410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), - [1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(420), - [1414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), - [1416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [1418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(709), - [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(710), - [1422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [1426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(717), - [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [1430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(718), - [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), - [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), - [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(723), - [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), - [1442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(724), - [1444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(728), - [1446] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(179), - [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), + [1386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), + [1388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(692), + [1390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), + [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), + [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(697), + [1396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(696), + [1398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), + [1400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(700), + [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(708), + [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(415), + [1406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(416), + [1408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(417), + [1410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), + [1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), + [1414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(420), + [1416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), + [1418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [1420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(710), + [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(711), + [1424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [1428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(718), + [1430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), + [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(719), + [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), + [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), + [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), + [1442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), + [1444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(725), + [1446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(729), + [1448] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(179), [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), - [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(734), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(736), - [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), - [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(737), - [1469] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), - [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(743), + [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(736), + [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(739), + [1473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), - [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), - [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(744), - [1481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(745), - [1487] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(208), - [1490] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(206), - [1493] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(207), - [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), - [1498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1502] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(217), - [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), - [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), + [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(745), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), + [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(746), + [1485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), + [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(747), + [1491] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(208), + [1494] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(206), + [1497] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(207), + [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [1504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1506] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(217), [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752), - [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(753), - [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), - [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(754), - [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), - [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), - [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), - [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(757), - [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), - [1533] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(235), - [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), - [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(753), + [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), + [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), + [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), + [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), + [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), + [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(757), + [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), + [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), + [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(760), + [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), + [1539] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(235), [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), - [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(764), + [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(765), [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(766), [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(767), - [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(767), - [1556] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(252), - [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(769), - [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), - [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), - [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), + [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(768), + [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(768), + [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), + [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), + [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(771), + [1564] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(252), [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(773), [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), - [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(774), + [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(775), [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(776), [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), - [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(777), + [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), - [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), + [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(779), [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), - [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), + [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(782), [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), - [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(784), + [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), - [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(787), - [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), - [1601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), - [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), - [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), - [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), - [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), - [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), - [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), - [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3), + [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), + [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), + [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), + [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(790), + [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), + [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(793), + [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), + [1613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), + [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), + [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [1619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), - [1623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(798), - [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), - [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), - [1629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(803), - [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(802), - [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), - [1635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(806), - [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(815), - [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), - [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(817), - [1645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(821), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), - [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(823), - [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), - [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [1661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(825), - [1663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(826), - [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), - [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [1669] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(302), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), - [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), - [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), - [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(832), - [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), - [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), - [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(835), - [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), - [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(839), - [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), - [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), - [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), - [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(842), - [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), - [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), - [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(841), - [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), - [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3, .fragile = true), - [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), - [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(848), - [1728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(850), - [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), - [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), - [1734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(855), - [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(854), - [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), - [1740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(858), - [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), - [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [1748] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(109), - [1751] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(325), - [1754] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(111), - [1757] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(112), - [1760] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(113), - [1763] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(114), - [1766] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(115), - [1769] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(325), - [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), - [1774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1776] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(322), - [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), - [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1783] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(323), - [1786] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(323), - [1789] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(324), - [1792] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(324), - [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), - [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(872), - [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), - [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), - [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(873), - [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), - [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(874), - [1809] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(340), - [1812] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(340), - [1815] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(338), - [1818] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(339), - [1821] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(339), - [1824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), - [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(878), - [1832] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(880), - [1834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(882), - [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), - [1838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(885), - [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(884), - [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), - [1844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(888), - [1846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [1848] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(896), - [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), - [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(897), - [1854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(899), - [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), - [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), - [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(903), - [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), - [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), - [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), - [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(906), - [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), + [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), + [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 1), + [1627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 1), + [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), + [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), + [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), + [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), + [1639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(804), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), + [1645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(809), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(808), + [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), + [1651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(812), + [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(821), + [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), + [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(823), + [1661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(827), + [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), + [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), + [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), + [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [1675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), + [1677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(831), + [1679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(832), + [1681] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), + [1683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [1685] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(302), + [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), + [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), + [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), + [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), + [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(839), + [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), + [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(842), + [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), + [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(846), + [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), + [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), + [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(849), + [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), + [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(848), + [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), + [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3, .fragile = true), + [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(855), + [1746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(857), + [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), + [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), + [1752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(862), + [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(861), + [1756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), + [1758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(865), + [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [1762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1764] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [1766] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(109), + [1769] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(325), + [1772] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(111), + [1775] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(112), + [1778] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(113), + [1781] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(114), + [1784] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(115), + [1787] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(325), + [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), + [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1794] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(322), + [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1801] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(323), + [1804] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(323), + [1807] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(324), + [1810] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(324), + [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), + [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(879), + [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), + [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(880), + [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), + [1825] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(881), + [1827] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(340), + [1830] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(340), + [1833] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(338), + [1836] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(339), + [1839] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(339), + [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(885), + [1850] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(887), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [1856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(892), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(891), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), + [1862] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(895), + [1864] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [1866] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(903), + [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), + [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(904), + [1872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(906), [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), - [1886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(910), - [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(909), - [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), - [1892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), - [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), - [1898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [1900] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(374), - [1903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [1905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), - [1907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), - [1909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), - [1913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(924), - [1915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(924), - [1917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), - [1919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), - [1921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(927), - [1923] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(929), - [1925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), - [1927] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(930), - [1929] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(932), - [1931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), - [1933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), - [1935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), - [1937] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(936), - [1939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), - [1941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), - [1943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), - [1945] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(939), - [1947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), - [1949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(941), - [1951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1955] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(390), - [1958] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(391), - [1961] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(392), - [1964] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(393), - [1967] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(394), - [1970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(395), - [1973] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(396), - [1976] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(391), - [1979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(401), - [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), - [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), - [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), - [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), - [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), - [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), - [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), - [2002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(952), - [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), - [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), - [2008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(955), - [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), - [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(959), - [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), - [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), - [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), - [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(962), - [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), - [2030] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(415), - [2033] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(416), - [2036] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(417), - [2039] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(418), - [2042] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(419), - [2045] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(420), - [2048] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(421), - [2051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2053] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), - [2055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [2057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(967), - [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [2061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), - [2065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2067] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(430), - [2070] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), - [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(972), - [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(975), - [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), - [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), - [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), - [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), - [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), - [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), - [2096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(987), - [2102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), - [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), - [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), - [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), - [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), + [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), + [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), + [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(910), + [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), + [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), + [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(913), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), + [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), + [1904] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(917), + [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(916), + [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), + [1910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(920), + [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(924), + [1916] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [1918] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(374), + [1921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), + [1923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), + [1925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [1927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), + [1929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), + [1931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), + [1933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), + [1935] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(932), + [1937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), + [1939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), + [1941] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(935), + [1943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(937), + [1945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), + [1947] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(938), + [1949] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(940), + [1951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), + [1953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), + [1955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), + [1957] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(944), + [1959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), + [1961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [1963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [1965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), + [1967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), + [1969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [1971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1975] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(390), + [1978] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(391), + [1981] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(392), + [1984] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(393), + [1987] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(394), + [1990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(395), + [1993] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(396), + [1996] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(391), + [1999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(401), + [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), + [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), + [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), + [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(956), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(959), + [2024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(961), + [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(962), + [2030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(964), + [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), + [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), + [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(968), + [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), + [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), + [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(971), + [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(972), + [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), + [2052] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(415), + [2055] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(416), + [2058] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(417), + [2061] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(418), + [2064] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(419), + [2067] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(420), + [2070] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(421), + [2073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [2075] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), + [2077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), + [2079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(976), + [2081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [2083] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), + [2087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2089] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(430), + [2092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), + [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [2102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(984), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), + [2118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), - [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), - [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), - [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), - [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), - [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), - [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), - [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), - [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), - [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), - [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), - [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), - [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), - [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), - [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), - [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), - [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), - [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [2164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), - [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [2170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), - [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), - [2176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1020), - [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), - [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1021), - [2182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1023), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), + [2124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), + [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 1), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), + [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), + [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), + [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), + [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), + [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), + [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), - [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), - [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1027), - [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), - [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), - [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), - [2204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1033), - [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), - [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1034), - [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), - [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1035), - [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1038), - [2222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1040), - [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), - [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), - [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), - [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), - [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), - [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), - [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), - [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), - [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), - [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1050), - [2252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1052), - [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), - [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), - [2258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1057), - [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1056), - [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), - [2264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1060), - [2266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1068), - [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1069), - [2272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1071), - [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), - [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), - [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), - [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1075), - [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), - [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), - [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), - [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1078), - [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), - [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), - [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), - [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), - [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), + [2188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), + [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), + [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [2194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), + [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [2200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1029), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), + [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), + [2206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1032), + [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), + [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), + [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), + [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1036), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1039), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), + [2228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1042), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), + [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1043), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1044), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1047), + [2246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1049), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1059), + [2276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1061), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), + [2282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1066), + [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1065), + [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), + [2288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1069), + [2290] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1077), + [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), + [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1078), + [2296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1080), + [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1084), - [2306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1087), - [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), - [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1088), - [2312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1090), - [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), - [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), - [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), - [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1094), - [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), - [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1097), - [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), - [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [2334] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(624), - [2337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), - [2339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), - [2341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), - [2343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), - [2345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), - [2347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), - [2349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1105), - [2351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), - [2353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), - [2355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1108), - [2357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1110), - [2359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [2361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), - [2363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), - [2365] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1114), - [2367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), - [2369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), - [2371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), - [2373] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1117), - [2375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [2377] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [2379] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(638), - [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [2384] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(640), - [2387] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(641), - [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), - [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1119), - [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), - [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121), - [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), - [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), - [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), - [2404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(662), - [2407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), - [2409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), - [2411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), - [2413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), - [2415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), - [2417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130), - [2419] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1130), - [2421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1132), - [2423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), - [2425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1133), - [2427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135), - [2429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), - [2431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), - [2433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138), - [2435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), - [2437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), - [2439] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(693), - [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), - [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), - [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), - [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), - [2450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), - [2454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1146), - [2456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1148), - [2458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), - [2460] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1149), - [2462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [2464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [2466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1152), - [2470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1153), - [2472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1153), - [2474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), - [2476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), - [2478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [2480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2482] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(155), - [2485] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(724), - [2488] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(157), - [2491] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(158), - [2494] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(159), - [2497] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(160), - [2500] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(161), - [2503] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(724), - [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1160), - [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), - [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1162), - [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), - [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), - [2516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1166), - [2520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), - [2522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), - [2524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), - [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), - [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), - [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), - [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), - [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), - [2540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), - [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1176), - [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), - [2546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), - [2548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), - [2550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), - [2552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), - [2554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), - [2556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [2558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [2560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [2562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2566] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [2568] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(800), - [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), - [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), - [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), - [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), - [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), - [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), - [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1189), - [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), - [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), - [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1192), - [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [2593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [2597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), - [2601] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [2603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1197), - [2607] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), - [2609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), - [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), - [2619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), - [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203), - [2623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1204), - [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), - [2627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1205), - [2629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1207), - [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [2635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), - [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1211), - [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), - [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), - [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), - [2645] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1214), - [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), - [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), - [2651] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(852), - [2654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), - [2656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [2658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [2660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), - [2662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), - [2664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), - [2666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1222), - [2668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), - [2670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), - [2672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1225), - [2674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [2676] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(882), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), + [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1087), + [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), + [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1093), + [2330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1096), + [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), + [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1097), + [2336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1099), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), + [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), + [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), + [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1103), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), + [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), + [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), + [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1106), + [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), + [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [2358] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(625), + [2361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), + [2363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), + [2367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), + [2371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [2373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), + [2375] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1115), + [2377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [2379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), + [2381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1118), + [2383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1120), + [2385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), + [2387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), + [2389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), + [2391] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1124), + [2393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), + [2395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), + [2397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), + [2399] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1127), + [2401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [2403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [2405] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(639), + [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [2410] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(641), + [2413] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(642), + [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), + [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), + [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130), + [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1131), + [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1132), + [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134), + [2430] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(663), + [2433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135), + [2435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), + [2437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), + [2439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138), + [2441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), + [2443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), + [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), + [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1141), + [2449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), + [2451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), + [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1144), + [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), + [2457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1147), + [2459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1148), + [2461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), + [2463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), + [2465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), + [2467] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(694), + [2470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1152), + [2472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1153), + [2474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), + [2476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), + [2478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), + [2480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), + [2482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1158), + [2484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1158), + [2486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), + [2488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), + [2490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1161), + [2492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [2494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [2496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), + [2500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), + [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1165), + [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), + [2508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2512] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(155), + [2515] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(725), + [2518] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(157), + [2521] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(158), + [2524] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(159), + [2527] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(160), + [2530] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(161), + [2533] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(725), + [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1172), + [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [2540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), + [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1176), + [2546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [2548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), + [2550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [2552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), + [2554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), + [2556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), + [2558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), + [2560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), + [2562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [2564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), + [2566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [2568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [2570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [2572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), + [2574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [2576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [2578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [2580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), + [2582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), + [2584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), + [2586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), + [2588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), + [2590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), + [2592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2596] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), + [2598] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(806), + [2601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), + [2603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), + [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), + [2607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1199), + [2609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), + [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), + [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), + [2615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1202), + [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), + [2619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), + [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1205), + [2623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), + [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [2627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [2629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), + [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), + [2635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1210), + [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), + [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), + [2645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), + [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), + [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), + [2653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), + [2655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1217), + [2657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1218), + [2661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1220), + [2663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), + [2665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), + [2667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), + [2669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1224), + [2671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), + [2673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), + [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), + [2677] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1227), [2679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), [2681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), - [2683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), - [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), - [2687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), - [2689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), - [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1233), - [2693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), - [2695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), - [2697] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1236), - [2699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), - [2701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), - [2703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), - [2705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), - [2707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), - [2709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [2711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), - [2713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), - [2715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), - [2717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), - [2719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), - [2721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), - [2723] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1249), - [2725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), - [2727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1252), - [2729] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1252), - [2731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), - [2733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), - [2735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1256), - [2737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), - [2739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), - [2741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), - [2743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), - [2745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), - [2747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), - [2749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), - [2751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), - [2753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), - [2755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), - [2757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1267), - [2759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), - [2761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), - [2763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), - [2765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1271), - [2767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), - [2769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), - [2771] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [2773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [2775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [2777] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [2779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [2781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [2783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), - [2785] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(971), - [2788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), - [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), - [2794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), - [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), - [2798] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [2800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [2802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), - [2804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), - [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), - [2808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), - [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), - [2812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), - [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), - [2816] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), - [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [2820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [2822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), - [2824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), - [2826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), - [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), - [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), - [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), - [2834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), - [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), - [2844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [2846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [2848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1294), - [2850] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), - [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [2854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1295), - [2856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), - [2858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1054), - [2861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), - [2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), - [2865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), - [2867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), - [2869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), - [2871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), - [2873] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1302), - [2875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), - [2877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), - [2879] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1305), - [2881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), - [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308), - [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), - [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), - [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1311), - [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1312), - [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1313), - [2895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1314), - [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), - [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1316), - [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), - [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), - [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), - [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), - [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), - [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), - [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1323), - [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), - [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), - [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326), - [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), - [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), - [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), - [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), - [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), - [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), - [2933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), - [2935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1334), - [2937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), - [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), - [2941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), - [2943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1338), - [2945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1339), - [2947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1340), - [2949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [2951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [2953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [2683] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(859), + [2686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), + [2688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [2690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), + [2694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), + [2696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), + [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1236), + [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), + [2704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [2706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1239), + [2708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [2710] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(889), + [2713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [2717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), + [2719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [2721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [2725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1248), + [2729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [2731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), + [2733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1251), + [2735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253), + [2737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), + [2739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), + [2741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1256), + [2743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), + [2745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), + [2747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), + [2749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), + [2751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), + [2753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), + [2755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), + [2757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), + [2759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), + [2761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1265), + [2763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1267), + [2765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), + [2767] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1268), + [2769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [2771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1271), + [2773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), + [2775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [2777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), + [2779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [2781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), + [2783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [2785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), + [2787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [2789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), + [2791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), + [2793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), + [2795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), + [2797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), + [2799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), + [2801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), + [2803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [2805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), + [2807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), + [2809] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [2811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [2813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), + [2815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [2817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2819] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), + [2823] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(980), + [2826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), + [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), + [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1295), + [2834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), + [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), + [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), + [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), + [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [2844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), + [2846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), + [2848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), + [2850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), + [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), + [2854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), + [2856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [2858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [2860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303), + [2862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), + [2864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), + [2866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306), + [2868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), + [2870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308), + [2872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), + [2874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [2876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [2878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), + [2882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), + [2884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [2886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1310), + [2888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), + [2890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [2892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1311), + [2894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1312), + [2896] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1063), + [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1313), + [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1314), + [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), + [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1316), + [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), + [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), + [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), + [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1319), + [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), + [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), + [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1322), + [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), + [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), + [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326), + [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), + [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), + [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), + [2933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), + [2935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), + [2937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), + [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), + [2941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1334), + [2943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), + [2945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), + [2947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), + [2949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1338), + [2951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1339), + [2953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1340), [2955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1341), - [2957] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), - [2959] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), - [2961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1342), - [2963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), - [2965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1344), - [2967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1345), - [2969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [2971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [2973] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), - [2975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [2977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), - [2979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), - [2981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), - [2983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), - [2985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), - [2987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), - [2989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), - [2991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1353), - [2993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), - [2995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), - [2997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1356), - [2999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), - [3001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), - [3003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), - [3005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), - [3007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), - [3009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), - [3011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), - [3013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1364), - [3015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), - [3017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), - [3019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), - [3021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), - [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), - [3025] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [3027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [3029] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [2957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1342), + [2959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), + [2961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1344), + [2963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1345), + [2965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), + [2967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), + [2969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), + [2971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), + [2973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), + [2975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), + [2977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), + [2979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1353), + [2981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), + [2983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), + [2985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1356), + [2987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), + [2989] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [2991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [2993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [2995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), + [2997] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), + [2999] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), + [3001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), + [3003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), + [3005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), + [3007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), + [3009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [3011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [3013] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), + [3015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [3017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), + [3019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1364), + [3021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), + [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), + [3025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), + [3027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), + [3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), [3031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370), [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1372), @@ -30067,6 +30459,26 @@ static TSParseActionEntry ts_parse_actions[] = { [3053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), [3055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), [3057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), + [3059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), + [3061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1385), + [3063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), + [3065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), + [3067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [3069] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1387), + [3073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388), + [3075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), + [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), + [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1391), + [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), + [3083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), + [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1394), + [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1395), + [3089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1396), + [3091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), + [3093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), + [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), + [3097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1400), }; void *tree_sitter_bash_external_scanner_create();