From 52d54bb173ce484ee9969a1ba574d3ac8ebe8816 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 26 Dec 2017 14:27:05 -0800 Subject: [PATCH] Add missing function definition forms --- corpus/control_flow.txt | 16 +- grammar.js | 6 +- src/grammar.json | 37 +- src/parser.c | 32906 ++++++++++++++++++++------------------ 4 files changed, 17619 insertions(+), 15346 deletions(-) diff --git a/corpus/control_flow.txt b/corpus/control_flow.txt index 94c2cd7..de8a154 100644 --- a/corpus/control_flow.txt +++ b/corpus/control_flow.txt @@ -129,8 +129,20 @@ function do_something_else() { echo ok } +function do_yet_another_thing { + echo ok +} 2>&1 + --- (program - (function_definition (word) (compound_statement (command (command_name (word)) (word)))) - (function_definition (word) (compound_statement (command (command_name (word)) (word))))) + (function_definition + (word) + (compound_statement (command (command_name (word)) (word)))) + (function_definition + (word) + (compound_statement (command (command_name (word)) (word)))) + (function_definition + (word) + (compound_statement (command (command_name (word)) (word))) + (file_redirect (file_descriptor) (word)))) diff --git a/grammar.js b/grammar.js index 09a7f9c..ef3f351 100644 --- a/grammar.js +++ b/grammar.js @@ -124,9 +124,9 @@ module.exports = grammar({ function_definition: $ => seq( optional('function'), $.word, - '(', - ')', - $.compound_statement + optional(seq('(', ')')), + $.compound_statement, + optional($.file_redirect) ), compound_statement: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index 2c26368..270bcd4 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -330,16 +330,41 @@ "name": "word" }, { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", "name": "compound_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "file_redirect" + }, + { + "type": "BLANK" + } + ] } ] }, diff --git a/src/parser.c b/src/parser.c index 2f23648..a6a0425 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 4 -#define STATE_COUNT 1109 +#define STATE_COUNT 1251 #define SYMBOL_COUNT 115 #define ALIAS_COUNT 1 #define TOKEN_COUNT 73 @@ -1584,6 +1584,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(8); if (lookahead == '&') ADVANCE(82); + if (lookahead == '(') + ADVANCE(15); if (lookahead == ')') ADVANCE(16); if (lookahead == '/') @@ -1970,6 +1972,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(118); if (lookahead == '`') ADVANCE(45); + if (lookahead == '{') + ADVANCE(46); if (lookahead == '|') ADVANCE(112); if (lookahead == '\t' || @@ -2461,6 +2465,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(147); if (lookahead == '`') ADVANCE(45); + if (lookahead == '{') + ADVANCE(46); if (lookahead == '|') ADVANCE(112); if (lookahead == '\t' || @@ -2616,19 +2622,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(58); END_STATE(); case 154: + if (lookahead == '\"') + ADVANCE(3); if (lookahead == '#') ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(53); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); + if (lookahead == '<') + ADVANCE(54); + if (lookahead == '>') + ADVANCE(33); + if (lookahead == '[') + ADVANCE(55); if (lookahead == '\\') - SKIP(155); + ADVANCE(155); + if (lookahead == '`') + ADVANCE(45); + if (lookahead == 'c') + ADVANCE(60); + if (lookahead == 'f') + ADVANCE(64); + if (lookahead == 'i') + ADVANCE(74); + if (lookahead == 'w') + ADVANCE(76); + if (lookahead == '}') + ADVANCE(50); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(154); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '{') + ADVANCE(58); END_STATE(); case 155: if (lookahead == '\n') SKIP(154); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(58); END_STATE(); case 156: if (lookahead == '\n') @@ -2658,8 +2704,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_GT); @@ -2677,8 +2721,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(52); if (lookahead == '\\') SKIP(161); - if (lookahead == ']') - ADVANCE(85); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2690,126 +2732,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(160); END_STATE(); case 162: + if (lookahead == '\n') + ADVANCE(110); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(9); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(25); + if (lookahead == '<') + ADVANCE(163); + if (lookahead == '>') + ADVANCE(158); + if (lookahead == '\\') + SKIP(164); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(162); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(28); + if (lookahead == '<') + ADVANCE(30); + END_STATE(); + case 164: + if (lookahead == '\n') + SKIP(162); + END_STATE(); + case 165: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '\\') + SKIP(166); + if (lookahead == ']') + ADVANCE(85); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(165); + END_STATE(); + case 166: + if (lookahead == '\n') + SKIP(165); + END_STATE(); + case 167: if (lookahead == '#') ADVANCE(52); if (lookahead == ')') ADVANCE(16); if (lookahead == '\\') - ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(162); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 163: - if (lookahead == '\n') - SKIP(162); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 164: - if (lookahead == '\"') - ADVANCE(3); - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '$') - ADVANCE(5); - if (lookahead == '&') - ADVANCE(53); - if (lookahead == '\'') - ADVANCE(13); - if (lookahead == '(') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(54); - if (lookahead == '>') - ADVANCE(33); - if (lookahead == '[') - ADVANCE(55); - if (lookahead == '\\') - ADVANCE(165); - if (lookahead == '`') - ADVANCE(45); - if (lookahead == 'c') - ADVANCE(60); - if (lookahead == 'd') - ADVANCE(166); - if (lookahead == 'f') - ADVANCE(64); - if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') - ADVANCE(76); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(164); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 165: - if (lookahead == '\n') - SKIP(164); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 166: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'o') - ADVANCE(167); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 167: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'n') ADVANCE(168); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(167); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -2821,46 +2807,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(58); END_STATE(); case 168: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'e') - ADVANCE(169); + if (lookahead == '\n') + SKIP(167); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') + lookahead != ' ') ADVANCE(58); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_done); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(58); - END_STATE(); - case 170: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') @@ -2880,15 +2836,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(55); if (lookahead == '\\') - ADVANCE(171); + ADVANCE(170); if (lookahead == '`') ADVANCE(45); if (lookahead == 'c') ADVANCE(60); - if (lookahead == 'e') - ADVANCE(172); + if (lookahead == 'd') + ADVANCE(171); if (lookahead == 'f') - ADVANCE(178); + ADVANCE(64); if (lookahead == 'i') ADVANCE(74); if (lookahead == 'w') @@ -2897,7 +2853,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(170); + SKIP(169); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -2906,9 +2862,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 171: + case 170: if (lookahead == '\n') - SKIP(170); + SKIP(169); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2916,11 +2872,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(58); END_STATE(); + case 171: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'o') + ADVANCE(172); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(58); + END_STATE(); case 172: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(57); - if (lookahead == 'l') + if (lookahead == 'n') ADVANCE(173); if (lookahead != 0 && lookahead != '\t' && @@ -2941,10 +2918,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(57); - if (lookahead == 'i') + if (lookahead == 'e') ADVANCE(174); - if (lookahead == 's') - ADVANCE(176); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2961,11 +2936,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(58); END_STATE(); case 174: - ACCEPT_TOKEN(sym_word); + ACCEPT_TOKEN(anon_sym_done); if (lookahead == '\\') ADVANCE(57); - if (lookahead == 'f') - ADVANCE(175); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2982,49 +2955,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(58); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(53); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); + if (lookahead == '<') + ADVANCE(54); + if (lookahead == '>') + ADVANCE(33); + if (lookahead == '[') + ADVANCE(55); if (lookahead == '\\') - ADVANCE(57); + ADVANCE(176); + if (lookahead == '`') + ADVANCE(45); + if (lookahead == 'c') + ADVANCE(60); + if (lookahead == 'e') + ADVANCE(177); + if (lookahead == 'f') + ADVANCE(183); + if (lookahead == 'i') + ADVANCE(74); + if (lookahead == 'w') + ADVANCE(76); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(175); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && - lookahead != '>' && - lookahead != '`' && lookahead != '{' && lookahead != '}') ADVANCE(58); END_STATE(); case 176: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(57); - if (lookahead == 'e') - ADVANCE(177); + if (lookahead == '\n') + SKIP(175); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') + lookahead != ' ') ADVANCE(58); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(57); + if (lookahead == 'l') + ADVANCE(178); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3046,6 +3037,109 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(57); if (lookahead == 'i') ADVANCE(179); + if (lookahead == 's') + ADVANCE(181); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(58); + END_STATE(); + case 179: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'f') + ADVANCE(180); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(58); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(58); + END_STATE(); + case 181: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(182); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(58); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(58); + END_STATE(); + case 183: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'i') + ADVANCE(184); if (lookahead == 'o') ADVANCE(65); if (lookahead == 'u') @@ -3065,7 +3159,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 179: + case 184: ACCEPT_TOKEN(anon_sym_fi); if (lookahead == '\\') ADVANCE(57); @@ -3084,7 +3178,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 180: + case 185: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') @@ -3106,7 +3200,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(55); if (lookahead == '\\') - ADVANCE(181); + ADVANCE(186); if (lookahead == '`') ADVANCE(45); if (lookahead == 'c') @@ -3121,7 +3215,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(180); + SKIP(185); if (lookahead != 0 && lookahead != ';' && lookahead != '<' && @@ -3129,9 +3223,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 181: + case 186: if (lookahead == '\n') - SKIP(180); + SKIP(185); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3139,7 +3233,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(58); END_STATE(); - case 182: + case 187: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') @@ -3153,7 +3247,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(129); if (lookahead == '\\') - ADVANCE(183); + ADVANCE(188); if (lookahead == ']') ADVANCE(138); if (lookahead == '`') @@ -3164,7 +3258,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(182); + SKIP(187); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3172,9 +3266,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '{') ADVANCE(58); END_STATE(); - case 183: + case 188: if (lookahead == '\n') - SKIP(182); + SKIP(187); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3182,7 +3276,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(58); END_STATE(); - case 184: + case 189: if (lookahead == '#') ADVANCE(52); if (lookahead == '&') @@ -3194,54 +3288,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(158); if (lookahead == '\\') - SKIP(185); + SKIP(190); if (lookahead == '`') ADVANCE(45); if (lookahead == '|') ADVANCE(47); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(184); - END_STATE(); - case 185: - if (lookahead == '\n') - SKIP(184); - END_STATE(); - case 186: - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '$') - ADVANCE(187); - if (lookahead == '\\') - SKIP(188); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(186); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') - ADVANCE(7); - END_STATE(); - case 188: - if (lookahead == '\n') - SKIP(186); - END_STATE(); - case 189: - if (lookahead == '#') - ADVANCE(52); - if (lookahead == ')') - ADVANCE(16); - if (lookahead == '\\') - SKIP(190); - if (lookahead == ']') - ADVANCE(85); - if (lookahead == '|') - ADVANCE(191); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3253,9 +3304,79 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(189); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(144); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(163); + if (lookahead == '>') + ADVANCE(158); + if (lookahead == '\\') + SKIP(192); + if (lookahead == '`') + ADVANCE(45); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(191); END_STATE(); case 192: + if (lookahead == '\n') + SKIP(191); + END_STATE(); + case 193: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(194); + if (lookahead == '\\') + SKIP(195); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(193); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') + ADVANCE(7); + END_STATE(); + case 195: + if (lookahead == '\n') + SKIP(193); + END_STATE(); + case 196: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '\\') + SKIP(197); + if (lookahead == ']') + ADVANCE(85); + if (lookahead == '|') + ADVANCE(198); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(196); + END_STATE(); + case 197: + if (lookahead == '\n') + SKIP(196); + END_STATE(); + case 198: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 199: if (lookahead == '\n') ADVANCE(110); if (lookahead == '\"') @@ -3275,22 +3396,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(129); if (lookahead == '\\') - ADVANCE(193); + ADVANCE(200); if (lookahead == '`') ADVANCE(45); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(192); + SKIP(199); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != '{' && lookahead != '}') ADVANCE(58); END_STATE(); - case 193: + case 200: if (lookahead == '\n') - SKIP(192); + SKIP(199); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3298,7 +3419,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(58); END_STATE(); - case 194: + case 201: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') @@ -3318,13 +3439,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(55); if (lookahead == '\\') - ADVANCE(195); + ADVANCE(202); if (lookahead == '`') ADVANCE(45); if (lookahead == 'c') ADVANCE(60); if (lookahead == 'f') - ADVANCE(178); + ADVANCE(183); if (lookahead == 'i') ADVANCE(74); if (lookahead == 'w') @@ -3333,7 +3454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(194); + SKIP(201); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3342,9 +3463,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 195: + case 202: if (lookahead == '\n') - SKIP(194); + SKIP(201); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3352,7 +3473,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(58); END_STATE(); - case 196: + case 203: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') @@ -3366,16 +3487,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(129); if (lookahead == '\\') - ADVANCE(197); + ADVANCE(204); if (lookahead == '`') ADVANCE(45); if (lookahead == 'e') - ADVANCE(198); + ADVANCE(205); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(196); + SKIP(203); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3384,9 +3505,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 197: + case 204: if (lookahead == '\n') - SKIP(196); + SKIP(203); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3394,12 +3515,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(58); END_STATE(); - case 198: + case 205: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(57); if (lookahead == 's') - ADVANCE(199); + ADVANCE(206); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3415,12 +3536,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 199: + case 206: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(57); if (lookahead == 'a') - ADVANCE(200); + ADVANCE(207); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3437,12 +3558,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 200: + case 207: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(57); if (lookahead == 'c') - ADVANCE(201); + ADVANCE(208); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3458,7 +3579,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 201: + case 208: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(57); @@ -3477,98 +3598,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(58); END_STATE(); - case 202: + case 209: if (lookahead == '#') ADVANCE(52); if (lookahead == '\\') - SKIP(203); + SKIP(210); if (lookahead == '}') ADVANCE(50); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(202); + SKIP(209); END_STATE(); - case 203: + case 210: if (lookahead == '\n') - SKIP(202); + SKIP(209); END_STATE(); - case 204: - if (lookahead == '\"') - ADVANCE(3); - if (lookahead == '#') - ADVANCE(52); - if (lookahead == '$') - ADVANCE(5); - if (lookahead == '&') - ADVANCE(53); - if (lookahead == '\'') - ADVANCE(13); - if (lookahead == '(') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(54); - if (lookahead == '>') - ADVANCE(33); - if (lookahead == '[') - ADVANCE(55); - if (lookahead == '\\') - ADVANCE(205); - if (lookahead == '`') - ADVANCE(45); - if (lookahead == 'c') - ADVANCE(60); - if (lookahead == 'f') - ADVANCE(64); - if (lookahead == 'i') - ADVANCE(74); - if (lookahead == 'w') - ADVANCE(76); - if (lookahead == '}') - ADVANCE(50); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(204); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{') - ADVANCE(58); - END_STATE(); - case 205: - if (lookahead == '\n') - SKIP(204); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(58); - END_STATE(); - case 206: + case 211: if (lookahead == '#') ADVANCE(52); if (lookahead == ')') ADVANCE(16); if (lookahead == '\\') - SKIP(207); + SKIP(212); if (lookahead == '|') - ADVANCE(191); + ADVANCE(198); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(206); + SKIP(211); END_STATE(); - case 207: + case 212: if (lookahead == '\n') - SKIP(206); + SKIP(211); END_STATE(); - case 208: + case 213: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(82); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '\\') + SKIP(214); + if (lookahead == '`') + ADVANCE(45); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(213); + END_STATE(); + case 214: + if (lookahead == '\n') + SKIP(213); + END_STATE(); + case 215: if (lookahead == '\"') ADVANCE(3); if (lookahead == '#') @@ -3590,7 +3679,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(55); if (lookahead == '\\') - ADVANCE(209); + ADVANCE(216); if (lookahead == '`') ADVANCE(45); if (lookahead == 'c') @@ -3605,16 +3694,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(208); + SKIP(215); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != '{' && lookahead != '}') ADVANCE(58); END_STATE(); - case 209: + case 216: if (lookahead == '\n') - SKIP(208); + SKIP(215); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3675,7 +3764,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [44] = {.lex_state = 51, .external_lex_state = 2}, [45] = {.lex_state = 51, .external_lex_state = 2}, [46] = {.lex_state = 131, .external_lex_state = 4}, - [47] = {.lex_state = 51}, + [47] = {.lex_state = 81}, [48] = {.lex_state = 122, .external_lex_state = 4}, [49] = {.lex_state = 134, .external_lex_state = 6}, [50] = {.lex_state = 51, .external_lex_state = 2}, @@ -3751,992 +3840,1134 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 81}, [121] = {.lex_state = 148, .external_lex_state = 2}, [122] = {.lex_state = 81}, - [123] = {.lex_state = 51, .external_lex_state = 2}, - [124] = {.lex_state = 119, .external_lex_state = 2}, + [123] = {.lex_state = 154, .external_lex_state = 2}, + [124] = {.lex_state = 156, .external_lex_state = 5}, [125] = {.lex_state = 51, .external_lex_state = 2}, - [126] = {.lex_state = 51}, - [127] = {.lex_state = 102}, - [128] = {.lex_state = 154, .external_lex_state = 13}, - [129] = {.lex_state = 109, .external_lex_state = 3}, - [130] = {.lex_state = 156, .external_lex_state = 5}, - [131] = {.lex_state = 109, .external_lex_state = 5}, - [132] = {.lex_state = 109, .external_lex_state = 5}, - [133] = {.lex_state = 156, .external_lex_state = 5}, - [134] = {.lex_state = 119, .external_lex_state = 2}, - [135] = {.lex_state = 81}, - [136] = {.lex_state = 109, .external_lex_state = 5}, - [137] = {.lex_state = 102, .external_lex_state = 2}, - [138] = {.lex_state = 81}, - [139] = {.lex_state = 102, .external_lex_state = 10}, - [140] = {.lex_state = 102, .external_lex_state = 2}, - [141] = {.lex_state = 104}, - [142] = {.lex_state = 160, .external_lex_state = 9}, - [143] = {.lex_state = 114}, - [144] = {.lex_state = 114}, - [145] = {.lex_state = 51, .external_lex_state = 2}, - [146] = {.lex_state = 51, .external_lex_state = 2}, + [126] = {.lex_state = 119, .external_lex_state = 2}, + [127] = {.lex_state = 51, .external_lex_state = 2}, + [128] = {.lex_state = 51}, + [129] = {.lex_state = 102}, + [130] = {.lex_state = 160, .external_lex_state = 13}, + [131] = {.lex_state = 109, .external_lex_state = 3}, + [132] = {.lex_state = 162, .external_lex_state = 5}, + [133] = {.lex_state = 109, .external_lex_state = 5}, + [134] = {.lex_state = 109, .external_lex_state = 5}, + [135] = {.lex_state = 162, .external_lex_state = 5}, + [136] = {.lex_state = 119, .external_lex_state = 2}, + [137] = {.lex_state = 81}, + [138] = {.lex_state = 109, .external_lex_state = 5}, + [139] = {.lex_state = 102, .external_lex_state = 2}, + [140] = {.lex_state = 81}, + [141] = {.lex_state = 102, .external_lex_state = 10}, + [142] = {.lex_state = 102, .external_lex_state = 2}, + [143] = {.lex_state = 104}, + [144] = {.lex_state = 165, .external_lex_state = 9}, + [145] = {.lex_state = 114}, + [146] = {.lex_state = 114}, [147] = {.lex_state = 51, .external_lex_state = 2}, - [148] = {.lex_state = 81}, - [149] = {.lex_state = 134, .external_lex_state = 6}, - [150] = {.lex_state = 162}, - [151] = {.lex_state = 104}, - [152] = {.lex_state = 134, .external_lex_state = 14}, - [153] = {.lex_state = 114}, - [154] = {.lex_state = 114}, - [155] = {.lex_state = 51, .external_lex_state = 2}, - [156] = {.lex_state = 51, .external_lex_state = 2}, + [148] = {.lex_state = 51, .external_lex_state = 2}, + [149] = {.lex_state = 51, .external_lex_state = 2}, + [150] = {.lex_state = 81}, + [151] = {.lex_state = 134, .external_lex_state = 6}, + [152] = {.lex_state = 167}, + [153] = {.lex_state = 104}, + [154] = {.lex_state = 134, .external_lex_state = 14}, + [155] = {.lex_state = 114}, + [156] = {.lex_state = 114}, [157] = {.lex_state = 51, .external_lex_state = 2}, - [158] = {.lex_state = 102}, - [159] = {.lex_state = 164, .external_lex_state = 2}, - [160] = {.lex_state = 122, .external_lex_state = 4}, - [161] = {.lex_state = 81}, - [162] = {.lex_state = 170, .external_lex_state = 2}, - [163] = {.lex_state = 131, .external_lex_state = 8}, - [164] = {.lex_state = 104}, - [165] = {.lex_state = 102}, - [166] = {.lex_state = 131, .external_lex_state = 4}, - [167] = {.lex_state = 81}, - [168] = {.lex_state = 131, .external_lex_state = 8}, - [169] = {.lex_state = 131, .external_lex_state = 8}, + [158] = {.lex_state = 51, .external_lex_state = 2}, + [159] = {.lex_state = 51, .external_lex_state = 2}, + [160] = {.lex_state = 102}, + [161] = {.lex_state = 169, .external_lex_state = 2}, + [162] = {.lex_state = 122, .external_lex_state = 4}, + [163] = {.lex_state = 81}, + [164] = {.lex_state = 175, .external_lex_state = 2}, + [165] = {.lex_state = 131, .external_lex_state = 8}, + [166] = {.lex_state = 104}, + [167] = {.lex_state = 102}, + [168] = {.lex_state = 131, .external_lex_state = 4}, + [169] = {.lex_state = 81}, [170] = {.lex_state = 131, .external_lex_state = 8}, [171] = {.lex_state = 131, .external_lex_state = 8}, - [172] = {.lex_state = 114}, - [173] = {.lex_state = 81}, - [174] = {.lex_state = 81}, + [172] = {.lex_state = 131, .external_lex_state = 8}, + [173] = {.lex_state = 131, .external_lex_state = 8}, + [174] = {.lex_state = 114}, [175] = {.lex_state = 81}, - [176] = {.lex_state = 148, .external_lex_state = 2}, + [176] = {.lex_state = 81}, [177] = {.lex_state = 81}, - [178] = {.lex_state = 152, .external_lex_state = 2}, + [178] = {.lex_state = 148, .external_lex_state = 2}, [179] = {.lex_state = 81}, - [180] = {.lex_state = 148, .external_lex_state = 2}, + [180] = {.lex_state = 152, .external_lex_state = 2}, [181] = {.lex_state = 81}, - [182] = {.lex_state = 122, .external_lex_state = 4}, - [183] = {.lex_state = 180, .external_lex_state = 2}, - [184] = {.lex_state = 122, .external_lex_state = 4}, - [185] = {.lex_state = 134, .external_lex_state = 6}, - [186] = {.lex_state = 182, .external_lex_state = 9}, - [187] = {.lex_state = 104}, - [188] = {.lex_state = 102}, - [189] = {.lex_state = 182, .external_lex_state = 9}, - [190] = {.lex_state = 182, .external_lex_state = 9}, - [191] = {.lex_state = 182, .external_lex_state = 9}, - [192] = {.lex_state = 182, .external_lex_state = 9}, - [193] = {.lex_state = 114}, - [194] = {.lex_state = 81}, - [195] = {.lex_state = 81}, - [196] = {.lex_state = 81}, - [197] = {.lex_state = 148, .external_lex_state = 2}, + [182] = {.lex_state = 148, .external_lex_state = 2}, + [183] = {.lex_state = 81}, + [184] = {.lex_state = 156, .external_lex_state = 5}, + [185] = {.lex_state = 122, .external_lex_state = 4}, + [186] = {.lex_state = 185, .external_lex_state = 2}, + [187] = {.lex_state = 122, .external_lex_state = 4}, + [188] = {.lex_state = 134, .external_lex_state = 6}, + [189] = {.lex_state = 187, .external_lex_state = 9}, + [190] = {.lex_state = 104}, + [191] = {.lex_state = 102}, + [192] = {.lex_state = 187, .external_lex_state = 9}, + [193] = {.lex_state = 187, .external_lex_state = 9}, + [194] = {.lex_state = 187, .external_lex_state = 9}, + [195] = {.lex_state = 187, .external_lex_state = 9}, + [196] = {.lex_state = 114}, + [197] = {.lex_state = 81}, [198] = {.lex_state = 81}, - [199] = {.lex_state = 152, .external_lex_state = 2}, - [200] = {.lex_state = 81}, - [201] = {.lex_state = 148, .external_lex_state = 2}, - [202] = {.lex_state = 122, .external_lex_state = 4}, - [203] = {.lex_state = 136, .external_lex_state = 9}, - [204] = {.lex_state = 136}, - [205] = {.lex_state = 139, .external_lex_state = 9}, - [206] = {.lex_state = 104}, - [207] = {.lex_state = 102}, + [199] = {.lex_state = 81}, + [200] = {.lex_state = 148, .external_lex_state = 2}, + [201] = {.lex_state = 81}, + [202] = {.lex_state = 152, .external_lex_state = 2}, + [203] = {.lex_state = 81}, + [204] = {.lex_state = 148, .external_lex_state = 2}, + [205] = {.lex_state = 122, .external_lex_state = 4}, + [206] = {.lex_state = 136, .external_lex_state = 9}, + [207] = {.lex_state = 136}, [208] = {.lex_state = 139, .external_lex_state = 9}, - [209] = {.lex_state = 139, .external_lex_state = 9}, - [210] = {.lex_state = 139, .external_lex_state = 9}, + [209] = {.lex_state = 104}, + [210] = {.lex_state = 102}, [211] = {.lex_state = 139, .external_lex_state = 9}, - [212] = {.lex_state = 114}, - [213] = {.lex_state = 81}, - [214] = {.lex_state = 81}, - [215] = {.lex_state = 81}, - [216] = {.lex_state = 148, .external_lex_state = 2}, + [212] = {.lex_state = 139, .external_lex_state = 9}, + [213] = {.lex_state = 139, .external_lex_state = 9}, + [214] = {.lex_state = 139, .external_lex_state = 9}, + [215] = {.lex_state = 114}, + [216] = {.lex_state = 81}, [217] = {.lex_state = 81}, - [218] = {.lex_state = 152, .external_lex_state = 2}, - [219] = {.lex_state = 81}, - [220] = {.lex_state = 148, .external_lex_state = 2}, - [221] = {.lex_state = 139, .external_lex_state = 9}, - [222] = {.lex_state = 139}, - [223] = {.lex_state = 102, .external_lex_state = 10}, - [224] = {.lex_state = 104}, - [225] = {.lex_state = 102}, + [218] = {.lex_state = 81}, + [219] = {.lex_state = 148, .external_lex_state = 2}, + [220] = {.lex_state = 81}, + [221] = {.lex_state = 152, .external_lex_state = 2}, + [222] = {.lex_state = 81}, + [223] = {.lex_state = 148, .external_lex_state = 2}, + [224] = {.lex_state = 139, .external_lex_state = 9}, + [225] = {.lex_state = 139}, [226] = {.lex_state = 102, .external_lex_state = 10}, - [227] = {.lex_state = 102, .external_lex_state = 10}, - [228] = {.lex_state = 102, .external_lex_state = 10}, + [227] = {.lex_state = 104}, + [228] = {.lex_state = 102}, [229] = {.lex_state = 102, .external_lex_state = 10}, - [230] = {.lex_state = 114}, - [231] = {.lex_state = 81}, - [232] = {.lex_state = 81}, - [233] = {.lex_state = 81}, - [234] = {.lex_state = 148, .external_lex_state = 2}, + [230] = {.lex_state = 102, .external_lex_state = 10}, + [231] = {.lex_state = 102, .external_lex_state = 10}, + [232] = {.lex_state = 102, .external_lex_state = 10}, + [233] = {.lex_state = 114}, + [234] = {.lex_state = 81}, [235] = {.lex_state = 81}, - [236] = {.lex_state = 152, .external_lex_state = 2}, - [237] = {.lex_state = 81}, - [238] = {.lex_state = 148, .external_lex_state = 2}, - [239] = {.lex_state = 104}, - [240] = {.lex_state = 104}, - [241] = {.lex_state = 104}, - [242] = {.lex_state = 114}, - [243] = {.lex_state = 81}, - [244] = {.lex_state = 81}, - [245] = {.lex_state = 81}, - [246] = {.lex_state = 148, .external_lex_state = 2}, + [236] = {.lex_state = 81}, + [237] = {.lex_state = 148, .external_lex_state = 2}, + [238] = {.lex_state = 81}, + [239] = {.lex_state = 152, .external_lex_state = 2}, + [240] = {.lex_state = 81}, + [241] = {.lex_state = 148, .external_lex_state = 2}, + [242] = {.lex_state = 104}, + [243] = {.lex_state = 104}, + [244] = {.lex_state = 104}, + [245] = {.lex_state = 114}, + [246] = {.lex_state = 81}, [247] = {.lex_state = 81}, - [248] = {.lex_state = 152, .external_lex_state = 2}, - [249] = {.lex_state = 109, .external_lex_state = 3}, - [250] = {.lex_state = 104}, - [251] = {.lex_state = 109, .external_lex_state = 3}, - [252] = {.lex_state = 102}, - [253] = {.lex_state = 81}, - [254] = {.lex_state = 81}, - [255] = {.lex_state = 109, .external_lex_state = 3}, + [248] = {.lex_state = 81}, + [249] = {.lex_state = 148, .external_lex_state = 2}, + [250] = {.lex_state = 81}, + [251] = {.lex_state = 152, .external_lex_state = 2}, + [252] = {.lex_state = 109, .external_lex_state = 3}, + [253] = {.lex_state = 104}, + [254] = {.lex_state = 109, .external_lex_state = 3}, + [255] = {.lex_state = 102}, [256] = {.lex_state = 81}, - [257] = {.lex_state = 102}, + [257] = {.lex_state = 81}, [258] = {.lex_state = 109, .external_lex_state = 3}, [259] = {.lex_state = 81}, [260] = {.lex_state = 102}, - [261] = {.lex_state = 127, .external_lex_state = 7}, + [261] = {.lex_state = 109, .external_lex_state = 3}, [262] = {.lex_state = 81}, - [263] = {.lex_state = 81}, - [264] = {.lex_state = 81}, - [265] = {.lex_state = 131, .external_lex_state = 8}, - [266] = {.lex_state = 131, .external_lex_state = 4}, - [267] = {.lex_state = 51}, - [268] = {.lex_state = 122, .external_lex_state = 4}, - [269] = {.lex_state = 134, .external_lex_state = 6}, - [270] = {.lex_state = 51, .external_lex_state = 2}, - [271] = {.lex_state = 136}, - [272] = {.lex_state = 139}, - [273] = {.lex_state = 143, .external_lex_state = 11}, - [274] = {.lex_state = 104}, - [275] = {.lex_state = 102}, + [263] = {.lex_state = 102}, + [264] = {.lex_state = 127, .external_lex_state = 7}, + [265] = {.lex_state = 81}, + [266] = {.lex_state = 81}, + [267] = {.lex_state = 81}, + [268] = {.lex_state = 131, .external_lex_state = 8}, + [269] = {.lex_state = 131, .external_lex_state = 4}, + [270] = {.lex_state = 81}, + [271] = {.lex_state = 122, .external_lex_state = 4}, + [272] = {.lex_state = 134, .external_lex_state = 6}, + [273] = {.lex_state = 51, .external_lex_state = 2}, + [274] = {.lex_state = 136}, + [275] = {.lex_state = 139}, [276] = {.lex_state = 143, .external_lex_state = 11}, - [277] = {.lex_state = 143, .external_lex_state = 11}, - [278] = {.lex_state = 143, .external_lex_state = 11}, + [277] = {.lex_state = 104}, + [278] = {.lex_state = 102}, [279] = {.lex_state = 143, .external_lex_state = 11}, - [280] = {.lex_state = 114}, - [281] = {.lex_state = 81}, - [282] = {.lex_state = 81}, - [283] = {.lex_state = 81}, - [284] = {.lex_state = 148, .external_lex_state = 2}, + [280] = {.lex_state = 143, .external_lex_state = 11}, + [281] = {.lex_state = 143, .external_lex_state = 11}, + [282] = {.lex_state = 143, .external_lex_state = 11}, + [283] = {.lex_state = 114}, + [284] = {.lex_state = 81}, [285] = {.lex_state = 81}, - [286] = {.lex_state = 152, .external_lex_state = 2}, - [287] = {.lex_state = 81}, - [288] = {.lex_state = 148, .external_lex_state = 2}, - [289] = {.lex_state = 81}, - [290] = {.lex_state = 51, .external_lex_state = 2}, - [291] = {.lex_state = 109, .external_lex_state = 3}, - [292] = {.lex_state = 51, .external_lex_state = 2}, - [293] = {.lex_state = 51}, - [294] = {.lex_state = 102}, - [295] = {.lex_state = 154, .external_lex_state = 13}, - [296] = {.lex_state = 143, .external_lex_state = 11}, - [297] = {.lex_state = 184, .external_lex_state = 12}, - [298] = {.lex_state = 143, .external_lex_state = 12}, - [299] = {.lex_state = 143, .external_lex_state = 12}, - [300] = {.lex_state = 184, .external_lex_state = 12}, - [301] = {.lex_state = 143, .external_lex_state = 12}, - [302] = {.lex_state = 51, .external_lex_state = 2}, - [303] = {.lex_state = 51, .external_lex_state = 2}, - [304] = {.lex_state = 150, .external_lex_state = 12}, - [305] = {.lex_state = 150, .external_lex_state = 12}, - [306] = {.lex_state = 109, .external_lex_state = 3}, - [307] = {.lex_state = 81}, - [308] = {.lex_state = 122, .external_lex_state = 4}, - [309] = {.lex_state = 134, .external_lex_state = 6}, - [310] = {.lex_state = 122, .external_lex_state = 4}, - [311] = {.lex_state = 134, .external_lex_state = 6}, - [312] = {.lex_state = 102}, - [313] = {.lex_state = 104}, - [314] = {.lex_state = 156, .external_lex_state = 3}, - [315] = {.lex_state = 114}, - [316] = {.lex_state = 114}, - [317] = {.lex_state = 51, .external_lex_state = 2}, - [318] = {.lex_state = 51, .external_lex_state = 2}, - [319] = {.lex_state = 51, .external_lex_state = 2}, - [320] = {.lex_state = 156, .external_lex_state = 5}, - [321] = {.lex_state = 156, .external_lex_state = 5}, - [322] = {.lex_state = 186, .external_lex_state = 15}, - [323] = {.lex_state = 156, .external_lex_state = 5}, - [324] = {.lex_state = 109, .external_lex_state = 3}, - [325] = {.lex_state = 109, .external_lex_state = 5}, - [326] = {.lex_state = 156, .external_lex_state = 5}, - [327] = {.lex_state = 156, .external_lex_state = 5}, - [328] = {.lex_state = 127, .external_lex_state = 7}, - [329] = {.lex_state = 109, .external_lex_state = 5}, - [330] = {.lex_state = 189, .external_lex_state = 9}, - [331] = {.lex_state = 104}, - [332] = {.lex_state = 102}, - [333] = {.lex_state = 81}, - [334] = {.lex_state = 189, .external_lex_state = 9}, - [335] = {.lex_state = 189, .external_lex_state = 9}, - [336] = {.lex_state = 189, .external_lex_state = 9}, - [337] = {.lex_state = 189, .external_lex_state = 9}, - [338] = {.lex_state = 114}, - [339] = {.lex_state = 81}, - [340] = {.lex_state = 81}, - [341] = {.lex_state = 81}, - [342] = {.lex_state = 148, .external_lex_state = 2}, + [286] = {.lex_state = 81}, + [287] = {.lex_state = 148, .external_lex_state = 2}, + [288] = {.lex_state = 81}, + [289] = {.lex_state = 152, .external_lex_state = 2}, + [290] = {.lex_state = 81}, + [291] = {.lex_state = 148, .external_lex_state = 2}, + [292] = {.lex_state = 81}, + [293] = {.lex_state = 154, .external_lex_state = 2}, + [294] = {.lex_state = 189, .external_lex_state = 12}, + [295] = {.lex_state = 51, .external_lex_state = 2}, + [296] = {.lex_state = 109, .external_lex_state = 3}, + [297] = {.lex_state = 51, .external_lex_state = 2}, + [298] = {.lex_state = 51}, + [299] = {.lex_state = 102}, + [300] = {.lex_state = 160, .external_lex_state = 13}, + [301] = {.lex_state = 143, .external_lex_state = 11}, + [302] = {.lex_state = 191, .external_lex_state = 12}, + [303] = {.lex_state = 143, .external_lex_state = 12}, + [304] = {.lex_state = 143, .external_lex_state = 12}, + [305] = {.lex_state = 191, .external_lex_state = 12}, + [306] = {.lex_state = 143, .external_lex_state = 12}, + [307] = {.lex_state = 51, .external_lex_state = 2}, + [308] = {.lex_state = 51, .external_lex_state = 2}, + [309] = {.lex_state = 150, .external_lex_state = 12}, + [310] = {.lex_state = 150, .external_lex_state = 12}, + [311] = {.lex_state = 109, .external_lex_state = 3}, + [312] = {.lex_state = 81}, + [313] = {.lex_state = 156, .external_lex_state = 5}, + [314] = {.lex_state = 154, .external_lex_state = 2}, + [315] = {.lex_state = 51}, + [316] = {.lex_state = 102}, + [317] = {.lex_state = 122, .external_lex_state = 4}, + [318] = {.lex_state = 122, .external_lex_state = 4}, + [319] = {.lex_state = 134, .external_lex_state = 6}, + [320] = {.lex_state = 122, .external_lex_state = 4}, + [321] = {.lex_state = 134, .external_lex_state = 6}, + [322] = {.lex_state = 102}, + [323] = {.lex_state = 104}, + [324] = {.lex_state = 162, .external_lex_state = 3}, + [325] = {.lex_state = 114}, + [326] = {.lex_state = 114}, + [327] = {.lex_state = 51, .external_lex_state = 2}, + [328] = {.lex_state = 51, .external_lex_state = 2}, + [329] = {.lex_state = 51, .external_lex_state = 2}, + [330] = {.lex_state = 162, .external_lex_state = 5}, + [331] = {.lex_state = 162, .external_lex_state = 5}, + [332] = {.lex_state = 193, .external_lex_state = 15}, + [333] = {.lex_state = 162, .external_lex_state = 5}, + [334] = {.lex_state = 109, .external_lex_state = 3}, + [335] = {.lex_state = 109, .external_lex_state = 5}, + [336] = {.lex_state = 162, .external_lex_state = 5}, + [337] = {.lex_state = 162, .external_lex_state = 5}, + [338] = {.lex_state = 127, .external_lex_state = 7}, + [339] = {.lex_state = 109, .external_lex_state = 5}, + [340] = {.lex_state = 196, .external_lex_state = 9}, + [341] = {.lex_state = 104}, + [342] = {.lex_state = 102}, [343] = {.lex_state = 81}, - [344] = {.lex_state = 152, .external_lex_state = 2}, - [345] = {.lex_state = 81}, - [346] = {.lex_state = 148, .external_lex_state = 2}, - [347] = {.lex_state = 134, .external_lex_state = 6}, - [348] = {.lex_state = 162}, - [349] = {.lex_state = 162}, - [350] = {.lex_state = 134, .external_lex_state = 14}, - [351] = {.lex_state = 104}, - [352] = {.lex_state = 102}, - [353] = {.lex_state = 134, .external_lex_state = 14}, - [354] = {.lex_state = 134, .external_lex_state = 14}, - [355] = {.lex_state = 134, .external_lex_state = 14}, - [356] = {.lex_state = 134, .external_lex_state = 14}, - [357] = {.lex_state = 114}, - [358] = {.lex_state = 81}, - [359] = {.lex_state = 81}, - [360] = {.lex_state = 81}, - [361] = {.lex_state = 148, .external_lex_state = 2}, - [362] = {.lex_state = 81}, - [363] = {.lex_state = 152, .external_lex_state = 2}, - [364] = {.lex_state = 81}, - [365] = {.lex_state = 148, .external_lex_state = 2}, - [366] = {.lex_state = 104}, - [367] = {.lex_state = 192, .external_lex_state = 8}, - [368] = {.lex_state = 114}, - [369] = {.lex_state = 114}, - [370] = {.lex_state = 51, .external_lex_state = 2}, - [371] = {.lex_state = 51, .external_lex_state = 2}, - [372] = {.lex_state = 51, .external_lex_state = 2}, - [373] = {.lex_state = 192, .external_lex_state = 4}, - [374] = {.lex_state = 192, .external_lex_state = 4}, - [375] = {.lex_state = 122, .external_lex_state = 4}, - [376] = {.lex_state = 164, .external_lex_state = 2}, - [377] = {.lex_state = 122, .external_lex_state = 4}, - [378] = {.lex_state = 125, .external_lex_state = 6}, - [379] = {.lex_state = 164, .external_lex_state = 2}, - [380] = {.lex_state = 122, .external_lex_state = 4}, + [344] = {.lex_state = 196, .external_lex_state = 9}, + [345] = {.lex_state = 196, .external_lex_state = 9}, + [346] = {.lex_state = 196, .external_lex_state = 9}, + [347] = {.lex_state = 196, .external_lex_state = 9}, + [348] = {.lex_state = 114}, + [349] = {.lex_state = 81}, + [350] = {.lex_state = 81}, + [351] = {.lex_state = 81}, + [352] = {.lex_state = 148, .external_lex_state = 2}, + [353] = {.lex_state = 81}, + [354] = {.lex_state = 152, .external_lex_state = 2}, + [355] = {.lex_state = 81}, + [356] = {.lex_state = 148, .external_lex_state = 2}, + [357] = {.lex_state = 134, .external_lex_state = 6}, + [358] = {.lex_state = 167}, + [359] = {.lex_state = 167}, + [360] = {.lex_state = 134, .external_lex_state = 14}, + [361] = {.lex_state = 104}, + [362] = {.lex_state = 102}, + [363] = {.lex_state = 134, .external_lex_state = 14}, + [364] = {.lex_state = 134, .external_lex_state = 14}, + [365] = {.lex_state = 134, .external_lex_state = 14}, + [366] = {.lex_state = 134, .external_lex_state = 14}, + [367] = {.lex_state = 114}, + [368] = {.lex_state = 81}, + [369] = {.lex_state = 81}, + [370] = {.lex_state = 81}, + [371] = {.lex_state = 148, .external_lex_state = 2}, + [372] = {.lex_state = 81}, + [373] = {.lex_state = 152, .external_lex_state = 2}, + [374] = {.lex_state = 81}, + [375] = {.lex_state = 148, .external_lex_state = 2}, + [376] = {.lex_state = 104}, + [377] = {.lex_state = 199, .external_lex_state = 8}, + [378] = {.lex_state = 114}, + [379] = {.lex_state = 114}, + [380] = {.lex_state = 51, .external_lex_state = 2}, [381] = {.lex_state = 51, .external_lex_state = 2}, - [382] = {.lex_state = 194, .external_lex_state = 2}, - [383] = {.lex_state = 170, .external_lex_state = 2}, - [384] = {.lex_state = 122, .external_lex_state = 4}, - [385] = {.lex_state = 81}, - [386] = {.lex_state = 81}, - [387] = {.lex_state = 125, .external_lex_state = 6}, - [388] = {.lex_state = 170, .external_lex_state = 2}, - [389] = {.lex_state = 81}, - [390] = {.lex_state = 131, .external_lex_state = 8}, - [391] = {.lex_state = 131, .external_lex_state = 8}, - [392] = {.lex_state = 196}, - [393] = {.lex_state = 131, .external_lex_state = 4}, - [394] = {.lex_state = 102}, + [382] = {.lex_state = 51, .external_lex_state = 2}, + [383] = {.lex_state = 199, .external_lex_state = 4}, + [384] = {.lex_state = 199, .external_lex_state = 4}, + [385] = {.lex_state = 122, .external_lex_state = 4}, + [386] = {.lex_state = 169, .external_lex_state = 2}, + [387] = {.lex_state = 122, .external_lex_state = 4}, + [388] = {.lex_state = 125, .external_lex_state = 6}, + [389] = {.lex_state = 169, .external_lex_state = 2}, + [390] = {.lex_state = 122, .external_lex_state = 4}, + [391] = {.lex_state = 51, .external_lex_state = 2}, + [392] = {.lex_state = 201, .external_lex_state = 2}, + [393] = {.lex_state = 175, .external_lex_state = 2}, + [394] = {.lex_state = 122, .external_lex_state = 4}, [395] = {.lex_state = 81}, [396] = {.lex_state = 81}, - [397] = {.lex_state = 131, .external_lex_state = 8}, - [398] = {.lex_state = 81}, - [399] = {.lex_state = 102}, + [397] = {.lex_state = 125, .external_lex_state = 6}, + [398] = {.lex_state = 175, .external_lex_state = 2}, + [399] = {.lex_state = 81}, [400] = {.lex_state = 131, .external_lex_state = 8}, - [401] = {.lex_state = 81}, - [402] = {.lex_state = 102}, - [403] = {.lex_state = 131, .external_lex_state = 8}, - [404] = {.lex_state = 131, .external_lex_state = 8}, + [401] = {.lex_state = 131, .external_lex_state = 8}, + [402] = {.lex_state = 203}, + [403] = {.lex_state = 131, .external_lex_state = 4}, + [404] = {.lex_state = 102}, [405] = {.lex_state = 81}, - [406] = {.lex_state = 122, .external_lex_state = 4}, - [407] = {.lex_state = 180, .external_lex_state = 2}, - [408] = {.lex_state = 182, .external_lex_state = 9}, - [409] = {.lex_state = 182, .external_lex_state = 9}, - [410] = {.lex_state = 102}, + [406] = {.lex_state = 81}, + [407] = {.lex_state = 131, .external_lex_state = 8}, + [408] = {.lex_state = 81}, + [409] = {.lex_state = 102}, + [410] = {.lex_state = 131, .external_lex_state = 8}, [411] = {.lex_state = 81}, - [412] = {.lex_state = 81}, - [413] = {.lex_state = 182, .external_lex_state = 9}, - [414] = {.lex_state = 81}, - [415] = {.lex_state = 102}, - [416] = {.lex_state = 182, .external_lex_state = 9}, - [417] = {.lex_state = 81}, - [418] = {.lex_state = 102}, - [419] = {.lex_state = 182, .external_lex_state = 9}, - [420] = {.lex_state = 182, .external_lex_state = 9}, - [421] = {.lex_state = 139, .external_lex_state = 9}, - [422] = {.lex_state = 139, .external_lex_state = 9}, - [423] = {.lex_state = 102}, - [424] = {.lex_state = 81}, + [412] = {.lex_state = 102}, + [413] = {.lex_state = 131, .external_lex_state = 8}, + [414] = {.lex_state = 131, .external_lex_state = 8}, + [415] = {.lex_state = 81}, + [416] = {.lex_state = 122, .external_lex_state = 4}, + [417] = {.lex_state = 122, .external_lex_state = 4}, + [418] = {.lex_state = 185, .external_lex_state = 2}, + [419] = {.lex_state = 187, .external_lex_state = 9}, + [420] = {.lex_state = 187, .external_lex_state = 9}, + [421] = {.lex_state = 102}, + [422] = {.lex_state = 81}, + [423] = {.lex_state = 81}, + [424] = {.lex_state = 187, .external_lex_state = 9}, [425] = {.lex_state = 81}, - [426] = {.lex_state = 139, .external_lex_state = 9}, - [427] = {.lex_state = 81}, - [428] = {.lex_state = 102}, - [429] = {.lex_state = 139, .external_lex_state = 9}, - [430] = {.lex_state = 81}, - [431] = {.lex_state = 102}, + [426] = {.lex_state = 102}, + [427] = {.lex_state = 187, .external_lex_state = 9}, + [428] = {.lex_state = 81}, + [429] = {.lex_state = 102}, + [430] = {.lex_state = 187, .external_lex_state = 9}, + [431] = {.lex_state = 187, .external_lex_state = 9}, [432] = {.lex_state = 139, .external_lex_state = 9}, [433] = {.lex_state = 139, .external_lex_state = 9}, - [434] = {.lex_state = 102, .external_lex_state = 10}, - [435] = {.lex_state = 102, .external_lex_state = 10}, - [436] = {.lex_state = 102}, - [437] = {.lex_state = 81}, + [434] = {.lex_state = 102}, + [435] = {.lex_state = 81}, + [436] = {.lex_state = 81}, + [437] = {.lex_state = 139, .external_lex_state = 9}, [438] = {.lex_state = 81}, - [439] = {.lex_state = 102, .external_lex_state = 10}, - [440] = {.lex_state = 81}, - [441] = {.lex_state = 102}, - [442] = {.lex_state = 102, .external_lex_state = 10}, - [443] = {.lex_state = 81}, - [444] = {.lex_state = 102}, + [439] = {.lex_state = 102}, + [440] = {.lex_state = 139, .external_lex_state = 9}, + [441] = {.lex_state = 81}, + [442] = {.lex_state = 102}, + [443] = {.lex_state = 139, .external_lex_state = 9}, + [444] = {.lex_state = 139, .external_lex_state = 9}, [445] = {.lex_state = 102, .external_lex_state = 10}, [446] = {.lex_state = 102, .external_lex_state = 10}, - [447] = {.lex_state = 81}, + [447] = {.lex_state = 102}, [448] = {.lex_state = 81}, - [449] = {.lex_state = 104}, - [450] = {.lex_state = 81}, - [451] = {.lex_state = 102}, - [452] = {.lex_state = 104}, - [453] = {.lex_state = 81}, - [454] = {.lex_state = 102}, - [455] = {.lex_state = 104}, - [456] = {.lex_state = 109, .external_lex_state = 3}, - [457] = {.lex_state = 109, .external_lex_state = 3}, + [449] = {.lex_state = 81}, + [450] = {.lex_state = 102, .external_lex_state = 10}, + [451] = {.lex_state = 81}, + [452] = {.lex_state = 102}, + [453] = {.lex_state = 102, .external_lex_state = 10}, + [454] = {.lex_state = 81}, + [455] = {.lex_state = 102}, + [456] = {.lex_state = 102, .external_lex_state = 10}, + [457] = {.lex_state = 102, .external_lex_state = 10}, [458] = {.lex_state = 81}, - [459] = {.lex_state = 109, .external_lex_state = 3}, - [460] = {.lex_state = 81}, + [459] = {.lex_state = 81}, + [460] = {.lex_state = 104}, [461] = {.lex_state = 81}, - [462] = {.lex_state = 202, .external_lex_state = 9}, - [463] = {.lex_state = 81}, + [462] = {.lex_state = 102}, + [463] = {.lex_state = 104}, [464] = {.lex_state = 81}, - [465] = {.lex_state = 202, .external_lex_state = 9}, - [466] = {.lex_state = 81}, - [467] = {.lex_state = 148, .external_lex_state = 2}, - [468] = {.lex_state = 162}, - [469] = {.lex_state = 104}, - [470] = {.lex_state = 148, .external_lex_state = 10}, - [471] = {.lex_state = 114}, - [472] = {.lex_state = 114}, - [473] = {.lex_state = 51, .external_lex_state = 2}, - [474] = {.lex_state = 51, .external_lex_state = 2}, - [475] = {.lex_state = 51, .external_lex_state = 2}, - [476] = {.lex_state = 102}, - [477] = {.lex_state = 164, .external_lex_state = 2}, - [478] = {.lex_state = 81}, - [479] = {.lex_state = 170, .external_lex_state = 2}, - [480] = {.lex_state = 131, .external_lex_state = 4}, - [481] = {.lex_state = 81}, - [482] = {.lex_state = 81}, - [483] = {.lex_state = 81}, - [484] = {.lex_state = 180, .external_lex_state = 2}, - [485] = {.lex_state = 122, .external_lex_state = 4}, - [486] = {.lex_state = 134, .external_lex_state = 6}, - [487] = {.lex_state = 81}, - [488] = {.lex_state = 143, .external_lex_state = 11}, - [489] = {.lex_state = 143, .external_lex_state = 11}, - [490] = {.lex_state = 102}, - [491] = {.lex_state = 81}, + [465] = {.lex_state = 102}, + [466] = {.lex_state = 104}, + [467] = {.lex_state = 109, .external_lex_state = 3}, + [468] = {.lex_state = 109, .external_lex_state = 3}, + [469] = {.lex_state = 81}, + [470] = {.lex_state = 109, .external_lex_state = 3}, + [471] = {.lex_state = 81}, + [472] = {.lex_state = 81}, + [473] = {.lex_state = 209, .external_lex_state = 9}, + [474] = {.lex_state = 81}, + [475] = {.lex_state = 81}, + [476] = {.lex_state = 209, .external_lex_state = 9}, + [477] = {.lex_state = 81}, + [478] = {.lex_state = 148, .external_lex_state = 2}, + [479] = {.lex_state = 167}, + [480] = {.lex_state = 104}, + [481] = {.lex_state = 148, .external_lex_state = 10}, + [482] = {.lex_state = 114}, + [483] = {.lex_state = 114}, + [484] = {.lex_state = 51, .external_lex_state = 2}, + [485] = {.lex_state = 51, .external_lex_state = 2}, + [486] = {.lex_state = 51, .external_lex_state = 2}, + [487] = {.lex_state = 102}, + [488] = {.lex_state = 169, .external_lex_state = 2}, + [489] = {.lex_state = 81}, + [490] = {.lex_state = 175, .external_lex_state = 2}, + [491] = {.lex_state = 131, .external_lex_state = 4}, [492] = {.lex_state = 81}, - [493] = {.lex_state = 143, .external_lex_state = 11}, - [494] = {.lex_state = 81}, - [495] = {.lex_state = 102}, - [496] = {.lex_state = 143, .external_lex_state = 11}, - [497] = {.lex_state = 81}, - [498] = {.lex_state = 102}, - [499] = {.lex_state = 143, .external_lex_state = 11}, + [493] = {.lex_state = 81}, + [494] = {.lex_state = 189, .external_lex_state = 12}, + [495] = {.lex_state = 81}, + [496] = {.lex_state = 185, .external_lex_state = 2}, + [497] = {.lex_state = 122, .external_lex_state = 4}, + [498] = {.lex_state = 134, .external_lex_state = 6}, + [499] = {.lex_state = 81}, [500] = {.lex_state = 143, .external_lex_state = 11}, - [501] = {.lex_state = 81}, - [502] = {.lex_state = 81}, - [503] = {.lex_state = 148, .external_lex_state = 2}, + [501] = {.lex_state = 143, .external_lex_state = 11}, + [502] = {.lex_state = 102}, + [503] = {.lex_state = 81}, [504] = {.lex_state = 81}, - [505] = {.lex_state = 148, .external_lex_state = 2}, - [506] = {.lex_state = 102}, - [507] = {.lex_state = 104}, - [508] = {.lex_state = 184, .external_lex_state = 11}, - [509] = {.lex_state = 114}, - [510] = {.lex_state = 114}, - [511] = {.lex_state = 51, .external_lex_state = 2}, - [512] = {.lex_state = 51, .external_lex_state = 2}, - [513] = {.lex_state = 51, .external_lex_state = 2}, - [514] = {.lex_state = 184, .external_lex_state = 12}, - [515] = {.lex_state = 184, .external_lex_state = 12}, - [516] = {.lex_state = 186, .external_lex_state = 15}, - [517] = {.lex_state = 184, .external_lex_state = 12}, - [518] = {.lex_state = 143, .external_lex_state = 11}, - [519] = {.lex_state = 143, .external_lex_state = 12}, - [520] = {.lex_state = 184, .external_lex_state = 12}, - [521] = {.lex_state = 184, .external_lex_state = 12}, - [522] = {.lex_state = 143, .external_lex_state = 12}, - [523] = {.lex_state = 152, .external_lex_state = 2}, - [524] = {.lex_state = 81}, - [525] = {.lex_state = 152, .external_lex_state = 2}, - [526] = {.lex_state = 150, .external_lex_state = 12}, - [527] = {.lex_state = 204, .external_lex_state = 2}, - [528] = {.lex_state = 122, .external_lex_state = 4}, - [529] = {.lex_state = 156, .external_lex_state = 3}, - [530] = {.lex_state = 156, .external_lex_state = 5}, - [531] = {.lex_state = 156, .external_lex_state = 3}, - [532] = {.lex_state = 104}, - [533] = {.lex_state = 102}, - [534] = {.lex_state = 156, .external_lex_state = 3}, - [535] = {.lex_state = 156, .external_lex_state = 3}, - [536] = {.lex_state = 156, .external_lex_state = 3}, - [537] = {.lex_state = 156, .external_lex_state = 3}, - [538] = {.lex_state = 114}, - [539] = {.lex_state = 81}, - [540] = {.lex_state = 81}, + [505] = {.lex_state = 143, .external_lex_state = 11}, + [506] = {.lex_state = 81}, + [507] = {.lex_state = 102}, + [508] = {.lex_state = 143, .external_lex_state = 11}, + [509] = {.lex_state = 81}, + [510] = {.lex_state = 102}, + [511] = {.lex_state = 143, .external_lex_state = 11}, + [512] = {.lex_state = 143, .external_lex_state = 11}, + [513] = {.lex_state = 81}, + [514] = {.lex_state = 189, .external_lex_state = 12}, + [515] = {.lex_state = 154, .external_lex_state = 2}, + [516] = {.lex_state = 51}, + [517] = {.lex_state = 102}, + [518] = {.lex_state = 81}, + [519] = {.lex_state = 81}, + [520] = {.lex_state = 148, .external_lex_state = 2}, + [521] = {.lex_state = 81}, + [522] = {.lex_state = 148, .external_lex_state = 2}, + [523] = {.lex_state = 102}, + [524] = {.lex_state = 104}, + [525] = {.lex_state = 191, .external_lex_state = 11}, + [526] = {.lex_state = 114}, + [527] = {.lex_state = 114}, + [528] = {.lex_state = 51, .external_lex_state = 2}, + [529] = {.lex_state = 51, .external_lex_state = 2}, + [530] = {.lex_state = 51, .external_lex_state = 2}, + [531] = {.lex_state = 191, .external_lex_state = 12}, + [532] = {.lex_state = 191, .external_lex_state = 12}, + [533] = {.lex_state = 193, .external_lex_state = 15}, + [534] = {.lex_state = 191, .external_lex_state = 12}, + [535] = {.lex_state = 143, .external_lex_state = 11}, + [536] = {.lex_state = 143, .external_lex_state = 12}, + [537] = {.lex_state = 191, .external_lex_state = 12}, + [538] = {.lex_state = 191, .external_lex_state = 12}, + [539] = {.lex_state = 143, .external_lex_state = 12}, + [540] = {.lex_state = 152, .external_lex_state = 2}, [541] = {.lex_state = 81}, - [542] = {.lex_state = 148, .external_lex_state = 2}, - [543] = {.lex_state = 81}, - [544] = {.lex_state = 152, .external_lex_state = 2}, - [545] = {.lex_state = 81}, - [546] = {.lex_state = 148, .external_lex_state = 2}, - [547] = {.lex_state = 186, .external_lex_state = 15}, - [548] = {.lex_state = 156, .external_lex_state = 5}, + [542] = {.lex_state = 152, .external_lex_state = 2}, + [543] = {.lex_state = 150, .external_lex_state = 12}, + [544] = {.lex_state = 156, .external_lex_state = 5}, + [545] = {.lex_state = 156, .external_lex_state = 5}, + [546] = {.lex_state = 102}, + [547] = {.lex_state = 104}, + [548] = {.lex_state = 122, .external_lex_state = 8}, [549] = {.lex_state = 114}, [550] = {.lex_state = 114}, - [551] = {.lex_state = 186, .external_lex_state = 15}, - [552] = {.lex_state = 102, .external_lex_state = 2}, - [553] = {.lex_state = 162}, - [554] = {.lex_state = 102, .external_lex_state = 10}, - [555] = {.lex_state = 156, .external_lex_state = 5}, - [556] = {.lex_state = 189, .external_lex_state = 9}, - [557] = {.lex_state = 189, .external_lex_state = 9}, - [558] = {.lex_state = 102}, - [559] = {.lex_state = 81}, - [560] = {.lex_state = 81}, - [561] = {.lex_state = 189, .external_lex_state = 9}, - [562] = {.lex_state = 81}, - [563] = {.lex_state = 102}, - [564] = {.lex_state = 189, .external_lex_state = 9}, + [551] = {.lex_state = 51, .external_lex_state = 2}, + [552] = {.lex_state = 51, .external_lex_state = 2}, + [553] = {.lex_state = 51, .external_lex_state = 2}, + [554] = {.lex_state = 122, .external_lex_state = 4}, + [555] = {.lex_state = 162, .external_lex_state = 3}, + [556] = {.lex_state = 162, .external_lex_state = 5}, + [557] = {.lex_state = 162, .external_lex_state = 3}, + [558] = {.lex_state = 104}, + [559] = {.lex_state = 102}, + [560] = {.lex_state = 162, .external_lex_state = 3}, + [561] = {.lex_state = 162, .external_lex_state = 3}, + [562] = {.lex_state = 162, .external_lex_state = 3}, + [563] = {.lex_state = 162, .external_lex_state = 3}, + [564] = {.lex_state = 114}, [565] = {.lex_state = 81}, - [566] = {.lex_state = 102}, - [567] = {.lex_state = 189, .external_lex_state = 9}, - [568] = {.lex_state = 189, .external_lex_state = 9}, - [569] = {.lex_state = 134, .external_lex_state = 6}, - [570] = {.lex_state = 162}, - [571] = {.lex_state = 134, .external_lex_state = 14}, - [572] = {.lex_state = 134, .external_lex_state = 14}, - [573] = {.lex_state = 102}, - [574] = {.lex_state = 81}, - [575] = {.lex_state = 81}, - [576] = {.lex_state = 134, .external_lex_state = 14}, - [577] = {.lex_state = 81}, - [578] = {.lex_state = 102}, - [579] = {.lex_state = 134, .external_lex_state = 14}, - [580] = {.lex_state = 81}, - [581] = {.lex_state = 102}, - [582] = {.lex_state = 134, .external_lex_state = 14}, - [583] = {.lex_state = 134, .external_lex_state = 14}, - [584] = {.lex_state = 192, .external_lex_state = 8}, - [585] = {.lex_state = 104}, - [586] = {.lex_state = 102}, - [587] = {.lex_state = 192, .external_lex_state = 8}, - [588] = {.lex_state = 192, .external_lex_state = 8}, - [589] = {.lex_state = 192, .external_lex_state = 8}, - [590] = {.lex_state = 192, .external_lex_state = 8}, - [591] = {.lex_state = 114}, - [592] = {.lex_state = 81}, - [593] = {.lex_state = 81}, - [594] = {.lex_state = 81}, - [595] = {.lex_state = 148, .external_lex_state = 2}, - [596] = {.lex_state = 81}, - [597] = {.lex_state = 152, .external_lex_state = 2}, - [598] = {.lex_state = 81}, - [599] = {.lex_state = 148, .external_lex_state = 2}, + [566] = {.lex_state = 81}, + [567] = {.lex_state = 81}, + [568] = {.lex_state = 148, .external_lex_state = 2}, + [569] = {.lex_state = 81}, + [570] = {.lex_state = 152, .external_lex_state = 2}, + [571] = {.lex_state = 81}, + [572] = {.lex_state = 148, .external_lex_state = 2}, + [573] = {.lex_state = 193, .external_lex_state = 15}, + [574] = {.lex_state = 162, .external_lex_state = 5}, + [575] = {.lex_state = 114}, + [576] = {.lex_state = 114}, + [577] = {.lex_state = 193, .external_lex_state = 15}, + [578] = {.lex_state = 102, .external_lex_state = 2}, + [579] = {.lex_state = 167}, + [580] = {.lex_state = 102, .external_lex_state = 10}, + [581] = {.lex_state = 162, .external_lex_state = 5}, + [582] = {.lex_state = 196, .external_lex_state = 9}, + [583] = {.lex_state = 196, .external_lex_state = 9}, + [584] = {.lex_state = 102}, + [585] = {.lex_state = 81}, + [586] = {.lex_state = 81}, + [587] = {.lex_state = 196, .external_lex_state = 9}, + [588] = {.lex_state = 81}, + [589] = {.lex_state = 102}, + [590] = {.lex_state = 196, .external_lex_state = 9}, + [591] = {.lex_state = 81}, + [592] = {.lex_state = 102}, + [593] = {.lex_state = 196, .external_lex_state = 9}, + [594] = {.lex_state = 196, .external_lex_state = 9}, + [595] = {.lex_state = 134, .external_lex_state = 6}, + [596] = {.lex_state = 167}, + [597] = {.lex_state = 134, .external_lex_state = 14}, + [598] = {.lex_state = 134, .external_lex_state = 14}, + [599] = {.lex_state = 102}, [600] = {.lex_state = 81}, - [601] = {.lex_state = 192, .external_lex_state = 8}, - [602] = {.lex_state = 192, .external_lex_state = 4}, - [603] = {.lex_state = 164, .external_lex_state = 2}, - [604] = {.lex_state = 122, .external_lex_state = 4}, - [605] = {.lex_state = 164, .external_lex_state = 2}, + [601] = {.lex_state = 81}, + [602] = {.lex_state = 134, .external_lex_state = 14}, + [603] = {.lex_state = 81}, + [604] = {.lex_state = 102}, + [605] = {.lex_state = 134, .external_lex_state = 14}, [606] = {.lex_state = 81}, - [607] = {.lex_state = 194, .external_lex_state = 2}, - [608] = {.lex_state = 122, .external_lex_state = 4}, - [609] = {.lex_state = 125, .external_lex_state = 6}, - [610] = {.lex_state = 194, .external_lex_state = 2}, - [611] = {.lex_state = 170, .external_lex_state = 2}, - [612] = {.lex_state = 122, .external_lex_state = 4}, - [613] = {.lex_state = 170, .external_lex_state = 2}, - [614] = {.lex_state = 81}, - [615] = {.lex_state = 81}, - [616] = {.lex_state = 81}, - [617] = {.lex_state = 122, .external_lex_state = 4}, - [618] = {.lex_state = 206, .external_lex_state = 9}, - [619] = {.lex_state = 196}, - [620] = {.lex_state = 189}, - [621] = {.lex_state = 196}, - [622] = {.lex_state = 196}, - [623] = {.lex_state = 131, .external_lex_state = 8}, - [624] = {.lex_state = 131, .external_lex_state = 8}, - [625] = {.lex_state = 81}, - [626] = {.lex_state = 131, .external_lex_state = 8}, - [627] = {.lex_state = 81}, - [628] = {.lex_state = 81}, - [629] = {.lex_state = 202, .external_lex_state = 9}, - [630] = {.lex_state = 81}, - [631] = {.lex_state = 81}, - [632] = {.lex_state = 202, .external_lex_state = 9}, - [633] = {.lex_state = 81}, + [607] = {.lex_state = 102}, + [608] = {.lex_state = 134, .external_lex_state = 14}, + [609] = {.lex_state = 134, .external_lex_state = 14}, + [610] = {.lex_state = 199, .external_lex_state = 8}, + [611] = {.lex_state = 104}, + [612] = {.lex_state = 102}, + [613] = {.lex_state = 199, .external_lex_state = 8}, + [614] = {.lex_state = 199, .external_lex_state = 8}, + [615] = {.lex_state = 199, .external_lex_state = 8}, + [616] = {.lex_state = 199, .external_lex_state = 8}, + [617] = {.lex_state = 114}, + [618] = {.lex_state = 81}, + [619] = {.lex_state = 81}, + [620] = {.lex_state = 81}, + [621] = {.lex_state = 148, .external_lex_state = 2}, + [622] = {.lex_state = 81}, + [623] = {.lex_state = 152, .external_lex_state = 2}, + [624] = {.lex_state = 81}, + [625] = {.lex_state = 148, .external_lex_state = 2}, + [626] = {.lex_state = 81}, + [627] = {.lex_state = 199, .external_lex_state = 8}, + [628] = {.lex_state = 199, .external_lex_state = 4}, + [629] = {.lex_state = 169, .external_lex_state = 2}, + [630] = {.lex_state = 122, .external_lex_state = 4}, + [631] = {.lex_state = 169, .external_lex_state = 2}, + [632] = {.lex_state = 81}, + [633] = {.lex_state = 201, .external_lex_state = 2}, [634] = {.lex_state = 122, .external_lex_state = 4}, - [635] = {.lex_state = 122, .external_lex_state = 4}, - [636] = {.lex_state = 182, .external_lex_state = 9}, - [637] = {.lex_state = 182, .external_lex_state = 9}, - [638] = {.lex_state = 81}, - [639] = {.lex_state = 182, .external_lex_state = 9}, + [635] = {.lex_state = 125, .external_lex_state = 6}, + [636] = {.lex_state = 201, .external_lex_state = 2}, + [637] = {.lex_state = 175, .external_lex_state = 2}, + [638] = {.lex_state = 122, .external_lex_state = 4}, + [639] = {.lex_state = 175, .external_lex_state = 2}, [640] = {.lex_state = 81}, [641] = {.lex_state = 81}, - [642] = {.lex_state = 202, .external_lex_state = 9}, - [643] = {.lex_state = 81}, - [644] = {.lex_state = 81}, - [645] = {.lex_state = 202, .external_lex_state = 9}, - [646] = {.lex_state = 81}, - [647] = {.lex_state = 139, .external_lex_state = 9}, - [648] = {.lex_state = 139, .external_lex_state = 9}, - [649] = {.lex_state = 81}, - [650] = {.lex_state = 139, .external_lex_state = 9}, + [642] = {.lex_state = 81}, + [643] = {.lex_state = 122, .external_lex_state = 4}, + [644] = {.lex_state = 211, .external_lex_state = 9}, + [645] = {.lex_state = 203}, + [646] = {.lex_state = 196}, + [647] = {.lex_state = 203}, + [648] = {.lex_state = 203}, + [649] = {.lex_state = 131, .external_lex_state = 8}, + [650] = {.lex_state = 131, .external_lex_state = 8}, [651] = {.lex_state = 81}, - [652] = {.lex_state = 81}, - [653] = {.lex_state = 202, .external_lex_state = 9}, + [652] = {.lex_state = 131, .external_lex_state = 8}, + [653] = {.lex_state = 81}, [654] = {.lex_state = 81}, - [655] = {.lex_state = 81}, - [656] = {.lex_state = 202, .external_lex_state = 9}, + [655] = {.lex_state = 209, .external_lex_state = 9}, + [656] = {.lex_state = 81}, [657] = {.lex_state = 81}, - [658] = {.lex_state = 102, .external_lex_state = 10}, - [659] = {.lex_state = 102, .external_lex_state = 10}, - [660] = {.lex_state = 81}, - [661] = {.lex_state = 102, .external_lex_state = 10}, - [662] = {.lex_state = 81}, - [663] = {.lex_state = 81}, - [664] = {.lex_state = 202, .external_lex_state = 9}, - [665] = {.lex_state = 81}, + [658] = {.lex_state = 209, .external_lex_state = 9}, + [659] = {.lex_state = 81}, + [660] = {.lex_state = 156, .external_lex_state = 5}, + [661] = {.lex_state = 122, .external_lex_state = 4}, + [662] = {.lex_state = 187, .external_lex_state = 9}, + [663] = {.lex_state = 187, .external_lex_state = 9}, + [664] = {.lex_state = 81}, + [665] = {.lex_state = 187, .external_lex_state = 9}, [666] = {.lex_state = 81}, - [667] = {.lex_state = 202, .external_lex_state = 9}, - [668] = {.lex_state = 81}, - [669] = {.lex_state = 104}, + [667] = {.lex_state = 81}, + [668] = {.lex_state = 209, .external_lex_state = 9}, + [669] = {.lex_state = 81}, [670] = {.lex_state = 81}, - [671] = {.lex_state = 104}, + [671] = {.lex_state = 209, .external_lex_state = 9}, [672] = {.lex_state = 81}, - [673] = {.lex_state = 81}, - [674] = {.lex_state = 202, .external_lex_state = 9}, + [673] = {.lex_state = 139, .external_lex_state = 9}, + [674] = {.lex_state = 139, .external_lex_state = 9}, [675] = {.lex_state = 81}, - [676] = {.lex_state = 81}, - [677] = {.lex_state = 202, .external_lex_state = 9}, + [676] = {.lex_state = 139, .external_lex_state = 9}, + [677] = {.lex_state = 81}, [678] = {.lex_state = 81}, - [679] = {.lex_state = 81}, + [679] = {.lex_state = 209, .external_lex_state = 9}, [680] = {.lex_state = 81}, [681] = {.lex_state = 81}, - [682] = {.lex_state = 109, .external_lex_state = 3}, + [682] = {.lex_state = 209, .external_lex_state = 9}, [683] = {.lex_state = 81}, - [684] = {.lex_state = 109, .external_lex_state = 3}, - [685] = {.lex_state = 148, .external_lex_state = 2}, - [686] = {.lex_state = 162}, - [687] = {.lex_state = 148, .external_lex_state = 10}, - [688] = {.lex_state = 104}, - [689] = {.lex_state = 102}, - [690] = {.lex_state = 148, .external_lex_state = 10}, - [691] = {.lex_state = 148, .external_lex_state = 10}, - [692] = {.lex_state = 148, .external_lex_state = 10}, - [693] = {.lex_state = 148, .external_lex_state = 10}, - [694] = {.lex_state = 114}, - [695] = {.lex_state = 81}, + [684] = {.lex_state = 102, .external_lex_state = 10}, + [685] = {.lex_state = 102, .external_lex_state = 10}, + [686] = {.lex_state = 81}, + [687] = {.lex_state = 102, .external_lex_state = 10}, + [688] = {.lex_state = 81}, + [689] = {.lex_state = 81}, + [690] = {.lex_state = 209, .external_lex_state = 9}, + [691] = {.lex_state = 81}, + [692] = {.lex_state = 81}, + [693] = {.lex_state = 209, .external_lex_state = 9}, + [694] = {.lex_state = 81}, + [695] = {.lex_state = 104}, [696] = {.lex_state = 81}, - [697] = {.lex_state = 81}, - [698] = {.lex_state = 148, .external_lex_state = 2}, + [697] = {.lex_state = 104}, + [698] = {.lex_state = 81}, [699] = {.lex_state = 81}, - [700] = {.lex_state = 152, .external_lex_state = 2}, + [700] = {.lex_state = 209, .external_lex_state = 9}, [701] = {.lex_state = 81}, - [702] = {.lex_state = 148, .external_lex_state = 2}, - [703] = {.lex_state = 192, .external_lex_state = 4}, + [702] = {.lex_state = 81}, + [703] = {.lex_state = 209, .external_lex_state = 9}, [704] = {.lex_state = 81}, - [705] = {.lex_state = 164, .external_lex_state = 2}, + [705] = {.lex_state = 81}, [706] = {.lex_state = 81}, [707] = {.lex_state = 81}, - [708] = {.lex_state = 170, .external_lex_state = 2}, + [708] = {.lex_state = 109, .external_lex_state = 3}, [709] = {.lex_state = 81}, - [710] = {.lex_state = 196}, - [711] = {.lex_state = 131, .external_lex_state = 4}, - [712] = {.lex_state = 81}, - [713] = {.lex_state = 81}, - [714] = {.lex_state = 180, .external_lex_state = 2}, - [715] = {.lex_state = 143, .external_lex_state = 11}, - [716] = {.lex_state = 143, .external_lex_state = 11}, - [717] = {.lex_state = 81}, - [718] = {.lex_state = 143, .external_lex_state = 11}, - [719] = {.lex_state = 81}, - [720] = {.lex_state = 81}, - [721] = {.lex_state = 202, .external_lex_state = 9}, + [710] = {.lex_state = 109, .external_lex_state = 3}, + [711] = {.lex_state = 148, .external_lex_state = 2}, + [712] = {.lex_state = 167}, + [713] = {.lex_state = 148, .external_lex_state = 10}, + [714] = {.lex_state = 104}, + [715] = {.lex_state = 102}, + [716] = {.lex_state = 148, .external_lex_state = 10}, + [717] = {.lex_state = 148, .external_lex_state = 10}, + [718] = {.lex_state = 148, .external_lex_state = 10}, + [719] = {.lex_state = 148, .external_lex_state = 10}, + [720] = {.lex_state = 114}, + [721] = {.lex_state = 81}, [722] = {.lex_state = 81}, [723] = {.lex_state = 81}, - [724] = {.lex_state = 202, .external_lex_state = 9}, + [724] = {.lex_state = 148, .external_lex_state = 2}, [725] = {.lex_state = 81}, - [726] = {.lex_state = 204, .external_lex_state = 2}, + [726] = {.lex_state = 152, .external_lex_state = 2}, [727] = {.lex_state = 81}, - [728] = {.lex_state = 184, .external_lex_state = 11}, - [729] = {.lex_state = 184, .external_lex_state = 12}, - [730] = {.lex_state = 184, .external_lex_state = 11}, - [731] = {.lex_state = 104}, - [732] = {.lex_state = 102}, - [733] = {.lex_state = 184, .external_lex_state = 11}, - [734] = {.lex_state = 184, .external_lex_state = 11}, - [735] = {.lex_state = 184, .external_lex_state = 11}, - [736] = {.lex_state = 184, .external_lex_state = 11}, - [737] = {.lex_state = 114}, + [728] = {.lex_state = 148, .external_lex_state = 2}, + [729] = {.lex_state = 199, .external_lex_state = 4}, + [730] = {.lex_state = 81}, + [731] = {.lex_state = 169, .external_lex_state = 2}, + [732] = {.lex_state = 81}, + [733] = {.lex_state = 81}, + [734] = {.lex_state = 175, .external_lex_state = 2}, + [735] = {.lex_state = 81}, + [736] = {.lex_state = 203}, + [737] = {.lex_state = 131, .external_lex_state = 4}, [738] = {.lex_state = 81}, [739] = {.lex_state = 81}, [740] = {.lex_state = 81}, - [741] = {.lex_state = 148, .external_lex_state = 2}, - [742] = {.lex_state = 81}, - [743] = {.lex_state = 152, .external_lex_state = 2}, + [741] = {.lex_state = 185, .external_lex_state = 2}, + [742] = {.lex_state = 143, .external_lex_state = 11}, + [743] = {.lex_state = 143, .external_lex_state = 11}, [744] = {.lex_state = 81}, - [745] = {.lex_state = 148, .external_lex_state = 2}, - [746] = {.lex_state = 184, .external_lex_state = 12}, - [747] = {.lex_state = 186, .external_lex_state = 15}, - [748] = {.lex_state = 184, .external_lex_state = 12}, - [749] = {.lex_state = 122, .external_lex_state = 4}, - [750] = {.lex_state = 204, .external_lex_state = 2}, - [751] = {.lex_state = 156, .external_lex_state = 3}, - [752] = {.lex_state = 156, .external_lex_state = 3}, - [753] = {.lex_state = 102}, - [754] = {.lex_state = 81}, - [755] = {.lex_state = 81}, - [756] = {.lex_state = 156, .external_lex_state = 3}, - [757] = {.lex_state = 81}, - [758] = {.lex_state = 102}, - [759] = {.lex_state = 156, .external_lex_state = 3}, - [760] = {.lex_state = 81}, - [761] = {.lex_state = 102}, - [762] = {.lex_state = 156, .external_lex_state = 3}, - [763] = {.lex_state = 156, .external_lex_state = 3}, - [764] = {.lex_state = 186, .external_lex_state = 15}, - [765] = {.lex_state = 186, .external_lex_state = 15}, - [766] = {.lex_state = 186, .external_lex_state = 15}, - [767] = {.lex_state = 114}, - [768] = {.lex_state = 81}, - [769] = {.lex_state = 81}, - [770] = {.lex_state = 186, .external_lex_state = 15}, - [771] = {.lex_state = 156, .external_lex_state = 5}, - [772] = {.lex_state = 102, .external_lex_state = 2}, - [773] = {.lex_state = 162}, - [774] = {.lex_state = 189, .external_lex_state = 9}, - [775] = {.lex_state = 189, .external_lex_state = 9}, + [745] = {.lex_state = 143, .external_lex_state = 11}, + [746] = {.lex_state = 81}, + [747] = {.lex_state = 81}, + [748] = {.lex_state = 209, .external_lex_state = 9}, + [749] = {.lex_state = 81}, + [750] = {.lex_state = 81}, + [751] = {.lex_state = 209, .external_lex_state = 9}, + [752] = {.lex_state = 81}, + [753] = {.lex_state = 189, .external_lex_state = 12}, + [754] = {.lex_state = 189, .external_lex_state = 12}, + [755] = {.lex_state = 102}, + [756] = {.lex_state = 104}, + [757] = {.lex_state = 213, .external_lex_state = 9}, + [758] = {.lex_state = 114}, + [759] = {.lex_state = 114}, + [760] = {.lex_state = 51, .external_lex_state = 2}, + [761] = {.lex_state = 51, .external_lex_state = 2}, + [762] = {.lex_state = 51, .external_lex_state = 2}, + [763] = {.lex_state = 81}, + [764] = {.lex_state = 191, .external_lex_state = 11}, + [765] = {.lex_state = 191, .external_lex_state = 12}, + [766] = {.lex_state = 191, .external_lex_state = 11}, + [767] = {.lex_state = 104}, + [768] = {.lex_state = 102}, + [769] = {.lex_state = 191, .external_lex_state = 11}, + [770] = {.lex_state = 191, .external_lex_state = 11}, + [771] = {.lex_state = 191, .external_lex_state = 11}, + [772] = {.lex_state = 191, .external_lex_state = 11}, + [773] = {.lex_state = 114}, + [774] = {.lex_state = 81}, + [775] = {.lex_state = 81}, [776] = {.lex_state = 81}, - [777] = {.lex_state = 189, .external_lex_state = 9}, + [777] = {.lex_state = 148, .external_lex_state = 2}, [778] = {.lex_state = 81}, - [779] = {.lex_state = 81}, - [780] = {.lex_state = 202, .external_lex_state = 9}, - [781] = {.lex_state = 81}, - [782] = {.lex_state = 81}, - [783] = {.lex_state = 202, .external_lex_state = 9}, - [784] = {.lex_state = 81}, - [785] = {.lex_state = 134, .external_lex_state = 14}, - [786] = {.lex_state = 134, .external_lex_state = 14}, - [787] = {.lex_state = 81}, - [788] = {.lex_state = 134, .external_lex_state = 14}, - [789] = {.lex_state = 81}, - [790] = {.lex_state = 81}, - [791] = {.lex_state = 202, .external_lex_state = 9}, - [792] = {.lex_state = 81}, - [793] = {.lex_state = 81}, - [794] = {.lex_state = 202, .external_lex_state = 9}, - [795] = {.lex_state = 81}, - [796] = {.lex_state = 192, .external_lex_state = 8}, - [797] = {.lex_state = 192, .external_lex_state = 8}, - [798] = {.lex_state = 102}, - [799] = {.lex_state = 81}, + [779] = {.lex_state = 152, .external_lex_state = 2}, + [780] = {.lex_state = 81}, + [781] = {.lex_state = 148, .external_lex_state = 2}, + [782] = {.lex_state = 191, .external_lex_state = 12}, + [783] = {.lex_state = 193, .external_lex_state = 15}, + [784] = {.lex_state = 191, .external_lex_state = 12}, + [785] = {.lex_state = 122, .external_lex_state = 4}, + [786] = {.lex_state = 122, .external_lex_state = 8}, + [787] = {.lex_state = 122, .external_lex_state = 4}, + [788] = {.lex_state = 122, .external_lex_state = 8}, + [789] = {.lex_state = 104}, + [790] = {.lex_state = 102}, + [791] = {.lex_state = 122, .external_lex_state = 8}, + [792] = {.lex_state = 122, .external_lex_state = 8}, + [793] = {.lex_state = 122, .external_lex_state = 8}, + [794] = {.lex_state = 122, .external_lex_state = 8}, + [795] = {.lex_state = 114}, + [796] = {.lex_state = 81}, + [797] = {.lex_state = 81}, + [798] = {.lex_state = 81}, + [799] = {.lex_state = 148, .external_lex_state = 2}, [800] = {.lex_state = 81}, - [801] = {.lex_state = 192, .external_lex_state = 8}, + [801] = {.lex_state = 152, .external_lex_state = 2}, [802] = {.lex_state = 81}, - [803] = {.lex_state = 102}, - [804] = {.lex_state = 192, .external_lex_state = 8}, - [805] = {.lex_state = 81}, + [803] = {.lex_state = 148, .external_lex_state = 2}, + [804] = {.lex_state = 162, .external_lex_state = 3}, + [805] = {.lex_state = 162, .external_lex_state = 3}, [806] = {.lex_state = 102}, - [807] = {.lex_state = 192, .external_lex_state = 8}, - [808] = {.lex_state = 192, .external_lex_state = 8}, - [809] = {.lex_state = 122, .external_lex_state = 4}, - [810] = {.lex_state = 170, .external_lex_state = 2}, - [811] = {.lex_state = 194, .external_lex_state = 2}, - [812] = {.lex_state = 194, .external_lex_state = 2}, - [813] = {.lex_state = 122, .external_lex_state = 4}, - [814] = {.lex_state = 81}, - [815] = {.lex_state = 102}, - [816] = {.lex_state = 208, .external_lex_state = 2}, - [817] = {.lex_state = 189}, - [818] = {.lex_state = 122, .external_lex_state = 4}, - [819] = {.lex_state = 196}, - [820] = {.lex_state = 196}, + [807] = {.lex_state = 81}, + [808] = {.lex_state = 81}, + [809] = {.lex_state = 162, .external_lex_state = 3}, + [810] = {.lex_state = 81}, + [811] = {.lex_state = 102}, + [812] = {.lex_state = 162, .external_lex_state = 3}, + [813] = {.lex_state = 81}, + [814] = {.lex_state = 102}, + [815] = {.lex_state = 162, .external_lex_state = 3}, + [816] = {.lex_state = 162, .external_lex_state = 3}, + [817] = {.lex_state = 193, .external_lex_state = 15}, + [818] = {.lex_state = 193, .external_lex_state = 15}, + [819] = {.lex_state = 193, .external_lex_state = 15}, + [820] = {.lex_state = 114}, [821] = {.lex_state = 81}, [822] = {.lex_state = 81}, - [823] = {.lex_state = 81}, - [824] = {.lex_state = 131, .external_lex_state = 8}, - [825] = {.lex_state = 81}, - [826] = {.lex_state = 131, .external_lex_state = 8}, - [827] = {.lex_state = 81}, - [828] = {.lex_state = 81}, + [823] = {.lex_state = 193, .external_lex_state = 15}, + [824] = {.lex_state = 162, .external_lex_state = 5}, + [825] = {.lex_state = 102, .external_lex_state = 2}, + [826] = {.lex_state = 167}, + [827] = {.lex_state = 196, .external_lex_state = 9}, + [828] = {.lex_state = 196, .external_lex_state = 9}, [829] = {.lex_state = 81}, - [830] = {.lex_state = 182, .external_lex_state = 9}, + [830] = {.lex_state = 196, .external_lex_state = 9}, [831] = {.lex_state = 81}, - [832] = {.lex_state = 182, .external_lex_state = 9}, - [833] = {.lex_state = 81}, + [832] = {.lex_state = 81}, + [833] = {.lex_state = 209, .external_lex_state = 9}, [834] = {.lex_state = 81}, [835] = {.lex_state = 81}, - [836] = {.lex_state = 139, .external_lex_state = 9}, + [836] = {.lex_state = 209, .external_lex_state = 9}, [837] = {.lex_state = 81}, - [838] = {.lex_state = 139, .external_lex_state = 9}, - [839] = {.lex_state = 81}, + [838] = {.lex_state = 134, .external_lex_state = 14}, + [839] = {.lex_state = 134, .external_lex_state = 14}, [840] = {.lex_state = 81}, - [841] = {.lex_state = 81}, - [842] = {.lex_state = 102, .external_lex_state = 10}, + [841] = {.lex_state = 134, .external_lex_state = 14}, + [842] = {.lex_state = 81}, [843] = {.lex_state = 81}, - [844] = {.lex_state = 102, .external_lex_state = 10}, + [844] = {.lex_state = 209, .external_lex_state = 9}, [845] = {.lex_state = 81}, [846] = {.lex_state = 81}, - [847] = {.lex_state = 81}, - [848] = {.lex_state = 104}, - [849] = {.lex_state = 81}, - [850] = {.lex_state = 104}, - [851] = {.lex_state = 81}, + [847] = {.lex_state = 209, .external_lex_state = 9}, + [848] = {.lex_state = 81}, + [849] = {.lex_state = 199, .external_lex_state = 8}, + [850] = {.lex_state = 199, .external_lex_state = 8}, + [851] = {.lex_state = 102}, [852] = {.lex_state = 81}, - [853] = {.lex_state = 109, .external_lex_state = 3}, - [854] = {.lex_state = 109, .external_lex_state = 3}, - [855] = {.lex_state = 148, .external_lex_state = 2}, - [856] = {.lex_state = 148, .external_lex_state = 10}, - [857] = {.lex_state = 148, .external_lex_state = 10}, - [858] = {.lex_state = 102}, - [859] = {.lex_state = 81}, - [860] = {.lex_state = 81}, - [861] = {.lex_state = 148, .external_lex_state = 10}, - [862] = {.lex_state = 81}, - [863] = {.lex_state = 102}, - [864] = {.lex_state = 148, .external_lex_state = 10}, - [865] = {.lex_state = 81}, - [866] = {.lex_state = 102}, - [867] = {.lex_state = 148, .external_lex_state = 10}, - [868] = {.lex_state = 148, .external_lex_state = 10}, - [869] = {.lex_state = 81}, - [870] = {.lex_state = 81}, - [871] = {.lex_state = 81}, - [872] = {.lex_state = 81}, - [873] = {.lex_state = 81}, + [853] = {.lex_state = 81}, + [854] = {.lex_state = 199, .external_lex_state = 8}, + [855] = {.lex_state = 81}, + [856] = {.lex_state = 102}, + [857] = {.lex_state = 199, .external_lex_state = 8}, + [858] = {.lex_state = 81}, + [859] = {.lex_state = 102}, + [860] = {.lex_state = 199, .external_lex_state = 8}, + [861] = {.lex_state = 199, .external_lex_state = 8}, + [862] = {.lex_state = 122, .external_lex_state = 4}, + [863] = {.lex_state = 175, .external_lex_state = 2}, + [864] = {.lex_state = 201, .external_lex_state = 2}, + [865] = {.lex_state = 201, .external_lex_state = 2}, + [866] = {.lex_state = 122, .external_lex_state = 4}, + [867] = {.lex_state = 81}, + [868] = {.lex_state = 102}, + [869] = {.lex_state = 215, .external_lex_state = 2}, + [870] = {.lex_state = 196}, + [871] = {.lex_state = 122, .external_lex_state = 4}, + [872] = {.lex_state = 203}, + [873] = {.lex_state = 203}, [874] = {.lex_state = 81}, - [875] = {.lex_state = 196}, - [876] = {.lex_state = 196}, - [877] = {.lex_state = 81}, + [875] = {.lex_state = 81}, + [876] = {.lex_state = 81}, + [877] = {.lex_state = 131, .external_lex_state = 8}, [878] = {.lex_state = 81}, - [879] = {.lex_state = 81}, - [880] = {.lex_state = 81}, + [879] = {.lex_state = 131, .external_lex_state = 8}, + [880] = {.lex_state = 122, .external_lex_state = 4}, [881] = {.lex_state = 81}, - [882] = {.lex_state = 143, .external_lex_state = 11}, + [882] = {.lex_state = 81}, [883] = {.lex_state = 81}, - [884] = {.lex_state = 143, .external_lex_state = 11}, + [884] = {.lex_state = 187, .external_lex_state = 9}, [885] = {.lex_state = 81}, - [886] = {.lex_state = 204, .external_lex_state = 2}, - [887] = {.lex_state = 184, .external_lex_state = 11}, - [888] = {.lex_state = 184, .external_lex_state = 11}, - [889] = {.lex_state = 102}, - [890] = {.lex_state = 81}, + [886] = {.lex_state = 187, .external_lex_state = 9}, + [887] = {.lex_state = 81}, + [888] = {.lex_state = 81}, + [889] = {.lex_state = 81}, + [890] = {.lex_state = 139, .external_lex_state = 9}, [891] = {.lex_state = 81}, - [892] = {.lex_state = 184, .external_lex_state = 11}, + [892] = {.lex_state = 139, .external_lex_state = 9}, [893] = {.lex_state = 81}, - [894] = {.lex_state = 102}, - [895] = {.lex_state = 184, .external_lex_state = 11}, - [896] = {.lex_state = 81}, - [897] = {.lex_state = 102}, - [898] = {.lex_state = 184, .external_lex_state = 11}, - [899] = {.lex_state = 184, .external_lex_state = 11}, - [900] = {.lex_state = 184, .external_lex_state = 12}, - [901] = {.lex_state = 122, .external_lex_state = 4}, - [902] = {.lex_state = 156, .external_lex_state = 3}, - [903] = {.lex_state = 156, .external_lex_state = 3}, - [904] = {.lex_state = 81}, - [905] = {.lex_state = 156, .external_lex_state = 3}, + [894] = {.lex_state = 81}, + [895] = {.lex_state = 81}, + [896] = {.lex_state = 102, .external_lex_state = 10}, + [897] = {.lex_state = 81}, + [898] = {.lex_state = 102, .external_lex_state = 10}, + [899] = {.lex_state = 81}, + [900] = {.lex_state = 81}, + [901] = {.lex_state = 81}, + [902] = {.lex_state = 104}, + [903] = {.lex_state = 81}, + [904] = {.lex_state = 104}, + [905] = {.lex_state = 81}, [906] = {.lex_state = 81}, - [907] = {.lex_state = 81}, - [908] = {.lex_state = 202, .external_lex_state = 9}, - [909] = {.lex_state = 81}, - [910] = {.lex_state = 81}, - [911] = {.lex_state = 202, .external_lex_state = 9}, - [912] = {.lex_state = 81}, + [907] = {.lex_state = 109, .external_lex_state = 3}, + [908] = {.lex_state = 109, .external_lex_state = 3}, + [909] = {.lex_state = 148, .external_lex_state = 2}, + [910] = {.lex_state = 148, .external_lex_state = 10}, + [911] = {.lex_state = 148, .external_lex_state = 10}, + [912] = {.lex_state = 102}, [913] = {.lex_state = 81}, [914] = {.lex_state = 81}, - [915] = {.lex_state = 186, .external_lex_state = 15}, + [915] = {.lex_state = 148, .external_lex_state = 10}, [916] = {.lex_state = 81}, [917] = {.lex_state = 102}, - [918] = {.lex_state = 186, .external_lex_state = 15}, + [918] = {.lex_state = 148, .external_lex_state = 10}, [919] = {.lex_state = 81}, [920] = {.lex_state = 102}, - [921] = {.lex_state = 102, .external_lex_state = 2}, - [922] = {.lex_state = 81}, + [921] = {.lex_state = 148, .external_lex_state = 10}, + [922] = {.lex_state = 148, .external_lex_state = 10}, [923] = {.lex_state = 81}, [924] = {.lex_state = 81}, - [925] = {.lex_state = 189, .external_lex_state = 9}, + [925] = {.lex_state = 81}, [926] = {.lex_state = 81}, - [927] = {.lex_state = 189, .external_lex_state = 9}, + [927] = {.lex_state = 81}, [928] = {.lex_state = 81}, - [929] = {.lex_state = 81}, - [930] = {.lex_state = 81}, - [931] = {.lex_state = 134, .external_lex_state = 14}, + [929] = {.lex_state = 203}, + [930] = {.lex_state = 203}, + [931] = {.lex_state = 189, .external_lex_state = 12}, [932] = {.lex_state = 81}, - [933] = {.lex_state = 134, .external_lex_state = 14}, - [934] = {.lex_state = 192, .external_lex_state = 8}, - [935] = {.lex_state = 192, .external_lex_state = 8}, - [936] = {.lex_state = 81}, - [937] = {.lex_state = 192, .external_lex_state = 8}, - [938] = {.lex_state = 81}, + [933] = {.lex_state = 81}, + [934] = {.lex_state = 81}, + [935] = {.lex_state = 81}, + [936] = {.lex_state = 143, .external_lex_state = 11}, + [937] = {.lex_state = 81}, + [938] = {.lex_state = 143, .external_lex_state = 11}, [939] = {.lex_state = 81}, - [940] = {.lex_state = 202, .external_lex_state = 9}, + [940] = {.lex_state = 213, .external_lex_state = 9}, [941] = {.lex_state = 81}, - [942] = {.lex_state = 81}, - [943] = {.lex_state = 202, .external_lex_state = 9}, - [944] = {.lex_state = 81}, - [945] = {.lex_state = 170, .external_lex_state = 2}, - [946] = {.lex_state = 122, .external_lex_state = 4}, - [947] = {.lex_state = 206, .external_lex_state = 9}, - [948] = {.lex_state = 189}, - [949] = {.lex_state = 196}, - [950] = {.lex_state = 208, .external_lex_state = 2}, - [951] = {.lex_state = 102}, - [952] = {.lex_state = 208, .external_lex_state = 2}, - [953] = {.lex_state = 122, .external_lex_state = 4}, + [942] = {.lex_state = 213, .external_lex_state = 9}, + [943] = {.lex_state = 104}, + [944] = {.lex_state = 102}, + [945] = {.lex_state = 213, .external_lex_state = 9}, + [946] = {.lex_state = 213, .external_lex_state = 9}, + [947] = {.lex_state = 213, .external_lex_state = 9}, + [948] = {.lex_state = 213, .external_lex_state = 9}, + [949] = {.lex_state = 114}, + [950] = {.lex_state = 81}, + [951] = {.lex_state = 81}, + [952] = {.lex_state = 81}, + [953] = {.lex_state = 148, .external_lex_state = 2}, [954] = {.lex_state = 81}, - [955] = {.lex_state = 81}, - [956] = {.lex_state = 131, .external_lex_state = 8}, - [957] = {.lex_state = 131, .external_lex_state = 8}, - [958] = {.lex_state = 81}, - [959] = {.lex_state = 81}, - [960] = {.lex_state = 182, .external_lex_state = 9}, - [961] = {.lex_state = 182, .external_lex_state = 9}, + [955] = {.lex_state = 152, .external_lex_state = 2}, + [956] = {.lex_state = 81}, + [957] = {.lex_state = 148, .external_lex_state = 2}, + [958] = {.lex_state = 191, .external_lex_state = 11}, + [959] = {.lex_state = 191, .external_lex_state = 11}, + [960] = {.lex_state = 102}, + [961] = {.lex_state = 81}, [962] = {.lex_state = 81}, - [963] = {.lex_state = 81}, - [964] = {.lex_state = 139, .external_lex_state = 9}, - [965] = {.lex_state = 139, .external_lex_state = 9}, - [966] = {.lex_state = 81}, + [963] = {.lex_state = 191, .external_lex_state = 11}, + [964] = {.lex_state = 81}, + [965] = {.lex_state = 102}, + [966] = {.lex_state = 191, .external_lex_state = 11}, [967] = {.lex_state = 81}, - [968] = {.lex_state = 102, .external_lex_state = 10}, - [969] = {.lex_state = 102, .external_lex_state = 10}, - [970] = {.lex_state = 81}, - [971] = {.lex_state = 81}, - [972] = {.lex_state = 104}, - [973] = {.lex_state = 104}, - [974] = {.lex_state = 109, .external_lex_state = 3}, - [975] = {.lex_state = 109, .external_lex_state = 3}, - [976] = {.lex_state = 148, .external_lex_state = 10}, - [977] = {.lex_state = 148, .external_lex_state = 10}, + [968] = {.lex_state = 102}, + [969] = {.lex_state = 191, .external_lex_state = 11}, + [970] = {.lex_state = 191, .external_lex_state = 11}, + [971] = {.lex_state = 191, .external_lex_state = 12}, + [972] = {.lex_state = 122, .external_lex_state = 8}, + [973] = {.lex_state = 122, .external_lex_state = 8}, + [974] = {.lex_state = 102}, + [975] = {.lex_state = 81}, + [976] = {.lex_state = 81}, + [977] = {.lex_state = 122, .external_lex_state = 8}, [978] = {.lex_state = 81}, - [979] = {.lex_state = 148, .external_lex_state = 10}, - [980] = {.lex_state = 81}, + [979] = {.lex_state = 102}, + [980] = {.lex_state = 122, .external_lex_state = 8}, [981] = {.lex_state = 81}, - [982] = {.lex_state = 202, .external_lex_state = 9}, - [983] = {.lex_state = 81}, - [984] = {.lex_state = 81}, - [985] = {.lex_state = 202, .external_lex_state = 9}, - [986] = {.lex_state = 81}, + [982] = {.lex_state = 102}, + [983] = {.lex_state = 122, .external_lex_state = 8}, + [984] = {.lex_state = 122, .external_lex_state = 8}, + [985] = {.lex_state = 162, .external_lex_state = 3}, + [986] = {.lex_state = 162, .external_lex_state = 3}, [987] = {.lex_state = 81}, - [988] = {.lex_state = 81}, + [988] = {.lex_state = 162, .external_lex_state = 3}, [989] = {.lex_state = 81}, [990] = {.lex_state = 81}, - [991] = {.lex_state = 196}, + [991] = {.lex_state = 209, .external_lex_state = 9}, [992] = {.lex_state = 81}, [993] = {.lex_state = 81}, - [994] = {.lex_state = 143, .external_lex_state = 11}, - [995] = {.lex_state = 143, .external_lex_state = 11}, + [994] = {.lex_state = 209, .external_lex_state = 9}, + [995] = {.lex_state = 81}, [996] = {.lex_state = 81}, - [997] = {.lex_state = 184, .external_lex_state = 11}, - [998] = {.lex_state = 184, .external_lex_state = 11}, + [997] = {.lex_state = 81}, + [998] = {.lex_state = 193, .external_lex_state = 15}, [999] = {.lex_state = 81}, - [1000] = {.lex_state = 184, .external_lex_state = 11}, - [1001] = {.lex_state = 81}, + [1000] = {.lex_state = 102}, + [1001] = {.lex_state = 193, .external_lex_state = 15}, [1002] = {.lex_state = 81}, - [1003] = {.lex_state = 202, .external_lex_state = 9}, - [1004] = {.lex_state = 81}, + [1003] = {.lex_state = 102}, + [1004] = {.lex_state = 102, .external_lex_state = 2}, [1005] = {.lex_state = 81}, - [1006] = {.lex_state = 202, .external_lex_state = 9}, + [1006] = {.lex_state = 81}, [1007] = {.lex_state = 81}, - [1008] = {.lex_state = 81}, + [1008] = {.lex_state = 196, .external_lex_state = 9}, [1009] = {.lex_state = 81}, - [1010] = {.lex_state = 81}, - [1011] = {.lex_state = 156, .external_lex_state = 3}, + [1010] = {.lex_state = 196, .external_lex_state = 9}, + [1011] = {.lex_state = 81}, [1012] = {.lex_state = 81}, - [1013] = {.lex_state = 156, .external_lex_state = 3}, - [1014] = {.lex_state = 186, .external_lex_state = 15}, + [1013] = {.lex_state = 81}, + [1014] = {.lex_state = 134, .external_lex_state = 14}, [1015] = {.lex_state = 81}, - [1016] = {.lex_state = 186, .external_lex_state = 15}, - [1017] = {.lex_state = 81}, - [1018] = {.lex_state = 81}, - [1019] = {.lex_state = 202, .external_lex_state = 9}, - [1020] = {.lex_state = 81}, + [1016] = {.lex_state = 134, .external_lex_state = 14}, + [1017] = {.lex_state = 199, .external_lex_state = 8}, + [1018] = {.lex_state = 199, .external_lex_state = 8}, + [1019] = {.lex_state = 81}, + [1020] = {.lex_state = 199, .external_lex_state = 8}, [1021] = {.lex_state = 81}, - [1022] = {.lex_state = 202, .external_lex_state = 9}, - [1023] = {.lex_state = 81}, + [1022] = {.lex_state = 81}, + [1023] = {.lex_state = 209, .external_lex_state = 9}, [1024] = {.lex_state = 81}, [1025] = {.lex_state = 81}, - [1026] = {.lex_state = 189, .external_lex_state = 9}, - [1027] = {.lex_state = 189, .external_lex_state = 9}, - [1028] = {.lex_state = 81}, - [1029] = {.lex_state = 81}, - [1030] = {.lex_state = 134, .external_lex_state = 14}, - [1031] = {.lex_state = 134, .external_lex_state = 14}, - [1032] = {.lex_state = 81}, - [1033] = {.lex_state = 81}, - [1034] = {.lex_state = 81}, - [1035] = {.lex_state = 192, .external_lex_state = 8}, - [1036] = {.lex_state = 81}, - [1037] = {.lex_state = 192, .external_lex_state = 8}, - [1038] = {.lex_state = 196}, - [1039] = {.lex_state = 206, .external_lex_state = 9}, - [1040] = {.lex_state = 189}, - [1041] = {.lex_state = 208, .external_lex_state = 2}, - [1042] = {.lex_state = 131, .external_lex_state = 8}, - [1043] = {.lex_state = 131, .external_lex_state = 8}, - [1044] = {.lex_state = 182, .external_lex_state = 9}, - [1045] = {.lex_state = 182, .external_lex_state = 9}, - [1046] = {.lex_state = 139, .external_lex_state = 9}, + [1026] = {.lex_state = 209, .external_lex_state = 9}, + [1027] = {.lex_state = 81}, + [1028] = {.lex_state = 175, .external_lex_state = 2}, + [1029] = {.lex_state = 122, .external_lex_state = 4}, + [1030] = {.lex_state = 211, .external_lex_state = 9}, + [1031] = {.lex_state = 196}, + [1032] = {.lex_state = 203}, + [1033] = {.lex_state = 215, .external_lex_state = 2}, + [1034] = {.lex_state = 102}, + [1035] = {.lex_state = 215, .external_lex_state = 2}, + [1036] = {.lex_state = 122, .external_lex_state = 4}, + [1037] = {.lex_state = 81}, + [1038] = {.lex_state = 81}, + [1039] = {.lex_state = 131, .external_lex_state = 8}, + [1040] = {.lex_state = 131, .external_lex_state = 8}, + [1041] = {.lex_state = 81}, + [1042] = {.lex_state = 81}, + [1043] = {.lex_state = 187, .external_lex_state = 9}, + [1044] = {.lex_state = 187, .external_lex_state = 9}, + [1045] = {.lex_state = 81}, + [1046] = {.lex_state = 81}, [1047] = {.lex_state = 139, .external_lex_state = 9}, - [1048] = {.lex_state = 102, .external_lex_state = 10}, - [1049] = {.lex_state = 102, .external_lex_state = 10}, - [1050] = {.lex_state = 104}, - [1051] = {.lex_state = 104}, - [1052] = {.lex_state = 81}, + [1048] = {.lex_state = 139, .external_lex_state = 9}, + [1049] = {.lex_state = 81}, + [1050] = {.lex_state = 81}, + [1051] = {.lex_state = 102, .external_lex_state = 10}, + [1052] = {.lex_state = 102, .external_lex_state = 10}, [1053] = {.lex_state = 81}, [1054] = {.lex_state = 81}, - [1055] = {.lex_state = 148, .external_lex_state = 10}, - [1056] = {.lex_state = 81}, - [1057] = {.lex_state = 148, .external_lex_state = 10}, - [1058] = {.lex_state = 81}, - [1059] = {.lex_state = 81}, - [1060] = {.lex_state = 143, .external_lex_state = 11}, - [1061] = {.lex_state = 143, .external_lex_state = 11}, - [1062] = {.lex_state = 81}, + [1055] = {.lex_state = 104}, + [1056] = {.lex_state = 104}, + [1057] = {.lex_state = 109, .external_lex_state = 3}, + [1058] = {.lex_state = 109, .external_lex_state = 3}, + [1059] = {.lex_state = 148, .external_lex_state = 10}, + [1060] = {.lex_state = 148, .external_lex_state = 10}, + [1061] = {.lex_state = 81}, + [1062] = {.lex_state = 148, .external_lex_state = 10}, [1063] = {.lex_state = 81}, [1064] = {.lex_state = 81}, - [1065] = {.lex_state = 184, .external_lex_state = 11}, + [1065] = {.lex_state = 209, .external_lex_state = 9}, [1066] = {.lex_state = 81}, - [1067] = {.lex_state = 184, .external_lex_state = 11}, - [1068] = {.lex_state = 81}, + [1067] = {.lex_state = 81}, + [1068] = {.lex_state = 209, .external_lex_state = 9}, [1069] = {.lex_state = 81}, - [1070] = {.lex_state = 156, .external_lex_state = 3}, - [1071] = {.lex_state = 156, .external_lex_state = 3}, + [1070] = {.lex_state = 81}, + [1071] = {.lex_state = 81}, [1072] = {.lex_state = 81}, [1073] = {.lex_state = 81}, - [1074] = {.lex_state = 81}, - [1075] = {.lex_state = 186, .external_lex_state = 15}, + [1074] = {.lex_state = 203}, + [1075] = {.lex_state = 81}, [1076] = {.lex_state = 81}, - [1077] = {.lex_state = 186, .external_lex_state = 15}, - [1078] = {.lex_state = 189, .external_lex_state = 9}, - [1079] = {.lex_state = 189, .external_lex_state = 9}, - [1080] = {.lex_state = 134, .external_lex_state = 14}, - [1081] = {.lex_state = 134, .external_lex_state = 14}, - [1082] = {.lex_state = 81}, + [1077] = {.lex_state = 81}, + [1078] = {.lex_state = 143, .external_lex_state = 11}, + [1079] = {.lex_state = 143, .external_lex_state = 11}, + [1080] = {.lex_state = 213, .external_lex_state = 9}, + [1081] = {.lex_state = 213, .external_lex_state = 9}, + [1082] = {.lex_state = 102}, [1083] = {.lex_state = 81}, - [1084] = {.lex_state = 192, .external_lex_state = 8}, - [1085] = {.lex_state = 192, .external_lex_state = 8}, - [1086] = {.lex_state = 196}, - [1087] = {.lex_state = 81}, - [1088] = {.lex_state = 81}, - [1089] = {.lex_state = 148, .external_lex_state = 10}, - [1090] = {.lex_state = 148, .external_lex_state = 10}, - [1091] = {.lex_state = 81}, - [1092] = {.lex_state = 81}, - [1093] = {.lex_state = 184, .external_lex_state = 11}, - [1094] = {.lex_state = 184, .external_lex_state = 11}, - [1095] = {.lex_state = 156, .external_lex_state = 3}, - [1096] = {.lex_state = 156, .external_lex_state = 3}, + [1084] = {.lex_state = 81}, + [1085] = {.lex_state = 213, .external_lex_state = 9}, + [1086] = {.lex_state = 81}, + [1087] = {.lex_state = 102}, + [1088] = {.lex_state = 213, .external_lex_state = 9}, + [1089] = {.lex_state = 81}, + [1090] = {.lex_state = 102}, + [1091] = {.lex_state = 213, .external_lex_state = 9}, + [1092] = {.lex_state = 213, .external_lex_state = 9}, + [1093] = {.lex_state = 191, .external_lex_state = 11}, + [1094] = {.lex_state = 191, .external_lex_state = 11}, + [1095] = {.lex_state = 81}, + [1096] = {.lex_state = 191, .external_lex_state = 11}, [1097] = {.lex_state = 81}, [1098] = {.lex_state = 81}, - [1099] = {.lex_state = 186, .external_lex_state = 15}, - [1100] = {.lex_state = 186, .external_lex_state = 15}, - [1101] = {.lex_state = 192, .external_lex_state = 8}, - [1102] = {.lex_state = 192, .external_lex_state = 8}, - [1103] = {.lex_state = 148, .external_lex_state = 10}, - [1104] = {.lex_state = 148, .external_lex_state = 10}, - [1105] = {.lex_state = 184, .external_lex_state = 11}, - [1106] = {.lex_state = 184, .external_lex_state = 11}, - [1107] = {.lex_state = 186, .external_lex_state = 15}, - [1108] = {.lex_state = 186, .external_lex_state = 15}, + [1099] = {.lex_state = 209, .external_lex_state = 9}, + [1100] = {.lex_state = 81}, + [1101] = {.lex_state = 81}, + [1102] = {.lex_state = 209, .external_lex_state = 9}, + [1103] = {.lex_state = 81}, + [1104] = {.lex_state = 122, .external_lex_state = 8}, + [1105] = {.lex_state = 122, .external_lex_state = 8}, + [1106] = {.lex_state = 81}, + [1107] = {.lex_state = 122, .external_lex_state = 8}, + [1108] = {.lex_state = 81}, + [1109] = {.lex_state = 81}, + [1110] = {.lex_state = 209, .external_lex_state = 9}, + [1111] = {.lex_state = 81}, + [1112] = {.lex_state = 81}, + [1113] = {.lex_state = 209, .external_lex_state = 9}, + [1114] = {.lex_state = 81}, + [1115] = {.lex_state = 81}, + [1116] = {.lex_state = 81}, + [1117] = {.lex_state = 81}, + [1118] = {.lex_state = 162, .external_lex_state = 3}, + [1119] = {.lex_state = 81}, + [1120] = {.lex_state = 162, .external_lex_state = 3}, + [1121] = {.lex_state = 193, .external_lex_state = 15}, + [1122] = {.lex_state = 81}, + [1123] = {.lex_state = 193, .external_lex_state = 15}, + [1124] = {.lex_state = 81}, + [1125] = {.lex_state = 81}, + [1126] = {.lex_state = 209, .external_lex_state = 9}, + [1127] = {.lex_state = 81}, + [1128] = {.lex_state = 81}, + [1129] = {.lex_state = 209, .external_lex_state = 9}, + [1130] = {.lex_state = 81}, + [1131] = {.lex_state = 81}, + [1132] = {.lex_state = 81}, + [1133] = {.lex_state = 196, .external_lex_state = 9}, + [1134] = {.lex_state = 196, .external_lex_state = 9}, + [1135] = {.lex_state = 81}, + [1136] = {.lex_state = 81}, + [1137] = {.lex_state = 134, .external_lex_state = 14}, + [1138] = {.lex_state = 134, .external_lex_state = 14}, + [1139] = {.lex_state = 81}, + [1140] = {.lex_state = 81}, + [1141] = {.lex_state = 81}, + [1142] = {.lex_state = 199, .external_lex_state = 8}, + [1143] = {.lex_state = 81}, + [1144] = {.lex_state = 199, .external_lex_state = 8}, + [1145] = {.lex_state = 203}, + [1146] = {.lex_state = 211, .external_lex_state = 9}, + [1147] = {.lex_state = 196}, + [1148] = {.lex_state = 215, .external_lex_state = 2}, + [1149] = {.lex_state = 131, .external_lex_state = 8}, + [1150] = {.lex_state = 131, .external_lex_state = 8}, + [1151] = {.lex_state = 187, .external_lex_state = 9}, + [1152] = {.lex_state = 187, .external_lex_state = 9}, + [1153] = {.lex_state = 139, .external_lex_state = 9}, + [1154] = {.lex_state = 139, .external_lex_state = 9}, + [1155] = {.lex_state = 102, .external_lex_state = 10}, + [1156] = {.lex_state = 102, .external_lex_state = 10}, + [1157] = {.lex_state = 104}, + [1158] = {.lex_state = 104}, + [1159] = {.lex_state = 81}, + [1160] = {.lex_state = 81}, + [1161] = {.lex_state = 81}, + [1162] = {.lex_state = 148, .external_lex_state = 10}, + [1163] = {.lex_state = 81}, + [1164] = {.lex_state = 148, .external_lex_state = 10}, + [1165] = {.lex_state = 81}, + [1166] = {.lex_state = 81}, + [1167] = {.lex_state = 143, .external_lex_state = 11}, + [1168] = {.lex_state = 143, .external_lex_state = 11}, + [1169] = {.lex_state = 213, .external_lex_state = 9}, + [1170] = {.lex_state = 213, .external_lex_state = 9}, + [1171] = {.lex_state = 81}, + [1172] = {.lex_state = 213, .external_lex_state = 9}, + [1173] = {.lex_state = 81}, + [1174] = {.lex_state = 81}, + [1175] = {.lex_state = 209, .external_lex_state = 9}, + [1176] = {.lex_state = 81}, + [1177] = {.lex_state = 81}, + [1178] = {.lex_state = 209, .external_lex_state = 9}, + [1179] = {.lex_state = 81}, + [1180] = {.lex_state = 81}, + [1181] = {.lex_state = 81}, + [1182] = {.lex_state = 81}, + [1183] = {.lex_state = 191, .external_lex_state = 11}, + [1184] = {.lex_state = 81}, + [1185] = {.lex_state = 191, .external_lex_state = 11}, + [1186] = {.lex_state = 81}, + [1187] = {.lex_state = 81}, + [1188] = {.lex_state = 81}, + [1189] = {.lex_state = 122, .external_lex_state = 8}, + [1190] = {.lex_state = 81}, + [1191] = {.lex_state = 122, .external_lex_state = 8}, + [1192] = {.lex_state = 81}, + [1193] = {.lex_state = 81}, + [1194] = {.lex_state = 162, .external_lex_state = 3}, + [1195] = {.lex_state = 162, .external_lex_state = 3}, + [1196] = {.lex_state = 81}, + [1197] = {.lex_state = 81}, + [1198] = {.lex_state = 81}, + [1199] = {.lex_state = 193, .external_lex_state = 15}, + [1200] = {.lex_state = 81}, + [1201] = {.lex_state = 193, .external_lex_state = 15}, + [1202] = {.lex_state = 196, .external_lex_state = 9}, + [1203] = {.lex_state = 196, .external_lex_state = 9}, + [1204] = {.lex_state = 134, .external_lex_state = 14}, + [1205] = {.lex_state = 134, .external_lex_state = 14}, + [1206] = {.lex_state = 81}, + [1207] = {.lex_state = 81}, + [1208] = {.lex_state = 199, .external_lex_state = 8}, + [1209] = {.lex_state = 199, .external_lex_state = 8}, + [1210] = {.lex_state = 203}, + [1211] = {.lex_state = 81}, + [1212] = {.lex_state = 81}, + [1213] = {.lex_state = 148, .external_lex_state = 10}, + [1214] = {.lex_state = 148, .external_lex_state = 10}, + [1215] = {.lex_state = 81}, + [1216] = {.lex_state = 81}, + [1217] = {.lex_state = 81}, + [1218] = {.lex_state = 213, .external_lex_state = 9}, + [1219] = {.lex_state = 81}, + [1220] = {.lex_state = 213, .external_lex_state = 9}, + [1221] = {.lex_state = 81}, + [1222] = {.lex_state = 81}, + [1223] = {.lex_state = 191, .external_lex_state = 11}, + [1224] = {.lex_state = 191, .external_lex_state = 11}, + [1225] = {.lex_state = 81}, + [1226] = {.lex_state = 81}, + [1227] = {.lex_state = 122, .external_lex_state = 8}, + [1228] = {.lex_state = 122, .external_lex_state = 8}, + [1229] = {.lex_state = 162, .external_lex_state = 3}, + [1230] = {.lex_state = 162, .external_lex_state = 3}, + [1231] = {.lex_state = 81}, + [1232] = {.lex_state = 81}, + [1233] = {.lex_state = 193, .external_lex_state = 15}, + [1234] = {.lex_state = 193, .external_lex_state = 15}, + [1235] = {.lex_state = 199, .external_lex_state = 8}, + [1236] = {.lex_state = 199, .external_lex_state = 8}, + [1237] = {.lex_state = 148, .external_lex_state = 10}, + [1238] = {.lex_state = 148, .external_lex_state = 10}, + [1239] = {.lex_state = 81}, + [1240] = {.lex_state = 81}, + [1241] = {.lex_state = 213, .external_lex_state = 9}, + [1242] = {.lex_state = 213, .external_lex_state = 9}, + [1243] = {.lex_state = 191, .external_lex_state = 11}, + [1244] = {.lex_state = 191, .external_lex_state = 11}, + [1245] = {.lex_state = 122, .external_lex_state = 8}, + [1246] = {.lex_state = 122, .external_lex_state = 8}, + [1247] = {.lex_state = 193, .external_lex_state = 15}, + [1248] = {.lex_state = 193, .external_lex_state = 15}, + [1249] = {.lex_state = 213, .external_lex_state = 9}, + [1250] = {.lex_state = 213, .external_lex_state = 9}, }; enum { @@ -5423,6 +5654,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [20] = { + [sym_compound_statement] = STATE(124), [aux_sym_concatenation_repeat1] = STATE(85), [sym_file_descriptor] = ACTIONS(144), [sym__concat] = ACTIONS(146), @@ -5430,6 +5662,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(148), [anon_sym_SEMI_SEMI] = ACTIONS(148), [anon_sym_LPAREN] = ACTIONS(198), + [anon_sym_LBRACE] = ACTIONS(200), [anon_sym_PIPE_AMP] = ACTIONS(148), [anon_sym_AMP_AMP] = ACTIONS(148), [anon_sym_PIPE_PIPE] = ACTIONS(148), @@ -5457,145 +5690,145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(148), }, [21] = { - [ts_builtin_sym_end] = ACTIONS(200), + [ts_builtin_sym_end] = ACTIONS(202), [sym_comment] = ACTIONS(52), }, [22] = { - [sym_file_descriptor] = ACTIONS(202), - [sym_variable_name] = ACTIONS(202), - [ts_builtin_sym_end] = ACTIONS(202), - [anon_sym_for] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_case] = ACTIONS(204), - [anon_sym_SEMI_SEMI] = ACTIONS(202), - [anon_sym_function] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_RBRACE] = ACTIONS(202), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_GT] = ACTIONS(204), - [anon_sym_GT_GT] = ACTIONS(202), - [anon_sym_AMP_GT] = ACTIONS(204), - [anon_sym_AMP_GT_GT] = ACTIONS(202), - [anon_sym_LT_AMP] = ACTIONS(202), - [anon_sym_GT_AMP] = ACTIONS(202), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(202), - [anon_sym_DOLLAR] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(202), - [anon_sym_BQUOTE] = ACTIONS(202), - [anon_sym_LT_LPAREN] = ACTIONS(202), - [anon_sym_GT_LPAREN] = ACTIONS(202), - [sym_word] = ACTIONS(206), + [sym_file_descriptor] = ACTIONS(204), + [sym_variable_name] = ACTIONS(204), + [ts_builtin_sym_end] = ACTIONS(204), + [anon_sym_for] = ACTIONS(206), + [anon_sym_while] = ACTIONS(206), + [anon_sym_if] = ACTIONS(206), + [anon_sym_case] = ACTIONS(206), + [anon_sym_SEMI_SEMI] = ACTIONS(204), + [anon_sym_function] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(204), + [anon_sym_RBRACE] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_GT_GT] = ACTIONS(204), + [anon_sym_AMP_GT] = ACTIONS(206), + [anon_sym_AMP_GT_GT] = ACTIONS(204), + [anon_sym_LT_AMP] = ACTIONS(204), + [anon_sym_GT_AMP] = ACTIONS(204), + [anon_sym_DQUOTE] = ACTIONS(204), + [sym_raw_string] = ACTIONS(204), + [anon_sym_DOLLAR] = ACTIONS(206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(204), + [anon_sym_LT_LPAREN] = ACTIONS(204), + [anon_sym_GT_LPAREN] = ACTIONS(204), + [sym_word] = ACTIONS(208), [sym_comment] = ACTIONS(52), }, [23] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(210), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(212), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LF] = ACTIONS(210), - [anon_sym_AMP] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_LF] = ACTIONS(212), + [anon_sym_AMP] = ACTIONS(212), }, [24] = { - [sym_file_redirect] = STATE(130), - [sym_heredoc_redirect] = STATE(130), - [sym_concatenation] = STATE(131), - [sym_string] = STATE(129), - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [sym_process_substitution] = STATE(129), - [aux_sym_for_statement_repeat1] = STATE(132), - [aux_sym_command_repeat2] = STATE(133), - [sym_file_descriptor] = ACTIONS(214), - [anon_sym_PIPE] = ACTIONS(216), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_SEMI_SEMI] = ACTIONS(216), - [anon_sym_PIPE_AMP] = ACTIONS(216), - [anon_sym_AMP_AMP] = ACTIONS(216), - [anon_sym_PIPE_PIPE] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_AMP_GT] = ACTIONS(218), - [anon_sym_AMP_GT_GT] = ACTIONS(218), - [anon_sym_LT_AMP] = ACTIONS(218), - [anon_sym_GT_AMP] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(220), - [anon_sym_LT_LT_DASH] = ACTIONS(220), - [anon_sym_DQUOTE] = ACTIONS(222), - [sym_raw_string] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(230), - [anon_sym_BQUOTE] = ACTIONS(232), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_word] = ACTIONS(224), + [sym_file_redirect] = STATE(132), + [sym_heredoc_redirect] = STATE(132), + [sym_concatenation] = STATE(133), + [sym_string] = STATE(131), + [sym_simple_expansion] = STATE(131), + [sym_expansion] = STATE(131), + [sym_command_substitution] = STATE(131), + [sym_process_substitution] = STATE(131), + [aux_sym_for_statement_repeat1] = STATE(134), + [aux_sym_command_repeat2] = STATE(135), + [sym_file_descriptor] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_SEMI_SEMI] = ACTIONS(218), + [anon_sym_PIPE_AMP] = ACTIONS(218), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_GT_GT] = ACTIONS(220), + [anon_sym_AMP_GT] = ACTIONS(220), + [anon_sym_AMP_GT_GT] = ACTIONS(220), + [anon_sym_LT_AMP] = ACTIONS(220), + [anon_sym_GT_AMP] = ACTIONS(220), + [anon_sym_LT_LT] = ACTIONS(222), + [anon_sym_LT_LT_DASH] = ACTIONS(222), + [anon_sym_DQUOTE] = ACTIONS(224), + [sym_raw_string] = ACTIONS(226), + [anon_sym_DOLLAR] = ACTIONS(228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(232), + [anon_sym_BQUOTE] = ACTIONS(234), + [anon_sym_LT_LPAREN] = ACTIONS(236), + [anon_sym_GT_LPAREN] = ACTIONS(236), + [sym_word] = ACTIONS(226), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(216), - [anon_sym_LF] = ACTIONS(216), - [anon_sym_AMP] = ACTIONS(216), + [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_LF] = ACTIONS(218), + [anon_sym_AMP] = ACTIONS(218), }, [25] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(210), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(212), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LF] = ACTIONS(210), - [anon_sym_AMP] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_LF] = ACTIONS(212), + [anon_sym_AMP] = ACTIONS(212), }, [26] = { [anon_sym_EQ] = ACTIONS(60), [sym_comment] = ACTIONS(52), }, [27] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(240), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(242), [sym_comment] = ACTIONS(52), }, [28] = { @@ -5630,7 +5863,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(148), }, [29] = { - [sym__terminated_statement] = STATE(134), + [sym__terminated_statement] = STATE(136), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), [sym_if_statement] = STATE(23), @@ -5654,7 +5887,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), - [ts_builtin_sym_end] = ACTIONS(242), + [ts_builtin_sym_end] = ACTIONS(244), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), @@ -5682,10 +5915,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [30] = { - [sym_command_name] = STATE(136), - [sym_environment_variable_assignment] = STATE(137), - [sym_subscript] = STATE(138), - [sym_file_redirect] = STATE(137), + [sym_command_name] = STATE(138), + [sym_environment_variable_assignment] = STATE(139), + [sym_subscript] = STATE(140), + [sym_file_redirect] = STATE(139), [sym_concatenation] = STATE(28), [sym_string] = STATE(14), [sym_simple_expansion] = STATE(14), @@ -5693,7 +5926,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(14), [sym_process_substitution] = STATE(14), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(244), + [sym_variable_name] = ACTIONS(246), [anon_sym_LT] = ACTIONS(32), [anon_sym_GT] = ACTIONS(32), [anon_sym_GT_GT] = ACTIONS(34), @@ -5709,125 +5942,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(46), [anon_sym_LT_LPAREN] = ACTIONS(48), [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(246), + [sym_word] = ACTIONS(248), [sym_comment] = ACTIONS(52), }, [31] = { - [sym_concatenation] = STATE(140), - [sym_string] = STATE(139), - [sym_simple_expansion] = STATE(139), - [sym_expansion] = STATE(139), - [sym_command_substitution] = STATE(139), - [sym_process_substitution] = STATE(139), + [sym_concatenation] = STATE(142), + [sym_string] = STATE(141), + [sym_simple_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(248), + [sym_raw_string] = ACTIONS(250), [anon_sym_DOLLAR] = ACTIONS(118), [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), [anon_sym_BQUOTE] = ACTIONS(124), [anon_sym_LT_LPAREN] = ACTIONS(126), [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(250), + [sym_word] = ACTIONS(252), [sym_comment] = ACTIONS(52), }, [32] = { - [sym_concatenation] = STATE(148), - [sym_string] = STATE(142), - [sym_simple_expansion] = STATE(142), - [sym_expansion] = STATE(142), - [sym_command_substitution] = STATE(142), - [sym_process_substitution] = STATE(142), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(266), + [sym_concatenation] = STATE(150), + [sym_string] = STATE(144), + [sym_simple_expansion] = STATE(144), + [sym_expansion] = STATE(144), + [sym_command_substitution] = STATE(144), + [sym_process_substitution] = STATE(144), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(256), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(268), [sym_comment] = ACTIONS(52), }, [33] = { - [sym_concatenation] = STATE(149), - [sym_string] = STATE(152), - [sym_array] = STATE(149), - [sym_simple_expansion] = STATE(152), - [sym_expansion] = STATE(152), - [sym_command_substitution] = STATE(152), - [sym_process_substitution] = STATE(152), - [sym__empty_value] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_DQUOTE] = ACTIONS(272), - [sym_raw_string] = ACTIONS(274), - [anon_sym_DOLLAR] = ACTIONS(276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(280), - [anon_sym_BQUOTE] = ACTIONS(282), - [anon_sym_LT_LPAREN] = ACTIONS(284), - [anon_sym_GT_LPAREN] = ACTIONS(284), - [sym_word] = ACTIONS(286), + [sym_concatenation] = STATE(151), + [sym_string] = STATE(154), + [sym_array] = STATE(151), + [sym_simple_expansion] = STATE(154), + [sym_expansion] = STATE(154), + [sym_command_substitution] = STATE(154), + [sym_process_substitution] = STATE(154), + [sym__empty_value] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(276), + [anon_sym_DOLLAR] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_word] = ACTIONS(288), [sym_comment] = ACTIONS(52), }, [34] = { - [anon_sym_in] = ACTIONS(288), + [anon_sym_in] = ACTIONS(290), [sym_comment] = ACTIONS(52), }, [35] = { - [sym_do_group] = STATE(160), - [anon_sym_do] = ACTIONS(290), + [sym_do_group] = STATE(162), + [anon_sym_do] = ACTIONS(292), [sym_comment] = ACTIONS(52), }, [36] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(292), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(294), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_LF] = ACTIONS(292), - [anon_sym_AMP] = ACTIONS(292), + [anon_sym_SEMI] = ACTIONS(294), + [anon_sym_LF] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(294), }, [37] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(292), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(294), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_LF] = ACTIONS(292), - [anon_sym_AMP] = ACTIONS(292), + [anon_sym_SEMI] = ACTIONS(294), + [anon_sym_LF] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(294), }, [38] = { - [anon_sym_then] = ACTIONS(294), + [anon_sym_then] = ACTIONS(296), [sym_comment] = ACTIONS(52), }, [39] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(296), + [aux_sym_string_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(298), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -5836,36 +6069,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [40] = { - [aux_sym_concatenation_repeat1] = STATE(168), - [sym__concat] = ACTIONS(298), - [anon_sym_in] = ACTIONS(300), - [anon_sym_SEMI_SEMI] = ACTIONS(302), + [aux_sym_concatenation_repeat1] = STATE(170), + [sym__concat] = ACTIONS(300), + [anon_sym_in] = ACTIONS(302), + [anon_sym_SEMI_SEMI] = ACTIONS(304), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(302), - [anon_sym_LF] = ACTIONS(302), - [anon_sym_AMP] = ACTIONS(302), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LF] = ACTIONS(304), + [anon_sym_AMP] = ACTIONS(304), }, [41] = { - [sym_special_variable_name] = STATE(171), - [anon_sym_DOLLAR] = ACTIONS(304), - [anon_sym_POUND] = ACTIONS(304), - [anon_sym_AT] = ACTIONS(304), + [sym_special_variable_name] = STATE(173), + [anon_sym_DOLLAR] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_AT] = ACTIONS(306), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(306), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_QMARK] = ACTIONS(304), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_BANG] = ACTIONS(304), - [anon_sym_0] = ACTIONS(308), - [anon_sym__] = ACTIONS(308), + [sym_simple_variable_name] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_QMARK] = ACTIONS(306), + [anon_sym_DASH] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(306), + [anon_sym_0] = ACTIONS(310), + [anon_sym__] = ACTIONS(310), }, [42] = { - [sym_special_variable_name] = STATE(174), + [sym_special_variable_name] = STATE(176), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(310), + [anon_sym_POUND] = ACTIONS(312), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(312), + [sym_simple_variable_name] = ACTIONS(314), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -5874,18 +6107,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [43] = { - [sym_for_statement] = STATE(175), - [sym_while_statement] = STATE(175), - [sym_if_statement] = STATE(175), - [sym_case_statement] = STATE(175), - [sym_function_definition] = STATE(175), - [sym_subshell] = STATE(175), - [sym_pipeline] = STATE(175), - [sym_list] = STATE(175), - [sym_bracket_command] = STATE(175), - [sym_command] = STATE(175), + [sym_for_statement] = STATE(177), + [sym_while_statement] = STATE(177), + [sym_if_statement] = STATE(177), + [sym_case_statement] = STATE(177), + [sym_function_definition] = STATE(177), + [sym_subshell] = STATE(177), + [sym_pipeline] = STATE(177), + [sym_list] = STATE(177), + [sym_bracket_command] = STATE(177), + [sym_command] = STATE(177), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(176), + [sym_environment_variable_assignment] = STATE(178), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -5924,18 +6157,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [44] = { - [sym_for_statement] = STATE(177), - [sym_while_statement] = STATE(177), - [sym_if_statement] = STATE(177), - [sym_case_statement] = STATE(177), - [sym_function_definition] = STATE(177), - [sym_subshell] = STATE(177), - [sym_pipeline] = STATE(177), - [sym_list] = STATE(177), - [sym_bracket_command] = STATE(177), - [sym_command] = STATE(177), + [sym_for_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_case_statement] = STATE(179), + [sym_function_definition] = STATE(179), + [sym_subshell] = STATE(179), + [sym_pipeline] = STATE(179), + [sym_list] = STATE(179), + [sym_bracket_command] = STATE(179), + [sym_command] = STATE(179), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(178), + [sym_environment_variable_assignment] = STATE(180), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -5974,18 +6207,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [45] = { - [sym_for_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_function_definition] = STATE(179), - [sym_subshell] = STATE(179), - [sym_pipeline] = STATE(179), - [sym_list] = STATE(179), - [sym_bracket_command] = STATE(179), - [sym_command] = STATE(179), + [sym_for_statement] = STATE(181), + [sym_while_statement] = STATE(181), + [sym_if_statement] = STATE(181), + [sym_case_statement] = STATE(181), + [sym_function_definition] = STATE(181), + [sym_subshell] = STATE(181), + [sym_pipeline] = STATE(181), + [sym_list] = STATE(181), + [sym_bracket_command] = STATE(181), + [sym_command] = STATE(181), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(180), + [sym_environment_variable_assignment] = STATE(182), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6024,73 +6257,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [46] = { - [anon_sym_in] = ACTIONS(300), - [anon_sym_SEMI_SEMI] = ACTIONS(302), + [anon_sym_in] = ACTIONS(302), + [anon_sym_SEMI_SEMI] = ACTIONS(304), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(302), - [anon_sym_LF] = ACTIONS(302), - [anon_sym_AMP] = ACTIONS(302), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LF] = ACTIONS(304), + [anon_sym_AMP] = ACTIONS(304), }, [47] = { - [anon_sym_LPAREN] = ACTIONS(314), + [sym_compound_statement] = STATE(184), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(318), [sym_comment] = ACTIONS(52), }, [48] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(316), - [anon_sym_SEMI_SEMI] = ACTIONS(318), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_SEMI_SEMI] = ACTIONS(322), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LF] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_LF] = ACTIONS(322), + [anon_sym_AMP] = ACTIONS(322), }, [49] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(316), - [anon_sym_SEMI_SEMI] = ACTIONS(318), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_SEMI_SEMI] = ACTIONS(322), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LF] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_LF] = ACTIONS(322), + [anon_sym_AMP] = ACTIONS(322), }, [50] = { - [sym__terminated_statement] = STATE(134), - [sym_for_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_if_statement] = STATE(184), - [sym_case_statement] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_subshell] = STATE(184), - [sym_pipeline] = STATE(184), - [sym_list] = STATE(184), - [sym_bracket_command] = STATE(184), - [sym_command] = STATE(184), + [sym__terminated_statement] = STATE(136), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_function_definition] = STATE(187), + [sym_subshell] = STATE(187), + [sym_pipeline] = STATE(187), + [sym_list] = STATE(187), + [sym_bracket_command] = STATE(187), + [sym_command] = STATE(187), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(185), + [sym_environment_variable_assignment] = STATE(188), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -6132,8 +6367,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(187), - [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_repeat1] = STATE(190), + [anon_sym_DQUOTE] = ACTIONS(324), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -6142,41 +6377,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [52] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACK] = ACTIONS(324), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_raw_string] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(326), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_word] = ACTIONS(328), + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACK] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_word] = ACTIONS(332), [sym_comment] = ACTIONS(52), }, [53] = { - [sym_special_variable_name] = STATE(192), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_POUND] = ACTIONS(330), - [anon_sym_AT] = ACTIONS(330), + [sym_special_variable_name] = STATE(195), + [anon_sym_DOLLAR] = ACTIONS(334), + [anon_sym_POUND] = ACTIONS(334), + [anon_sym_AT] = ACTIONS(334), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(330), - [anon_sym_0] = ACTIONS(334), - [anon_sym__] = ACTIONS(334), + [sym_simple_variable_name] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_BANG] = ACTIONS(334), + [anon_sym_0] = ACTIONS(338), + [anon_sym__] = ACTIONS(338), }, [54] = { - [sym_special_variable_name] = STATE(195), + [sym_special_variable_name] = STATE(198), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(336), + [anon_sym_POUND] = ACTIONS(340), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(338), + [sym_simple_variable_name] = ACTIONS(342), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -6185,18 +6420,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [55] = { - [sym_for_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_function_definition] = STATE(196), - [sym_subshell] = STATE(196), - [sym_pipeline] = STATE(196), - [sym_list] = STATE(196), - [sym_bracket_command] = STATE(196), - [sym_command] = STATE(196), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_if_statement] = STATE(199), + [sym_case_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_subshell] = STATE(199), + [sym_pipeline] = STATE(199), + [sym_list] = STATE(199), + [sym_bracket_command] = STATE(199), + [sym_command] = STATE(199), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(197), + [sym_environment_variable_assignment] = STATE(200), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6235,18 +6470,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [56] = { - [sym_for_statement] = STATE(198), - [sym_while_statement] = STATE(198), - [sym_if_statement] = STATE(198), - [sym_case_statement] = STATE(198), - [sym_function_definition] = STATE(198), - [sym_subshell] = STATE(198), - [sym_pipeline] = STATE(198), - [sym_list] = STATE(198), - [sym_bracket_command] = STATE(198), - [sym_command] = STATE(198), + [sym_for_statement] = STATE(201), + [sym_while_statement] = STATE(201), + [sym_if_statement] = STATE(201), + [sym_case_statement] = STATE(201), + [sym_function_definition] = STATE(201), + [sym_subshell] = STATE(201), + [sym_pipeline] = STATE(201), + [sym_list] = STATE(201), + [sym_bracket_command] = STATE(201), + [sym_command] = STATE(201), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(199), + [sym_environment_variable_assignment] = STATE(202), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6285,18 +6520,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [57] = { - [sym_for_statement] = STATE(200), - [sym_while_statement] = STATE(200), - [sym_if_statement] = STATE(200), - [sym_case_statement] = STATE(200), - [sym_function_definition] = STATE(200), - [sym_subshell] = STATE(200), - [sym_pipeline] = STATE(200), - [sym_list] = STATE(200), - [sym_bracket_command] = STATE(200), - [sym_command] = STATE(200), + [sym_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_subshell] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_bracket_command] = STATE(203), + [sym_command] = STATE(203), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(201), + [sym_environment_variable_assignment] = STATE(204), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6335,43 +6570,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [58] = { - [anon_sym_RBRACK] = ACTIONS(324), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_raw_string] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(326), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_word] = ACTIONS(328), + [anon_sym_RBRACK] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_word] = ACTIONS(332), [sym_comment] = ACTIONS(52), }, [59] = { - [sym_concatenation] = STATE(204), - [sym_string] = STATE(203), - [sym_simple_expansion] = STATE(203), - [sym_expansion] = STATE(203), - [sym_command_substitution] = STATE(203), - [sym_process_substitution] = STATE(203), - [anon_sym_RBRACK] = ACTIONS(340), + [sym_concatenation] = STATE(207), + [sym_string] = STATE(206), + [sym_simple_expansion] = STATE(206), + [sym_expansion] = STATE(206), + [sym_command_substitution] = STATE(206), + [sym_process_substitution] = STATE(206), + [anon_sym_RBRACK] = ACTIONS(344), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(342), + [sym_raw_string] = ACTIONS(346), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(344), + [sym_word] = ACTIONS(348), [sym_comment] = ACTIONS(52), }, [60] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(206), - [anon_sym_DQUOTE] = ACTIONS(346), + [aux_sym_string_repeat1] = STATE(209), + [anon_sym_DQUOTE] = ACTIONS(350), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -6380,41 +6615,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [61] = { - [aux_sym_concatenation_repeat1] = STATE(208), - [sym__concat] = ACTIONS(348), - [anon_sym_RBRACK_RBRACK] = ACTIONS(324), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_raw_string] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(326), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_word] = ACTIONS(328), + [aux_sym_concatenation_repeat1] = STATE(211), + [sym__concat] = ACTIONS(352), + [anon_sym_RBRACK_RBRACK] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_word] = ACTIONS(332), [sym_comment] = ACTIONS(52), }, [62] = { - [sym_special_variable_name] = STATE(211), - [anon_sym_DOLLAR] = ACTIONS(350), - [anon_sym_POUND] = ACTIONS(350), - [anon_sym_AT] = ACTIONS(350), + [sym_special_variable_name] = STATE(214), + [anon_sym_DOLLAR] = ACTIONS(354), + [anon_sym_POUND] = ACTIONS(354), + [anon_sym_AT] = ACTIONS(354), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(350), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_0] = ACTIONS(354), - [anon_sym__] = ACTIONS(354), + [sym_simple_variable_name] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_QMARK] = ACTIONS(354), + [anon_sym_DASH] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_0] = ACTIONS(358), + [anon_sym__] = ACTIONS(358), }, [63] = { - [sym_special_variable_name] = STATE(214), + [sym_special_variable_name] = STATE(217), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(356), + [anon_sym_POUND] = ACTIONS(360), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(358), + [sym_simple_variable_name] = ACTIONS(362), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -6423,18 +6658,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [64] = { - [sym_for_statement] = STATE(215), - [sym_while_statement] = STATE(215), - [sym_if_statement] = STATE(215), - [sym_case_statement] = STATE(215), - [sym_function_definition] = STATE(215), - [sym_subshell] = STATE(215), - [sym_pipeline] = STATE(215), - [sym_list] = STATE(215), - [sym_bracket_command] = STATE(215), - [sym_command] = STATE(215), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_subshell] = STATE(218), + [sym_pipeline] = STATE(218), + [sym_list] = STATE(218), + [sym_bracket_command] = STATE(218), + [sym_command] = STATE(218), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(216), + [sym_environment_variable_assignment] = STATE(219), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6473,18 +6708,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [65] = { - [sym_for_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_if_statement] = STATE(217), - [sym_case_statement] = STATE(217), - [sym_function_definition] = STATE(217), - [sym_subshell] = STATE(217), - [sym_pipeline] = STATE(217), - [sym_list] = STATE(217), - [sym_bracket_command] = STATE(217), - [sym_command] = STATE(217), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_if_statement] = STATE(220), + [sym_case_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_subshell] = STATE(220), + [sym_pipeline] = STATE(220), + [sym_list] = STATE(220), + [sym_bracket_command] = STATE(220), + [sym_command] = STATE(220), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(218), + [sym_environment_variable_assignment] = STATE(221), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6523,18 +6758,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [66] = { - [sym_for_statement] = STATE(219), - [sym_while_statement] = STATE(219), - [sym_if_statement] = STATE(219), - [sym_case_statement] = STATE(219), - [sym_function_definition] = STATE(219), - [sym_subshell] = STATE(219), - [sym_pipeline] = STATE(219), - [sym_list] = STATE(219), - [sym_bracket_command] = STATE(219), - [sym_command] = STATE(219), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_case_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_subshell] = STATE(222), + [sym_pipeline] = STATE(222), + [sym_list] = STATE(222), + [sym_bracket_command] = STATE(222), + [sym_command] = STATE(222), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(220), + [sym_environment_variable_assignment] = STATE(223), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6573,43 +6808,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [67] = { - [anon_sym_RBRACK_RBRACK] = ACTIONS(324), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_raw_string] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(326), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_word] = ACTIONS(328), + [anon_sym_RBRACK_RBRACK] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_word] = ACTIONS(332), [sym_comment] = ACTIONS(52), }, [68] = { - [sym_concatenation] = STATE(222), - [sym_string] = STATE(221), - [sym_simple_expansion] = STATE(221), - [sym_expansion] = STATE(221), - [sym_command_substitution] = STATE(221), - [sym_process_substitution] = STATE(221), - [anon_sym_RBRACK_RBRACK] = ACTIONS(340), + [sym_concatenation] = STATE(225), + [sym_string] = STATE(224), + [sym_simple_expansion] = STATE(224), + [sym_expansion] = STATE(224), + [sym_command_substitution] = STATE(224), + [sym_process_substitution] = STATE(224), + [anon_sym_RBRACK_RBRACK] = ACTIONS(344), [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(360), + [sym_raw_string] = ACTIONS(364), [anon_sym_DOLLAR] = ACTIONS(102), [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), [anon_sym_BQUOTE] = ACTIONS(108), [anon_sym_LT_LPAREN] = ACTIONS(110), [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(362), + [sym_word] = ACTIONS(366), [sym_comment] = ACTIONS(52), }, [69] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(224), - [anon_sym_DQUOTE] = ACTIONS(364), + [aux_sym_string_repeat1] = STATE(227), + [anon_sym_DQUOTE] = ACTIONS(368), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -6618,49 +6853,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [70] = { - [aux_sym_concatenation_repeat1] = STATE(226), - [sym_file_descriptor] = ACTIONS(366), - [sym__concat] = ACTIONS(368), - [sym_variable_name] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(366), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(366), - [anon_sym_LT_AMP] = ACTIONS(366), - [anon_sym_GT_AMP] = ACTIONS(366), - [anon_sym_DQUOTE] = ACTIONS(366), - [sym_raw_string] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(366), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(366), - [anon_sym_LT_LPAREN] = ACTIONS(366), - [anon_sym_GT_LPAREN] = ACTIONS(366), - [sym_word] = ACTIONS(370), + [aux_sym_concatenation_repeat1] = STATE(229), + [sym_file_descriptor] = ACTIONS(370), + [sym__concat] = ACTIONS(372), + [sym_variable_name] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_AMP_GT] = ACTIONS(374), + [anon_sym_AMP_GT_GT] = ACTIONS(370), + [anon_sym_LT_AMP] = ACTIONS(370), + [anon_sym_GT_AMP] = ACTIONS(370), + [anon_sym_DQUOTE] = ACTIONS(370), + [sym_raw_string] = ACTIONS(370), + [anon_sym_DOLLAR] = ACTIONS(374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), + [anon_sym_BQUOTE] = ACTIONS(370), + [anon_sym_LT_LPAREN] = ACTIONS(370), + [anon_sym_GT_LPAREN] = ACTIONS(370), + [sym_word] = ACTIONS(374), [sym_comment] = ACTIONS(52), }, [71] = { - [sym_special_variable_name] = STATE(229), - [anon_sym_DOLLAR] = ACTIONS(372), - [anon_sym_POUND] = ACTIONS(372), - [anon_sym_AT] = ACTIONS(372), + [sym_special_variable_name] = STATE(232), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_POUND] = ACTIONS(376), + [anon_sym_AT] = ACTIONS(376), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(372), - [anon_sym_0] = ACTIONS(376), - [anon_sym__] = ACTIONS(376), + [sym_simple_variable_name] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(376), + [anon_sym_QMARK] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(376), + [anon_sym_0] = ACTIONS(380), + [anon_sym__] = ACTIONS(380), }, [72] = { - [sym_special_variable_name] = STATE(232), + [sym_special_variable_name] = STATE(235), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(378), + [anon_sym_POUND] = ACTIONS(382), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(380), + [sym_simple_variable_name] = ACTIONS(384), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -6669,18 +6904,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [73] = { - [sym_for_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_function_definition] = STATE(233), - [sym_subshell] = STATE(233), - [sym_pipeline] = STATE(233), - [sym_list] = STATE(233), - [sym_bracket_command] = STATE(233), - [sym_command] = STATE(233), + [sym_for_statement] = STATE(236), + [sym_while_statement] = STATE(236), + [sym_if_statement] = STATE(236), + [sym_case_statement] = STATE(236), + [sym_function_definition] = STATE(236), + [sym_subshell] = STATE(236), + [sym_pipeline] = STATE(236), + [sym_list] = STATE(236), + [sym_bracket_command] = STATE(236), + [sym_command] = STATE(236), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(234), + [sym_environment_variable_assignment] = STATE(237), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6719,18 +6954,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [74] = { - [sym_for_statement] = STATE(235), - [sym_while_statement] = STATE(235), - [sym_if_statement] = STATE(235), - [sym_case_statement] = STATE(235), - [sym_function_definition] = STATE(235), - [sym_subshell] = STATE(235), - [sym_pipeline] = STATE(235), - [sym_list] = STATE(235), - [sym_bracket_command] = STATE(235), - [sym_command] = STATE(235), + [sym_for_statement] = STATE(238), + [sym_while_statement] = STATE(238), + [sym_if_statement] = STATE(238), + [sym_case_statement] = STATE(238), + [sym_function_definition] = STATE(238), + [sym_subshell] = STATE(238), + [sym_pipeline] = STATE(238), + [sym_list] = STATE(238), + [sym_bracket_command] = STATE(238), + [sym_command] = STATE(238), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(236), + [sym_environment_variable_assignment] = STATE(239), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6769,18 +7004,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [75] = { - [sym_for_statement] = STATE(237), - [sym_while_statement] = STATE(237), - [sym_if_statement] = STATE(237), - [sym_case_statement] = STATE(237), - [sym_function_definition] = STATE(237), - [sym_subshell] = STATE(237), - [sym_pipeline] = STATE(237), - [sym_list] = STATE(237), - [sym_bracket_command] = STATE(237), - [sym_command] = STATE(237), + [sym_for_statement] = STATE(240), + [sym_while_statement] = STATE(240), + [sym_if_statement] = STATE(240), + [sym_case_statement] = STATE(240), + [sym_function_definition] = STATE(240), + [sym_subshell] = STATE(240), + [sym_pipeline] = STATE(240), + [sym_list] = STATE(240), + [sym_bracket_command] = STATE(240), + [sym_command] = STATE(240), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(238), + [sym_environment_variable_assignment] = STATE(241), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6819,88 +7054,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [76] = { - [sym_file_descriptor] = ACTIONS(366), - [sym_variable_name] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(366), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(366), - [anon_sym_LT_AMP] = ACTIONS(366), - [anon_sym_GT_AMP] = ACTIONS(366), - [anon_sym_DQUOTE] = ACTIONS(366), - [sym_raw_string] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(366), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(366), - [anon_sym_LT_LPAREN] = ACTIONS(366), - [anon_sym_GT_LPAREN] = ACTIONS(366), - [sym_word] = ACTIONS(370), + [sym_file_descriptor] = ACTIONS(370), + [sym_variable_name] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_AMP_GT] = ACTIONS(374), + [anon_sym_AMP_GT_GT] = ACTIONS(370), + [anon_sym_LT_AMP] = ACTIONS(370), + [anon_sym_GT_AMP] = ACTIONS(370), + [anon_sym_DQUOTE] = ACTIONS(370), + [sym_raw_string] = ACTIONS(370), + [anon_sym_DOLLAR] = ACTIONS(374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), + [anon_sym_BQUOTE] = ACTIONS(370), + [anon_sym_LT_LPAREN] = ACTIONS(370), + [anon_sym_GT_LPAREN] = ACTIONS(370), + [sym_word] = ACTIONS(374), [sym_comment] = ACTIONS(52), }, [77] = { - [sym_file_descriptor] = ACTIONS(382), - [sym__concat] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_SEMI_SEMI] = ACTIONS(384), - [anon_sym_PIPE_AMP] = ACTIONS(384), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(384), - [anon_sym_LT_AMP] = ACTIONS(384), - [anon_sym_GT_AMP] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_LT_LT_DASH] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [sym_raw_string] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(384), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(384), - [anon_sym_BQUOTE] = ACTIONS(384), - [anon_sym_LT_LPAREN] = ACTIONS(384), - [anon_sym_GT_LPAREN] = ACTIONS(384), - [sym_word] = ACTIONS(384), + [sym_file_descriptor] = ACTIONS(386), + [sym__concat] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_SEMI_SEMI] = ACTIONS(388), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_AMP_GT] = ACTIONS(388), + [anon_sym_AMP_GT_GT] = ACTIONS(388), + [anon_sym_LT_AMP] = ACTIONS(388), + [anon_sym_GT_AMP] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_LT_LT_DASH] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_word] = ACTIONS(388), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LF] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(388), }, [78] = { - [anon_sym_DQUOTE] = ACTIONS(386), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), - [anon_sym_BQUOTE] = ACTIONS(386), + [anon_sym_DQUOTE] = ACTIONS(390), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(392), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_BQUOTE] = ACTIONS(390), [sym_comment] = ACTIONS(142), }, [79] = { - [sym_special_variable_name] = STATE(241), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_POUND] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(390), + [sym_special_variable_name] = STATE(244), + [anon_sym_DOLLAR] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(394), + [anon_sym_AT] = ACTIONS(394), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_0] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), + [sym_simple_variable_name] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_0] = ACTIONS(398), + [anon_sym__] = ACTIONS(398), }, [80] = { - [sym_special_variable_name] = STATE(244), + [sym_special_variable_name] = STATE(247), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(400), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(398), + [sym_simple_variable_name] = ACTIONS(402), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -6909,18 +7144,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [81] = { - [sym_for_statement] = STATE(245), - [sym_while_statement] = STATE(245), - [sym_if_statement] = STATE(245), - [sym_case_statement] = STATE(245), - [sym_function_definition] = STATE(245), - [sym_subshell] = STATE(245), - [sym_pipeline] = STATE(245), - [sym_list] = STATE(245), - [sym_bracket_command] = STATE(245), - [sym_command] = STATE(245), + [sym_for_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_if_statement] = STATE(248), + [sym_case_statement] = STATE(248), + [sym_function_definition] = STATE(248), + [sym_subshell] = STATE(248), + [sym_pipeline] = STATE(248), + [sym_list] = STATE(248), + [sym_bracket_command] = STATE(248), + [sym_command] = STATE(248), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(246), + [sym_environment_variable_assignment] = STATE(249), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -6959,18 +7194,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [82] = { - [sym_for_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_function_definition] = STATE(247), - [sym_subshell] = STATE(247), - [sym_pipeline] = STATE(247), - [sym_list] = STATE(247), - [sym_bracket_command] = STATE(247), - [sym_command] = STATE(247), + [sym_for_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_function_definition] = STATE(250), + [sym_subshell] = STATE(250), + [sym_pipeline] = STATE(250), + [sym_list] = STATE(250), + [sym_bracket_command] = STATE(250), + [sym_command] = STATE(250), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(248), + [sym_environment_variable_assignment] = STATE(251), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -7009,11 +7244,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [83] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(400), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(404), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), @@ -7021,56 +7256,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [84] = { - [sym_string] = STATE(251), - [sym_simple_expansion] = STATE(251), - [sym_expansion] = STATE(251), - [sym_command_substitution] = STATE(251), - [sym_process_substitution] = STATE(251), + [sym_string] = STATE(254), + [sym_simple_expansion] = STATE(254), + [sym_expansion] = STATE(254), + [sym_command_substitution] = STATE(254), + [sym_process_substitution] = STATE(254), [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(404), + [sym_raw_string] = ACTIONS(408), [anon_sym_DOLLAR] = ACTIONS(40), [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), [anon_sym_BQUOTE] = ACTIONS(46), [anon_sym_LT_LPAREN] = ACTIONS(48), [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(406), + [sym_word] = ACTIONS(410), [sym_comment] = ACTIONS(52), }, [85] = { - [sym_file_descriptor] = ACTIONS(408), - [sym__concat] = ACTIONS(410), - [anon_sym_PIPE] = ACTIONS(412), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_SEMI_SEMI] = ACTIONS(412), - [anon_sym_PIPE_AMP] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(412), - [anon_sym_GT] = ACTIONS(412), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(412), - [anon_sym_AMP_GT_GT] = ACTIONS(412), - [anon_sym_LT_AMP] = ACTIONS(412), - [anon_sym_GT_AMP] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_LT_LT_DASH] = ACTIONS(412), - [anon_sym_DQUOTE] = ACTIONS(412), - [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(412), - [anon_sym_GT_LPAREN] = ACTIONS(412), - [sym_word] = ACTIONS(412), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(412), - [anon_sym_LF] = ACTIONS(412), - [anon_sym_AMP] = ACTIONS(412), - }, - [86] = { - [sym_file_descriptor] = ACTIONS(414), + [sym_file_descriptor] = ACTIONS(412), [sym__concat] = ACTIONS(414), [anon_sym_PIPE] = ACTIONS(416), [anon_sym_RPAREN] = ACTIONS(416), @@ -7101,7 +7304,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(416), [anon_sym_AMP] = ACTIONS(416), }, - [87] = { + [86] = { [sym_file_descriptor] = ACTIONS(418), [sym__concat] = ACTIONS(418), [anon_sym_PIPE] = ACTIONS(420), @@ -7133,7 +7336,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(420), [anon_sym_AMP] = ACTIONS(420), }, - [88] = { + [87] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), [anon_sym_PIPE] = ACTIONS(424), @@ -7165,32 +7368,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(424), [anon_sym_AMP] = ACTIONS(424), }, + [88] = { + [sym_file_descriptor] = ACTIONS(426), + [sym__concat] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_SEMI_SEMI] = ACTIONS(428), + [anon_sym_PIPE_AMP] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_AMP_GT] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(428), + [anon_sym_LT_AMP] = ACTIONS(428), + [anon_sym_GT_AMP] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_LT_LT_DASH] = ACTIONS(428), + [anon_sym_DQUOTE] = ACTIONS(428), + [sym_raw_string] = ACTIONS(428), + [anon_sym_DOLLAR] = ACTIONS(428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), + [anon_sym_BQUOTE] = ACTIONS(428), + [anon_sym_LT_LPAREN] = ACTIONS(428), + [anon_sym_GT_LPAREN] = ACTIONS(428), + [sym_word] = ACTIONS(428), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_LF] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + }, [89] = { - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(52), }, [90] = { - [sym_special_variable_name] = STATE(254), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [sym_special_variable_name] = STATE(257), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(428), + [sym_simple_variable_name] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -7199,38 +7434,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [91] = { - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(434), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_COLON_QMARK] = ACTIONS(434), - [anon_sym_COLON_DASH] = ACTIONS(434), - [anon_sym_PERCENT] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_EQ] = ACTIONS(438), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_COLON_QMARK] = ACTIONS(438), + [anon_sym_COLON_DASH] = ACTIONS(438), + [anon_sym_PERCENT] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(438), [sym_comment] = ACTIONS(52), }, [92] = { - [anon_sym_RBRACE] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_COLON_QMARK] = ACTIONS(442), - [anon_sym_COLON_DASH] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(446), + [anon_sym_COLON] = ACTIONS(448), + [anon_sym_COLON_QMARK] = ACTIONS(446), + [anon_sym_COLON_DASH] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(446), [sym_comment] = ACTIONS(52), }, [93] = { [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(450), [sym_comment] = ACTIONS(52), }, [94] = { - [sym_word] = ACTIONS(448), + [sym_word] = ACTIONS(452), [sym_comment] = ACTIONS(52), }, [95] = { - [sym__terminated_statement] = STATE(263), + [sym__terminated_statement] = STATE(266), [sym_for_statement] = STATE(36), [sym_while_statement] = STATE(36), [sym_if_statement] = STATE(36), @@ -7281,7 +7516,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [96] = { - [sym__terminated_statement] = STATE(264), + [sym__terminated_statement] = STATE(267), [sym_for_statement] = STATE(36), [sym_while_statement] = STATE(36), [sym_if_statement] = STATE(36), @@ -7332,41 +7567,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [97] = { - [sym_concatenation] = STATE(266), - [sym_string] = STATE(265), - [sym_simple_expansion] = STATE(265), - [sym_expansion] = STATE(265), - [sym_command_substitution] = STATE(265), - [sym_process_substitution] = STATE(265), + [sym_concatenation] = STATE(269), + [sym_string] = STATE(268), + [sym_simple_expansion] = STATE(268), + [sym_expansion] = STATE(268), + [sym_command_substitution] = STATE(268), + [sym_process_substitution] = STATE(268), [anon_sym_DQUOTE] = ACTIONS(64), - [sym_raw_string] = ACTIONS(450), + [sym_raw_string] = ACTIONS(454), [anon_sym_DOLLAR] = ACTIONS(68), [anon_sym_DOLLAR_LBRACE] = ACTIONS(70), [anon_sym_DOLLAR_LPAREN] = ACTIONS(72), [anon_sym_BQUOTE] = ACTIONS(74), [anon_sym_LT_LPAREN] = ACTIONS(76), [anon_sym_GT_LPAREN] = ACTIONS(76), - [sym_word] = ACTIONS(452), + [sym_word] = ACTIONS(456), [sym_comment] = ACTIONS(52), }, [98] = { - [sym_word] = ACTIONS(454), + [sym_word] = ACTIONS(458), [sym_comment] = ACTIONS(52), }, [99] = { [sym__terminated_statement] = STATE(22), - [sym_for_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_function_definition] = STATE(268), - [sym_subshell] = STATE(268), - [sym_pipeline] = STATE(268), - [sym_list] = STATE(268), - [sym_bracket_command] = STATE(268), - [sym_command] = STATE(268), + [sym_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_if_statement] = STATE(271), + [sym_case_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_subshell] = STATE(271), + [sym_pipeline] = STATE(271), + [sym_list] = STATE(271), + [sym_bracket_command] = STATE(271), + [sym_command] = STATE(271), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(269), + [sym_environment_variable_assignment] = STATE(272), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -7375,7 +7610,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(270), + [aux_sym_program_repeat1] = STATE(273), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -7412,7 +7647,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(52), [sym_command_substitution] = STATE(52), [sym_process_substitution] = STATE(52), - [aux_sym_for_statement_repeat1] = STATE(271), + [aux_sym_for_statement_repeat1] = STATE(274), [anon_sym_DQUOTE] = ACTIONS(82), [sym_raw_string] = ACTIONS(84), [anon_sym_DOLLAR] = ACTIONS(86), @@ -7431,7 +7666,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(61), [sym_command_substitution] = STATE(61), [sym_process_substitution] = STATE(61), - [aux_sym_for_statement_repeat1] = STATE(272), + [aux_sym_for_statement_repeat1] = STATE(275), [anon_sym_DQUOTE] = ACTIONS(98), [sym_raw_string] = ACTIONS(100), [anon_sym_DOLLAR] = ACTIONS(102), @@ -7447,8 +7682,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(274), - [anon_sym_DQUOTE] = ACTIONS(456), + [aux_sym_string_repeat1] = STATE(277), + [anon_sym_DQUOTE] = ACTIONS(460), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -7457,26 +7692,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(142), }, [103] = { - [aux_sym_concatenation_repeat1] = STATE(276), + [aux_sym_concatenation_repeat1] = STATE(279), [sym_file_descriptor] = ACTIONS(144), - [sym__concat] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), + [sym__concat] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), [anon_sym_RPAREN] = ACTIONS(144), [anon_sym_PIPE_AMP] = ACTIONS(144), [anon_sym_AMP_AMP] = ACTIONS(144), - [anon_sym_PIPE_PIPE] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), + [anon_sym_PIPE_PIPE] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), [anon_sym_GT_GT] = ACTIONS(144), - [anon_sym_AMP_GT] = ACTIONS(460), + [anon_sym_AMP_GT] = ACTIONS(464), [anon_sym_AMP_GT_GT] = ACTIONS(144), [anon_sym_LT_AMP] = ACTIONS(144), [anon_sym_GT_AMP] = ACTIONS(144), - [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_LT_LT] = ACTIONS(464), [anon_sym_LT_LT_DASH] = ACTIONS(144), [anon_sym_DQUOTE] = ACTIONS(144), [sym_raw_string] = ACTIONS(144), - [anon_sym_DOLLAR] = ACTIONS(460), + [anon_sym_DOLLAR] = ACTIONS(464), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), [anon_sym_DOLLAR_LPAREN] = ACTIONS(144), [anon_sym_BQUOTE] = ACTIONS(144), @@ -7486,26 +7721,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [104] = { - [sym_special_variable_name] = STATE(279), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_POUND] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(462), + [sym_special_variable_name] = STATE(282), + [anon_sym_DOLLAR] = ACTIONS(466), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_AT] = ACTIONS(466), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(462), - [anon_sym_BANG] = ACTIONS(462), - [anon_sym_0] = ACTIONS(466), - [anon_sym__] = ACTIONS(466), + [sym_simple_variable_name] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(466), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_BANG] = ACTIONS(466), + [anon_sym_0] = ACTIONS(470), + [anon_sym__] = ACTIONS(470), }, [105] = { - [sym_special_variable_name] = STATE(282), + [sym_special_variable_name] = STATE(285), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(472), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(470), + [sym_simple_variable_name] = ACTIONS(474), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -7514,18 +7749,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(162), }, [106] = { - [sym_for_statement] = STATE(283), - [sym_while_statement] = STATE(283), - [sym_if_statement] = STATE(283), - [sym_case_statement] = STATE(283), - [sym_function_definition] = STATE(283), - [sym_subshell] = STATE(283), - [sym_pipeline] = STATE(283), - [sym_list] = STATE(283), - [sym_bracket_command] = STATE(283), - [sym_command] = STATE(283), + [sym_for_statement] = STATE(286), + [sym_while_statement] = STATE(286), + [sym_if_statement] = STATE(286), + [sym_case_statement] = STATE(286), + [sym_function_definition] = STATE(286), + [sym_subshell] = STATE(286), + [sym_pipeline] = STATE(286), + [sym_list] = STATE(286), + [sym_bracket_command] = STATE(286), + [sym_command] = STATE(286), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(284), + [sym_environment_variable_assignment] = STATE(287), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -7564,18 +7799,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [107] = { - [sym_for_statement] = STATE(285), - [sym_while_statement] = STATE(285), - [sym_if_statement] = STATE(285), - [sym_case_statement] = STATE(285), - [sym_function_definition] = STATE(285), - [sym_subshell] = STATE(285), - [sym_pipeline] = STATE(285), - [sym_list] = STATE(285), - [sym_bracket_command] = STATE(285), - [sym_command] = STATE(285), + [sym_for_statement] = STATE(288), + [sym_while_statement] = STATE(288), + [sym_if_statement] = STATE(288), + [sym_case_statement] = STATE(288), + [sym_function_definition] = STATE(288), + [sym_subshell] = STATE(288), + [sym_pipeline] = STATE(288), + [sym_list] = STATE(288), + [sym_bracket_command] = STATE(288), + [sym_command] = STATE(288), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(286), + [sym_environment_variable_assignment] = STATE(289), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -7614,18 +7849,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [108] = { - [sym_for_statement] = STATE(287), - [sym_while_statement] = STATE(287), - [sym_if_statement] = STATE(287), - [sym_case_statement] = STATE(287), - [sym_function_definition] = STATE(287), - [sym_subshell] = STATE(287), - [sym_pipeline] = STATE(287), - [sym_list] = STATE(287), - [sym_bracket_command] = STATE(287), - [sym_command] = STATE(287), + [sym_for_statement] = STATE(290), + [sym_while_statement] = STATE(290), + [sym_if_statement] = STATE(290), + [sym_case_statement] = STATE(290), + [sym_function_definition] = STATE(290), + [sym_subshell] = STATE(290), + [sym_pipeline] = STATE(290), + [sym_list] = STATE(290), + [sym_bracket_command] = STATE(290), + [sym_command] = STATE(290), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(288), + [sym_environment_variable_assignment] = STATE(291), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -7664,27 +7899,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [109] = { - [aux_sym_concatenation_repeat1] = STATE(276), + [sym_compound_statement] = STATE(294), + [aux_sym_concatenation_repeat1] = STATE(279), [sym_file_descriptor] = ACTIONS(144), - [sym__concat] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), + [sym__concat] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), [anon_sym_RPAREN] = ACTIONS(144), - [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(478), [anon_sym_PIPE_AMP] = ACTIONS(144), [anon_sym_AMP_AMP] = ACTIONS(144), - [anon_sym_PIPE_PIPE] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), + [anon_sym_PIPE_PIPE] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), [anon_sym_GT_GT] = ACTIONS(144), - [anon_sym_AMP_GT] = ACTIONS(460), + [anon_sym_AMP_GT] = ACTIONS(464), [anon_sym_AMP_GT_GT] = ACTIONS(144), [anon_sym_LT_AMP] = ACTIONS(144), [anon_sym_GT_AMP] = ACTIONS(144), - [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_LT_LT] = ACTIONS(464), [anon_sym_LT_LT_DASH] = ACTIONS(144), [anon_sym_DQUOTE] = ACTIONS(144), [sym_raw_string] = ACTIONS(144), - [anon_sym_DOLLAR] = ACTIONS(460), + [anon_sym_DOLLAR] = ACTIONS(464), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), [anon_sym_DOLLAR_LPAREN] = ACTIONS(144), [anon_sym_BQUOTE] = ACTIONS(144), @@ -7694,99 +7931,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [110] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [111] = { - [sym_file_redirect] = STATE(297), - [sym_heredoc_redirect] = STATE(297), - [sym_concatenation] = STATE(298), - [sym_string] = STATE(296), - [sym_simple_expansion] = STATE(296), - [sym_expansion] = STATE(296), - [sym_command_substitution] = STATE(296), - [sym_process_substitution] = STATE(296), - [aux_sym_for_statement_repeat1] = STATE(299), - [aux_sym_command_repeat2] = STATE(300), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_PIPE_AMP] = ACTIONS(486), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(303), + [sym_string] = STATE(301), + [sym_simple_expansion] = STATE(301), + [sym_expansion] = STATE(301), + [sym_command_substitution] = STATE(301), + [sym_process_substitution] = STATE(301), + [aux_sym_for_statement_repeat1] = STATE(304), + [aux_sym_command_repeat2] = STATE(305), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_RPAREN] = ACTIONS(492), + [anon_sym_PIPE_AMP] = ACTIONS(492), + [anon_sym_AMP_AMP] = ACTIONS(492), + [anon_sym_PIPE_PIPE] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(496), + [sym_raw_string] = ACTIONS(502), [anon_sym_DOLLAR] = ACTIONS(186), [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), [anon_sym_BQUOTE] = ACTIONS(192), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(498), + [sym_word] = ACTIONS(504), [sym_comment] = ACTIONS(52), }, [112] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [113] = { - [anon_sym_EQ] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(450), [sym_comment] = ACTIONS(52), }, [114] = { [sym_file_descriptor] = ACTIONS(144), - [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_PIPE] = ACTIONS(464), [anon_sym_RPAREN] = ACTIONS(144), [anon_sym_PIPE_AMP] = ACTIONS(144), [anon_sym_AMP_AMP] = ACTIONS(144), - [anon_sym_PIPE_PIPE] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), + [anon_sym_PIPE_PIPE] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), [anon_sym_GT_GT] = ACTIONS(144), - [anon_sym_AMP_GT] = ACTIONS(460), + [anon_sym_AMP_GT] = ACTIONS(464), [anon_sym_AMP_GT_GT] = ACTIONS(144), [anon_sym_LT_AMP] = ACTIONS(144), [anon_sym_GT_AMP] = ACTIONS(144), - [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_LT_LT] = ACTIONS(464), [anon_sym_LT_LT_DASH] = ACTIONS(144), [anon_sym_DQUOTE] = ACTIONS(144), [sym_raw_string] = ACTIONS(144), - [anon_sym_DOLLAR] = ACTIONS(460), + [anon_sym_DOLLAR] = ACTIONS(464), [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), [anon_sym_DOLLAR_LPAREN] = ACTIONS(144), [anon_sym_BQUOTE] = ACTIONS(144), @@ -7796,10 +8033,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [115] = { - [sym_command_name] = STATE(301), - [sym_environment_variable_assignment] = STATE(137), - [sym_subscript] = STATE(138), - [sym_file_redirect] = STATE(137), + [sym_command_name] = STATE(306), + [sym_environment_variable_assignment] = STATE(139), + [sym_subscript] = STATE(140), + [sym_file_redirect] = STATE(139), [sym_concatenation] = STATE(114), [sym_string] = STATE(103), [sym_simple_expansion] = STATE(103), @@ -7807,7 +8044,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(103), [sym_process_substitution] = STATE(103), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(244), + [sym_variable_name] = ACTIONS(246), [anon_sym_LT] = ACTIONS(32), [anon_sym_GT] = ACTIONS(32), [anon_sym_GT_GT] = ACTIONS(34), @@ -7823,83 +8060,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(192), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(502), + [sym_word] = ACTIONS(508), [sym_comment] = ACTIONS(52), }, [116] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(482), [sym_comment] = ACTIONS(52), }, [117] = { - [sym_file_redirect] = STATE(297), - [sym_heredoc_redirect] = STATE(297), - [sym_concatenation] = STATE(298), - [sym_string] = STATE(296), - [sym_simple_expansion] = STATE(296), - [sym_expansion] = STATE(296), - [sym_command_substitution] = STATE(296), - [sym_process_substitution] = STATE(296), - [aux_sym_for_statement_repeat1] = STATE(304), - [aux_sym_command_repeat2] = STATE(300), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_PIPE_AMP] = ACTIONS(486), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(303), + [sym_string] = STATE(301), + [sym_simple_expansion] = STATE(301), + [sym_expansion] = STATE(301), + [sym_command_substitution] = STATE(301), + [sym_process_substitution] = STATE(301), + [aux_sym_for_statement_repeat1] = STATE(309), + [aux_sym_command_repeat2] = STATE(305), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_PIPE_AMP] = ACTIONS(492), + [anon_sym_AMP_AMP] = ACTIONS(492), + [anon_sym_PIPE_PIPE] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(496), + [sym_raw_string] = ACTIONS(502), [anon_sym_DOLLAR] = ACTIONS(186), [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(486), + [anon_sym_BQUOTE] = ACTIONS(492), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(498), + [sym_word] = ACTIONS(504), [sym_comment] = ACTIONS(52), }, [118] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(476), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [119] = { - [sym_command_name] = STATE(305), - [sym_environment_variable_assignment] = STATE(137), - [sym_subscript] = STATE(138), - [sym_file_redirect] = STATE(137), + [sym_command_name] = STATE(310), + [sym_environment_variable_assignment] = STATE(139), + [sym_subscript] = STATE(140), + [sym_file_redirect] = STATE(139), [sym_concatenation] = STATE(114), [sym_string] = STATE(103), [sym_simple_expansion] = STATE(103), @@ -7907,7 +8144,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(103), [sym_process_substitution] = STATE(103), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(244), + [sym_variable_name] = ACTIONS(246), [anon_sym_LT] = ACTIONS(32), [anon_sym_GT] = ACTIONS(32), [anon_sym_GT_GT] = ACTIONS(34), @@ -7923,60 +8160,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(192), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(502), + [sym_word] = ACTIONS(508), [sym_comment] = ACTIONS(52), }, [120] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [121] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [122] = { - [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(520), [sym_comment] = ACTIONS(52), }, [123] = { - [sym_for_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_function_definition] = STATE(308), - [sym_subshell] = STATE(308), - [sym_pipeline] = STATE(308), - [sym_list] = STATE(308), - [sym_bracket_command] = STATE(308), - [sym_command] = STATE(308), + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_bracket_command] = STATE(23), + [sym_command] = STATE(23), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(309), + [sym_environment_variable_assignment] = STATE(25), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -7985,6 +8223,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(314), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -7994,6 +8233,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(522), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_LT] = ACTIONS(32), @@ -8015,50 +8255,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [124] = { - [sym_file_descriptor] = ACTIONS(516), - [sym_variable_name] = ACTIONS(516), - [ts_builtin_sym_end] = ACTIONS(516), - [anon_sym_for] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_SEMI_SEMI] = ACTIONS(516), - [anon_sym_function] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_AMP_GT] = ACTIONS(518), - [anon_sym_AMP_GT_GT] = ACTIONS(516), - [anon_sym_LT_AMP] = ACTIONS(516), - [anon_sym_GT_AMP] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR] = ACTIONS(518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), - [anon_sym_BQUOTE] = ACTIONS(516), - [anon_sym_LT_LPAREN] = ACTIONS(516), - [anon_sym_GT_LPAREN] = ACTIONS(516), - [sym_word] = ACTIONS(520), - [sym_comment] = ACTIONS(52), + [sym_file_redirect] = STATE(317), + [sym_file_descriptor] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(526), + [anon_sym_SEMI_SEMI] = ACTIONS(526), + [anon_sym_PIPE_AMP] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(526), + [anon_sym_PIPE_PIPE] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_AMP_GT] = ACTIONS(528), + [anon_sym_AMP_GT_GT] = ACTIONS(528), + [anon_sym_LT_AMP] = ACTIONS(528), + [anon_sym_GT_AMP] = ACTIONS(528), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_LF] = ACTIONS(526), + [anon_sym_AMP] = ACTIONS(526), }, [125] = { - [sym_for_statement] = STATE(310), - [sym_while_statement] = STATE(310), - [sym_if_statement] = STATE(310), - [sym_case_statement] = STATE(310), - [sym_function_definition] = STATE(310), - [sym_subshell] = STATE(310), - [sym_pipeline] = STATE(310), - [sym_list] = STATE(310), - [sym_bracket_command] = STATE(310), - [sym_command] = STATE(310), + [sym_for_statement] = STATE(318), + [sym_while_statement] = STATE(318), + [sym_if_statement] = STATE(318), + [sym_case_statement] = STATE(318), + [sym_function_definition] = STATE(318), + [sym_subshell] = STATE(318), + [sym_pipeline] = STATE(318), + [sym_list] = STATE(318), + [sym_bracket_command] = STATE(318), + [sym_command] = STATE(318), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(311), + [sym_environment_variable_assignment] = STATE(319), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -8097,342 +8326,424 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [126] = { - [anon_sym_LT] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_AMP_GT] = ACTIONS(522), - [anon_sym_AMP_GT_GT] = ACTIONS(524), - [anon_sym_LT_AMP] = ACTIONS(524), - [anon_sym_GT_AMP] = ACTIONS(524), + [sym_file_descriptor] = ACTIONS(530), + [sym_variable_name] = ACTIONS(530), + [ts_builtin_sym_end] = ACTIONS(530), + [anon_sym_for] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_SEMI_SEMI] = ACTIONS(530), + [anon_sym_function] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_AMP_GT] = ACTIONS(532), + [anon_sym_AMP_GT_GT] = ACTIONS(530), + [anon_sym_LT_AMP] = ACTIONS(530), + [anon_sym_GT_AMP] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [sym_raw_string] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_LT_LPAREN] = ACTIONS(530), + [anon_sym_GT_LPAREN] = ACTIONS(530), + [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, [127] = { - [sym_concatenation] = STATE(320), - [sym_string] = STATE(314), - [sym_simple_expansion] = STATE(314), - [sym_expansion] = STATE(314), - [sym_command_substitution] = STATE(314), - [sym_process_substitution] = STATE(314), - [anon_sym_DQUOTE] = ACTIONS(526), - [sym_raw_string] = ACTIONS(528), - [anon_sym_DOLLAR] = ACTIONS(530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(534), - [anon_sym_BQUOTE] = ACTIONS(536), - [anon_sym_LT_LPAREN] = ACTIONS(538), - [anon_sym_GT_LPAREN] = ACTIONS(538), - [sym_word] = ACTIONS(540), + [sym_for_statement] = STATE(320), + [sym_while_statement] = STATE(320), + [sym_if_statement] = STATE(320), + [sym_case_statement] = STATE(320), + [sym_function_definition] = STATE(320), + [sym_subshell] = STATE(320), + [sym_pipeline] = STATE(320), + [sym_list] = STATE(320), + [sym_bracket_command] = STATE(320), + [sym_command] = STATE(320), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(321), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [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_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, [128] = { - [sym_heredoc] = STATE(323), - [sym__simple_heredoc] = ACTIONS(542), - [sym__heredoc_beginning] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_AMP_GT] = ACTIONS(536), + [anon_sym_AMP_GT_GT] = ACTIONS(538), + [anon_sym_LT_AMP] = ACTIONS(538), + [anon_sym_GT_AMP] = ACTIONS(538), [sym_comment] = ACTIONS(52), }, [129] = { - [aux_sym_concatenation_repeat1] = STATE(85), - [sym_file_descriptor] = ACTIONS(326), - [sym__concat] = ACTIONS(146), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_RPAREN] = ACTIONS(328), - [anon_sym_SEMI_SEMI] = ACTIONS(328), - [anon_sym_PIPE_AMP] = ACTIONS(328), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_AMP_GT] = ACTIONS(328), - [anon_sym_AMP_GT_GT] = ACTIONS(328), - [anon_sym_LT_AMP] = ACTIONS(328), - [anon_sym_GT_AMP] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_LT_LT_DASH] = ACTIONS(328), - [anon_sym_DQUOTE] = ACTIONS(328), - [sym_raw_string] = ACTIONS(328), - [anon_sym_DOLLAR] = ACTIONS(328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_LT_LPAREN] = ACTIONS(328), - [anon_sym_GT_LPAREN] = ACTIONS(328), - [sym_word] = ACTIONS(328), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LF] = ACTIONS(328), - [anon_sym_AMP] = ACTIONS(328), - }, - [130] = { - [sym_file_descriptor] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_SEMI_SEMI] = ACTIONS(548), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_LT_LT_DASH] = ACTIONS(548), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_LF] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(548), - }, - [131] = { - [sym_file_descriptor] = ACTIONS(326), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_RPAREN] = ACTIONS(328), - [anon_sym_SEMI_SEMI] = ACTIONS(328), - [anon_sym_PIPE_AMP] = ACTIONS(328), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_AMP_GT] = ACTIONS(328), - [anon_sym_AMP_GT_GT] = ACTIONS(328), - [anon_sym_LT_AMP] = ACTIONS(328), - [anon_sym_GT_AMP] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_LT_LT_DASH] = ACTIONS(328), - [anon_sym_DQUOTE] = ACTIONS(328), - [sym_raw_string] = ACTIONS(328), - [anon_sym_DOLLAR] = ACTIONS(328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_LT_LPAREN] = ACTIONS(328), - [anon_sym_GT_LPAREN] = ACTIONS(328), - [sym_word] = ACTIONS(328), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LF] = ACTIONS(328), - [anon_sym_AMP] = ACTIONS(328), - }, - [132] = { - [sym_file_redirect] = STATE(130), - [sym_heredoc_redirect] = STATE(130), - [sym_concatenation] = STATE(325), + [sym_concatenation] = STATE(330), [sym_string] = STATE(324), [sym_simple_expansion] = STATE(324), [sym_expansion] = STATE(324), [sym_command_substitution] = STATE(324), [sym_process_substitution] = STATE(324), - [aux_sym_command_repeat2] = STATE(326), - [sym_file_descriptor] = ACTIONS(214), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(550), - [anon_sym_SEMI_SEMI] = ACTIONS(550), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_AMP_GT] = ACTIONS(218), - [anon_sym_AMP_GT_GT] = ACTIONS(218), - [anon_sym_LT_AMP] = ACTIONS(218), - [anon_sym_GT_AMP] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(220), - [anon_sym_LT_LT_DASH] = ACTIONS(220), - [anon_sym_DQUOTE] = ACTIONS(222), - [sym_raw_string] = ACTIONS(552), - [anon_sym_DOLLAR] = ACTIONS(226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(230), - [anon_sym_BQUOTE] = ACTIONS(232), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_word] = ACTIONS(552), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LF] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(550), - }, - [133] = { - [sym_file_redirect] = STATE(327), - [sym_heredoc_redirect] = STATE(327), - [sym_file_descriptor] = ACTIONS(214), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(550), - [anon_sym_SEMI_SEMI] = ACTIONS(550), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_AMP_GT] = ACTIONS(218), - [anon_sym_AMP_GT_GT] = ACTIONS(218), - [anon_sym_LT_AMP] = ACTIONS(218), - [anon_sym_GT_AMP] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(220), - [anon_sym_LT_LT_DASH] = ACTIONS(220), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LF] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(550), - }, - [134] = { - [sym_file_descriptor] = ACTIONS(554), - [sym_variable_name] = ACTIONS(554), - [ts_builtin_sym_end] = ACTIONS(554), - [anon_sym_for] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_case] = ACTIONS(556), - [anon_sym_SEMI_SEMI] = ACTIONS(554), - [anon_sym_function] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_AMP_GT] = ACTIONS(556), - [anon_sym_AMP_GT_GT] = ACTIONS(554), - [anon_sym_LT_AMP] = ACTIONS(554), - [anon_sym_GT_AMP] = ACTIONS(554), - [anon_sym_DQUOTE] = ACTIONS(554), - [sym_raw_string] = ACTIONS(554), - [anon_sym_DOLLAR] = ACTIONS(556), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(554), - [anon_sym_BQUOTE] = ACTIONS(554), - [anon_sym_LT_LPAREN] = ACTIONS(554), - [anon_sym_GT_LPAREN] = ACTIONS(554), - [sym_word] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(540), + [sym_raw_string] = ACTIONS(542), + [anon_sym_DOLLAR] = ACTIONS(544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_LT_LPAREN] = ACTIONS(552), + [anon_sym_GT_LPAREN] = ACTIONS(552), + [sym_word] = ACTIONS(554), [sym_comment] = ACTIONS(52), }, - [135] = { - [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(560), + [130] = { + [sym_heredoc] = STATE(333), + [sym__simple_heredoc] = ACTIONS(556), + [sym__heredoc_beginning] = ACTIONS(558), [sym_comment] = ACTIONS(52), }, - [136] = { - [sym_file_redirect] = STATE(130), - [sym_heredoc_redirect] = STATE(130), - [sym_concatenation] = STATE(131), - [sym_string] = STATE(129), - [sym_simple_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [sym_process_substitution] = STATE(129), - [aux_sym_for_statement_repeat1] = STATE(329), - [aux_sym_command_repeat2] = STATE(326), - [sym_file_descriptor] = ACTIONS(214), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(550), - [anon_sym_SEMI_SEMI] = ACTIONS(550), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_AMP_GT] = ACTIONS(218), - [anon_sym_AMP_GT_GT] = ACTIONS(218), - [anon_sym_LT_AMP] = ACTIONS(218), - [anon_sym_GT_AMP] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(220), - [anon_sym_LT_LT_DASH] = ACTIONS(220), - [anon_sym_DQUOTE] = ACTIONS(222), - [sym_raw_string] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(230), - [anon_sym_BQUOTE] = ACTIONS(232), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_word] = ACTIONS(224), + [131] = { + [aux_sym_concatenation_repeat1] = STATE(85), + [sym_file_descriptor] = ACTIONS(330), + [sym__concat] = ACTIONS(146), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_SEMI_SEMI] = ACTIONS(332), + [anon_sym_PIPE_AMP] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_AMP_GT] = ACTIONS(332), + [anon_sym_AMP_GT_GT] = ACTIONS(332), + [anon_sym_LT_AMP] = ACTIONS(332), + [anon_sym_GT_AMP] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_LT_LT_DASH] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(332), + [sym_raw_string] = ACTIONS(332), + [anon_sym_DOLLAR] = ACTIONS(332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(332), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_word] = ACTIONS(332), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_LF] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LF] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(332), }, - [137] = { - [sym_file_descriptor] = ACTIONS(562), - [sym_variable_name] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), + [132] = { + [sym_file_descriptor] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_RPAREN] = ACTIONS(562), + [anon_sym_SEMI_SEMI] = ACTIONS(562), + [anon_sym_PIPE_AMP] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(564), + [anon_sym_AMP_GT] = ACTIONS(562), [anon_sym_AMP_GT_GT] = ACTIONS(562), [anon_sym_LT_AMP] = ACTIONS(562), [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(562), - [sym_raw_string] = ACTIONS(562), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(562), - [anon_sym_BQUOTE] = ACTIONS(562), - [anon_sym_LT_LPAREN] = ACTIONS(562), - [anon_sym_GT_LPAREN] = ACTIONS(562), - [sym_word] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_LT_LT_DASH] = ACTIONS(562), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_LF] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(562), + }, + [133] = { + [sym_file_descriptor] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_SEMI_SEMI] = ACTIONS(332), + [anon_sym_PIPE_AMP] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_AMP_GT] = ACTIONS(332), + [anon_sym_AMP_GT_GT] = ACTIONS(332), + [anon_sym_LT_AMP] = ACTIONS(332), + [anon_sym_GT_AMP] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_LT_LT_DASH] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(332), + [sym_raw_string] = ACTIONS(332), + [anon_sym_DOLLAR] = ACTIONS(332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(332), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_word] = ACTIONS(332), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LF] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(332), + }, + [134] = { + [sym_file_redirect] = STATE(132), + [sym_heredoc_redirect] = STATE(132), + [sym_concatenation] = STATE(335), + [sym_string] = STATE(334), + [sym_simple_expansion] = STATE(334), + [sym_expansion] = STATE(334), + [sym_command_substitution] = STATE(334), + [sym_process_substitution] = STATE(334), + [aux_sym_command_repeat2] = STATE(336), + [sym_file_descriptor] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_SEMI_SEMI] = ACTIONS(564), + [anon_sym_PIPE_AMP] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_GT_GT] = ACTIONS(220), + [anon_sym_AMP_GT] = ACTIONS(220), + [anon_sym_AMP_GT_GT] = ACTIONS(220), + [anon_sym_LT_AMP] = ACTIONS(220), + [anon_sym_GT_AMP] = ACTIONS(220), + [anon_sym_LT_LT] = ACTIONS(222), + [anon_sym_LT_LT_DASH] = ACTIONS(222), + [anon_sym_DQUOTE] = ACTIONS(224), + [sym_raw_string] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(232), + [anon_sym_BQUOTE] = ACTIONS(234), + [anon_sym_LT_LPAREN] = ACTIONS(236), + [anon_sym_GT_LPAREN] = ACTIONS(236), + [sym_word] = ACTIONS(566), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_LF] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + }, + [135] = { + [sym_file_redirect] = STATE(337), + [sym_heredoc_redirect] = STATE(337), + [sym_file_descriptor] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_SEMI_SEMI] = ACTIONS(564), + [anon_sym_PIPE_AMP] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_GT_GT] = ACTIONS(220), + [anon_sym_AMP_GT] = ACTIONS(220), + [anon_sym_AMP_GT_GT] = ACTIONS(220), + [anon_sym_LT_AMP] = ACTIONS(220), + [anon_sym_GT_AMP] = ACTIONS(220), + [anon_sym_LT_LT] = ACTIONS(222), + [anon_sym_LT_LT_DASH] = ACTIONS(222), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_LF] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + }, + [136] = { + [sym_file_descriptor] = ACTIONS(568), + [sym_variable_name] = ACTIONS(568), + [ts_builtin_sym_end] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_case] = ACTIONS(570), + [anon_sym_SEMI_SEMI] = ACTIONS(568), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_AMP_GT] = ACTIONS(570), + [anon_sym_AMP_GT_GT] = ACTIONS(568), + [anon_sym_LT_AMP] = ACTIONS(568), + [anon_sym_GT_AMP] = ACTIONS(568), + [anon_sym_DQUOTE] = ACTIONS(568), + [sym_raw_string] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), + [anon_sym_BQUOTE] = ACTIONS(568), + [anon_sym_LT_LPAREN] = ACTIONS(568), + [anon_sym_GT_LPAREN] = ACTIONS(568), + [sym_word] = ACTIONS(572), + [sym_comment] = ACTIONS(52), + }, + [137] = { + [anon_sym_LBRACK] = ACTIONS(58), + [anon_sym_EQ] = ACTIONS(574), [sym_comment] = ACTIONS(52), }, [138] = { - [anon_sym_EQ] = ACTIONS(560), - [sym_comment] = ACTIONS(52), + [sym_file_redirect] = STATE(132), + [sym_heredoc_redirect] = STATE(132), + [sym_concatenation] = STATE(133), + [sym_string] = STATE(131), + [sym_simple_expansion] = STATE(131), + [sym_expansion] = STATE(131), + [sym_command_substitution] = STATE(131), + [sym_process_substitution] = STATE(131), + [aux_sym_for_statement_repeat1] = STATE(339), + [aux_sym_command_repeat2] = STATE(336), + [sym_file_descriptor] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_SEMI_SEMI] = ACTIONS(564), + [anon_sym_PIPE_AMP] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_GT_GT] = ACTIONS(220), + [anon_sym_AMP_GT] = ACTIONS(220), + [anon_sym_AMP_GT_GT] = ACTIONS(220), + [anon_sym_LT_AMP] = ACTIONS(220), + [anon_sym_GT_AMP] = ACTIONS(220), + [anon_sym_LT_LT] = ACTIONS(222), + [anon_sym_LT_LT_DASH] = ACTIONS(222), + [anon_sym_DQUOTE] = ACTIONS(224), + [sym_raw_string] = ACTIONS(226), + [anon_sym_DOLLAR] = ACTIONS(228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(232), + [anon_sym_BQUOTE] = ACTIONS(234), + [anon_sym_LT_LPAREN] = ACTIONS(236), + [anon_sym_GT_LPAREN] = ACTIONS(236), + [sym_word] = ACTIONS(226), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_LF] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), }, [139] = { - [aux_sym_concatenation_repeat1] = STATE(226), - [sym_file_descriptor] = ACTIONS(566), - [sym__concat] = ACTIONS(368), - [sym_variable_name] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_AMP_GT] = ACTIONS(568), - [anon_sym_AMP_GT_GT] = ACTIONS(566), - [anon_sym_LT_AMP] = ACTIONS(566), - [anon_sym_GT_AMP] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(566), - [anon_sym_DOLLAR] = ACTIONS(568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(566), - [anon_sym_BQUOTE] = ACTIONS(566), - [anon_sym_LT_LPAREN] = ACTIONS(566), - [anon_sym_GT_LPAREN] = ACTIONS(566), - [sym_word] = ACTIONS(568), + [sym_file_descriptor] = ACTIONS(576), + [sym_variable_name] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_AMP_GT] = ACTIONS(578), + [anon_sym_AMP_GT_GT] = ACTIONS(576), + [anon_sym_LT_AMP] = ACTIONS(576), + [anon_sym_GT_AMP] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(576), + [sym_raw_string] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(576), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(576), + [anon_sym_LT_LPAREN] = ACTIONS(576), + [anon_sym_GT_LPAREN] = ACTIONS(576), + [sym_word] = ACTIONS(578), [sym_comment] = ACTIONS(52), }, [140] = { - [sym_file_descriptor] = ACTIONS(566), - [sym_variable_name] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_AMP_GT] = ACTIONS(568), - [anon_sym_AMP_GT_GT] = ACTIONS(566), - [anon_sym_LT_AMP] = ACTIONS(566), - [anon_sym_GT_AMP] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(566), - [anon_sym_DOLLAR] = ACTIONS(568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(566), - [anon_sym_BQUOTE] = ACTIONS(566), - [anon_sym_LT_LPAREN] = ACTIONS(566), - [anon_sym_GT_LPAREN] = ACTIONS(566), - [sym_word] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(574), [sym_comment] = ACTIONS(52), }, [141] = { + [aux_sym_concatenation_repeat1] = STATE(229), + [sym_file_descriptor] = ACTIONS(580), + [sym__concat] = ACTIONS(372), + [sym_variable_name] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(580), + [anon_sym_LT_AMP] = ACTIONS(580), + [anon_sym_GT_AMP] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(580), + [sym_raw_string] = ACTIONS(580), + [anon_sym_DOLLAR] = ACTIONS(582), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(580), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(580), + [anon_sym_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(580), + [anon_sym_GT_LPAREN] = ACTIONS(580), + [sym_word] = ACTIONS(582), + [sym_comment] = ACTIONS(52), + }, + [142] = { + [sym_file_descriptor] = ACTIONS(580), + [sym_variable_name] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(580), + [anon_sym_LT_AMP] = ACTIONS(580), + [anon_sym_GT_AMP] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(580), + [sym_raw_string] = ACTIONS(580), + [anon_sym_DOLLAR] = ACTIONS(582), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(580), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(580), + [anon_sym_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(580), + [anon_sym_GT_LPAREN] = ACTIONS(580), + [sym_word] = ACTIONS(582), + [sym_comment] = ACTIONS(52), + }, + [143] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(331), - [anon_sym_DQUOTE] = ACTIONS(570), + [aux_sym_string_repeat1] = STATE(341), + [anon_sym_DQUOTE] = ACTIONS(584), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -8440,33 +8751,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [142] = { - [aux_sym_concatenation_repeat1] = STATE(334), - [sym__concat] = ACTIONS(572), - [anon_sym_RBRACK] = ACTIONS(574), + [144] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym__concat] = ACTIONS(586), + [anon_sym_RBRACK] = ACTIONS(588), [sym_comment] = ACTIONS(52), }, - [143] = { - [sym_special_variable_name] = STATE(337), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), + [145] = { + [sym_special_variable_name] = STATE(347), + [anon_sym_DOLLAR] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_AT] = ACTIONS(590), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_0] = ACTIONS(580), - [anon_sym__] = ACTIONS(580), + [sym_simple_variable_name] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_0] = ACTIONS(594), + [anon_sym__] = ACTIONS(594), }, - [144] = { - [sym_special_variable_name] = STATE(340), + [146] = { + [sym_special_variable_name] = STATE(350), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(596), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(584), + [sym_simple_variable_name] = ACTIONS(598), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -8474,119 +8785,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [145] = { - [sym_for_statement] = STATE(341), - [sym_while_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_case_statement] = STATE(341), - [sym_function_definition] = STATE(341), - [sym_subshell] = STATE(341), - [sym_pipeline] = STATE(341), - [sym_list] = STATE(341), - [sym_bracket_command] = STATE(341), - [sym_command] = STATE(341), - [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(342), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [146] = { - [sym_for_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_function_definition] = STATE(343), - [sym_subshell] = STATE(343), - [sym_pipeline] = STATE(343), - [sym_list] = STATE(343), - [sym_bracket_command] = STATE(343), - [sym_command] = STATE(343), - [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(344), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(119), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, [147] = { - [sym_for_statement] = STATE(345), - [sym_while_statement] = STATE(345), - [sym_if_statement] = STATE(345), - [sym_case_statement] = STATE(345), - [sym_function_definition] = STATE(345), - [sym_subshell] = STATE(345), - [sym_pipeline] = STATE(345), - [sym_list] = STATE(345), - [sym_bracket_command] = STATE(345), - [sym_command] = STATE(345), + [sym_for_statement] = STATE(351), + [sym_while_statement] = STATE(351), + [sym_if_statement] = STATE(351), + [sym_case_statement] = STATE(351), + [sym_function_definition] = STATE(351), + [sym_subshell] = STATE(351), + [sym_pipeline] = STATE(351), + [sym_list] = STATE(351), + [sym_bracket_command] = STATE(351), + [sym_command] = STATE(351), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(346), + [sym_environment_variable_assignment] = STATE(352), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -8625,181 +8836,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [148] = { - [anon_sym_RBRACK] = ACTIONS(574), - [sym_comment] = ACTIONS(52), - }, - [149] = { - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_RPAREN] = ACTIONS(588), - [anon_sym_SEMI_SEMI] = ACTIONS(588), - [anon_sym_PIPE_AMP] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_AMP_GT] = ACTIONS(588), - [anon_sym_AMP_GT_GT] = ACTIONS(588), - [anon_sym_LT_AMP] = ACTIONS(588), - [anon_sym_GT_AMP] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [sym_raw_string] = ACTIONS(588), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(588), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(588), - [anon_sym_BQUOTE] = ACTIONS(588), - [anon_sym_LT_LPAREN] = ACTIONS(588), - [anon_sym_GT_LPAREN] = ACTIONS(588), - [sym_word] = ACTIONS(588), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LF] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(588), - }, - [150] = { - [aux_sym_array_repeat1] = STATE(349), - [anon_sym_RPAREN] = ACTIONS(590), - [sym_word] = ACTIONS(592), - [sym_comment] = ACTIONS(52), - }, - [151] = { - [sym_simple_expansion] = STATE(78), - [sym_expansion] = STATE(78), - [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(351), - [anon_sym_DQUOTE] = ACTIONS(594), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), - [anon_sym_DOLLAR] = ACTIONS(134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), - [anon_sym_BQUOTE] = ACTIONS(140), - [sym_comment] = ACTIONS(142), - }, - [152] = { - [aux_sym_concatenation_repeat1] = STATE(353), - [sym_file_descriptor] = ACTIONS(586), - [sym__concat] = ACTIONS(596), - [sym_variable_name] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_RPAREN] = ACTIONS(588), - [anon_sym_SEMI_SEMI] = ACTIONS(588), - [anon_sym_PIPE_AMP] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_AMP_GT] = ACTIONS(588), - [anon_sym_AMP_GT_GT] = ACTIONS(588), - [anon_sym_LT_AMP] = ACTIONS(588), - [anon_sym_GT_AMP] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [sym_raw_string] = ACTIONS(588), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(588), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(588), - [anon_sym_BQUOTE] = ACTIONS(588), - [anon_sym_LT_LPAREN] = ACTIONS(588), - [anon_sym_GT_LPAREN] = ACTIONS(588), - [sym_word] = ACTIONS(588), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LF] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(588), - }, - [153] = { - [sym_special_variable_name] = STATE(356), - [anon_sym_DOLLAR] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_AT] = ACTIONS(598), - [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_0] = ACTIONS(602), - [anon_sym__] = ACTIONS(602), - }, - [154] = { - [sym_special_variable_name] = STATE(359), - [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(156), - [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_DASH] = ACTIONS(156), - [anon_sym_BANG] = ACTIONS(156), - [anon_sym_0] = ACTIONS(162), - [anon_sym__] = ACTIONS(162), - }, - [155] = { - [sym_for_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_function_definition] = STATE(360), - [sym_subshell] = STATE(360), - [sym_pipeline] = STATE(360), - [sym_list] = STATE(360), - [sym_bracket_command] = STATE(360), - [sym_command] = STATE(360), - [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(361), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [156] = { - [sym_for_statement] = STATE(362), - [sym_while_statement] = STATE(362), - [sym_if_statement] = STATE(362), - [sym_case_statement] = STATE(362), - [sym_function_definition] = STATE(362), - [sym_subshell] = STATE(362), - [sym_pipeline] = STATE(362), - [sym_list] = STATE(362), - [sym_bracket_command] = STATE(362), - [sym_command] = STATE(362), + [sym_for_statement] = STATE(353), + [sym_while_statement] = STATE(353), + [sym_if_statement] = STATE(353), + [sym_case_statement] = STATE(353), + [sym_function_definition] = STATE(353), + [sym_subshell] = STATE(353), + [sym_pipeline] = STATE(353), + [sym_list] = STATE(353), + [sym_bracket_command] = STATE(353), + [sym_command] = STATE(353), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(363), + [sym_environment_variable_assignment] = STATE(354), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -8837,19 +8885,182 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [157] = { - [sym_for_statement] = STATE(364), - [sym_while_statement] = STATE(364), - [sym_if_statement] = STATE(364), - [sym_case_statement] = STATE(364), - [sym_function_definition] = STATE(364), - [sym_subshell] = STATE(364), - [sym_pipeline] = STATE(364), - [sym_list] = STATE(364), - [sym_bracket_command] = STATE(364), - [sym_command] = STATE(364), + [149] = { + [sym_for_statement] = STATE(355), + [sym_while_statement] = STATE(355), + [sym_if_statement] = STATE(355), + [sym_case_statement] = STATE(355), + [sym_function_definition] = STATE(355), + [sym_subshell] = STATE(355), + [sym_pipeline] = STATE(355), + [sym_list] = STATE(355), + [sym_bracket_command] = STATE(355), + [sym_command] = STATE(355), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(365), + [sym_environment_variable_assignment] = STATE(356), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [150] = { + [anon_sym_RBRACK] = ACTIONS(588), + [sym_comment] = ACTIONS(52), + }, + [151] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_SEMI_SEMI] = ACTIONS(602), + [anon_sym_PIPE_AMP] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(602), + [anon_sym_LT_AMP] = ACTIONS(602), + [anon_sym_GT_AMP] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(602), + [sym_raw_string] = ACTIONS(602), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(602), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), + [anon_sym_BQUOTE] = ACTIONS(602), + [anon_sym_LT_LPAREN] = ACTIONS(602), + [anon_sym_GT_LPAREN] = ACTIONS(602), + [sym_word] = ACTIONS(602), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_LF] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(602), + }, + [152] = { + [aux_sym_array_repeat1] = STATE(359), + [anon_sym_RPAREN] = ACTIONS(604), + [sym_word] = ACTIONS(606), + [sym_comment] = ACTIONS(52), + }, + [153] = { + [sym_simple_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [aux_sym_string_repeat1] = STATE(361), + [anon_sym_DQUOTE] = ACTIONS(608), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [sym_comment] = ACTIONS(142), + }, + [154] = { + [aux_sym_concatenation_repeat1] = STATE(363), + [sym_file_descriptor] = ACTIONS(600), + [sym__concat] = ACTIONS(610), + [sym_variable_name] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_SEMI_SEMI] = ACTIONS(602), + [anon_sym_PIPE_AMP] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(602), + [anon_sym_LT_AMP] = ACTIONS(602), + [anon_sym_GT_AMP] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(602), + [sym_raw_string] = ACTIONS(602), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(602), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), + [anon_sym_BQUOTE] = ACTIONS(602), + [anon_sym_LT_LPAREN] = ACTIONS(602), + [anon_sym_GT_LPAREN] = ACTIONS(602), + [sym_word] = ACTIONS(602), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_LF] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(602), + }, + [155] = { + [sym_special_variable_name] = STATE(366), + [anon_sym_DOLLAR] = ACTIONS(612), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_0] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + }, + [156] = { + [sym_special_variable_name] = STATE(369), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(618), + [anon_sym_AT] = ACTIONS(156), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [157] = { + [sym_for_statement] = STATE(370), + [sym_while_statement] = STATE(370), + [sym_if_statement] = STATE(370), + [sym_case_statement] = STATE(370), + [sym_function_definition] = STATE(370), + [sym_subshell] = STATE(370), + [sym_pipeline] = STATE(370), + [sym_list] = STATE(370), + [sym_bracket_command] = STATE(370), + [sym_command] = STATE(370), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(371), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -8888,59 +9099,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(52), }, [158] = { - [sym_concatenation] = STATE(373), - [sym_string] = STATE(367), - [sym_simple_expansion] = STATE(367), - [sym_expansion] = STATE(367), - [sym_command_substitution] = STATE(367), - [sym_process_substitution] = STATE(367), - [aux_sym_for_statement_repeat1] = STATE(374), - [anon_sym_DQUOTE] = ACTIONS(608), - [sym_raw_string] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(616), - [anon_sym_BQUOTE] = ACTIONS(618), - [anon_sym_LT_LPAREN] = ACTIONS(620), - [anon_sym_GT_LPAREN] = ACTIONS(620), - [sym_word] = ACTIONS(622), + [sym_for_statement] = STATE(372), + [sym_while_statement] = STATE(372), + [sym_if_statement] = STATE(372), + [sym_case_statement] = STATE(372), + [sym_function_definition] = STATE(372), + [sym_subshell] = STATE(372), + [sym_pipeline] = STATE(372), + [sym_list] = STATE(372), + [sym_bracket_command] = STATE(372), + [sym_command] = STATE(372), + [sym_command_name] = STATE(117), + [sym_environment_variable_assignment] = STATE(373), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(119), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, [159] = { - [sym__terminated_statement] = STATE(376), - [sym_for_statement] = STATE(377), - [sym_while_statement] = STATE(377), - [sym_if_statement] = STATE(377), - [sym_case_statement] = STATE(377), - [sym_function_definition] = STATE(377), - [sym_subshell] = STATE(377), - [sym_pipeline] = STATE(377), - [sym_list] = STATE(377), - [sym_bracket_command] = STATE(377), - [sym_command] = STATE(377), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(378), - [sym_subscript] = STATE(26), + [sym_for_statement] = STATE(374), + [sym_while_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [sym_function_definition] = STATE(374), + [sym_subshell] = STATE(374), + [sym_pipeline] = STATE(374), + [sym_list] = STATE(374), + [sym_bracket_command] = STATE(374), + [sym_command] = STATE(374), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(375), + [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(379), - [aux_sym_command_repeat1] = STATE(30), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(624), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), [anon_sym_LT] = ACTIONS(32), [anon_sym_GT] = ACTIONS(32), [anon_sym_GT_GT] = ACTIONS(34), @@ -8948,50 +9187,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(34), [anon_sym_LT_AMP] = ACTIONS(34), [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, [160] = { - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_RPAREN] = ACTIONS(626), - [anon_sym_SEMI_SEMI] = ACTIONS(626), - [anon_sym_PIPE_AMP] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(626), - [anon_sym_PIPE_PIPE] = ACTIONS(626), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_LF] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - }, - [161] = { - [anon_sym_do] = ACTIONS(516), - [anon_sym_then] = ACTIONS(516), + [sym_concatenation] = STATE(383), + [sym_string] = STATE(377), + [sym_simple_expansion] = STATE(377), + [sym_expansion] = STATE(377), + [sym_command_substitution] = STATE(377), + [sym_process_substitution] = STATE(377), + [aux_sym_for_statement_repeat1] = STATE(384), + [anon_sym_DQUOTE] = ACTIONS(622), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(632), + [anon_sym_LT_LPAREN] = ACTIONS(634), + [anon_sym_GT_LPAREN] = ACTIONS(634), + [sym_word] = ACTIONS(636), [sym_comment] = ACTIONS(52), }, - [162] = { - [sym__terminated_statement] = STATE(383), - [sym_for_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_elif_clause] = STATE(385), - [sym_else_clause] = STATE(386), - [sym_case_statement] = STATE(384), - [sym_function_definition] = STATE(384), - [sym_subshell] = STATE(384), - [sym_pipeline] = STATE(384), - [sym_list] = STATE(384), - [sym_bracket_command] = STATE(384), - [sym_command] = STATE(384), + [161] = { + [sym__terminated_statement] = STATE(386), + [sym_for_statement] = STATE(387), + [sym_while_statement] = STATE(387), + [sym_if_statement] = STATE(387), + [sym_case_statement] = STATE(387), + [sym_function_definition] = STATE(387), + [sym_subshell] = STATE(387), + [sym_pipeline] = STATE(387), + [sym_list] = STATE(387), + [sym_bracket_command] = STATE(387), + [sym_command] = STATE(387), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(387), + [sym_environment_variable_assignment] = STATE(388), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -9000,17 +9239,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(388), - [aux_sym_if_statement_repeat1] = STATE(389), + [aux_sym_program_repeat1] = STATE(389), [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(638), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(628), - [anon_sym_elif] = ACTIONS(630), - [anon_sym_else] = ACTIONS(632), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -9034,66 +9270,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [163] = { - [sym__concat] = ACTIONS(382), - [anon_sym_in] = ACTIONS(384), - [anon_sym_SEMI_SEMI] = ACTIONS(384), + [162] = { + [anon_sym_PIPE] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(640), + [anon_sym_SEMI_SEMI] = ACTIONS(640), + [anon_sym_PIPE_AMP] = ACTIONS(640), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LF] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LF] = ACTIONS(640), + [anon_sym_AMP] = ACTIONS(640), + }, + [163] = { + [anon_sym_do] = ACTIONS(530), + [anon_sym_then] = ACTIONS(530), + [sym_comment] = ACTIONS(52), }, [164] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(634), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [sym__terminated_statement] = STATE(393), + [sym_for_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_elif_clause] = STATE(395), + [sym_else_clause] = STATE(396), + [sym_case_statement] = STATE(394), + [sym_function_definition] = STATE(394), + [sym_subshell] = STATE(394), + [sym_pipeline] = STATE(394), + [sym_list] = STATE(394), + [sym_bracket_command] = STATE(394), + [sym_command] = STATE(394), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(397), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(398), + [aux_sym_if_statement_repeat1] = STATE(399), + [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(642), + [anon_sym_elif] = ACTIONS(644), + [anon_sym_else] = ACTIONS(646), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), + [sym_comment] = ACTIONS(52), + }, + [165] = { + [sym__concat] = ACTIONS(386), + [anon_sym_in] = ACTIONS(388), + [anon_sym_SEMI_SEMI] = ACTIONS(388), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(388), + }, + [166] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(648), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [165] = { - [sym_string] = STATE(391), - [sym_simple_expansion] = STATE(391), - [sym_expansion] = STATE(391), - [sym_command_substitution] = STATE(391), - [sym_process_substitution] = STATE(391), + [167] = { + [sym_string] = STATE(401), + [sym_simple_expansion] = STATE(401), + [sym_expansion] = STATE(401), + [sym_command_substitution] = STATE(401), + [sym_process_substitution] = STATE(401), [anon_sym_DQUOTE] = ACTIONS(64), - [sym_raw_string] = ACTIONS(636), + [sym_raw_string] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(68), [anon_sym_DOLLAR_LBRACE] = ACTIONS(70), [anon_sym_DOLLAR_LPAREN] = ACTIONS(72), [anon_sym_BQUOTE] = ACTIONS(74), [anon_sym_LT_LPAREN] = ACTIONS(76), [anon_sym_GT_LPAREN] = ACTIONS(76), - [sym_word] = ACTIONS(638), - [sym_comment] = ACTIONS(52), - }, - [166] = { - [anon_sym_SEMI_SEMI] = ACTIONS(640), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LF] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(640), - }, - [167] = { - [anon_sym_in] = ACTIONS(642), + [sym_word] = ACTIONS(652), [sym_comment] = ACTIONS(52), }, [168] = { - [sym__concat] = ACTIONS(644), - [anon_sym_in] = ACTIONS(412), - [anon_sym_SEMI_SEMI] = ACTIONS(412), + [anon_sym_SEMI_SEMI] = ACTIONS(654), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(412), - [anon_sym_LF] = ACTIONS(412), - [anon_sym_AMP] = ACTIONS(412), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(654), }, [169] = { - [sym__concat] = ACTIONS(414), + [anon_sym_in] = ACTIONS(656), + [sym_comment] = ACTIONS(52), + }, + [170] = { + [sym__concat] = ACTIONS(658), [anon_sym_in] = ACTIONS(416), [anon_sym_SEMI_SEMI] = ACTIONS(416), [sym_comment] = ACTIONS(142), @@ -9101,7 +9403,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(416), [anon_sym_AMP] = ACTIONS(416), }, - [170] = { + [171] = { [sym__concat] = ACTIONS(418), [anon_sym_in] = ACTIONS(420), [anon_sym_SEMI_SEMI] = ACTIONS(420), @@ -9110,7 +9412,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(420), [anon_sym_AMP] = ACTIONS(420), }, - [171] = { + [172] = { [sym__concat] = ACTIONS(422), [anon_sym_in] = ACTIONS(424), [anon_sym_SEMI_SEMI] = ACTIONS(424), @@ -9119,21 +9421,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(424), [anon_sym_AMP] = ACTIONS(424), }, - [172] = { - [sym_special_variable_name] = STATE(396), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [173] = { + [sym__concat] = ACTIONS(426), + [anon_sym_in] = ACTIONS(428), + [anon_sym_SEMI_SEMI] = ACTIONS(428), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_LF] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + }, + [174] = { + [sym_special_variable_name] = STATE(406), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(646), + [sym_simple_variable_name] = ACTIONS(660), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -9141,298 +9452,304 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [173] = { - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_COLON_QMARK] = ACTIONS(652), - [anon_sym_COLON_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [sym_comment] = ACTIONS(52), - }, - [174] = { - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_COLON] = ACTIONS(662), - [anon_sym_COLON_QMARK] = ACTIONS(660), - [anon_sym_COLON_DASH] = ACTIONS(660), - [anon_sym_PERCENT] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(660), - [sym_comment] = ACTIONS(52), - }, [175] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_COLON] = ACTIONS(668), + [anon_sym_COLON_QMARK] = ACTIONS(666), + [anon_sym_COLON_DASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), [sym_comment] = ACTIONS(52), }, [176] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_COLON_QMARK] = ACTIONS(674), + [anon_sym_COLON_DASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), [sym_comment] = ACTIONS(52), }, [177] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(678), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [178] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(664), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [179] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [180] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [181] = { - [anon_sym_RPAREN] = ACTIONS(668), - [sym_comment] = ACTIONS(52), - }, - [182] = { - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_SEMI_SEMI] = ACTIONS(670), - [anon_sym_PIPE_AMP] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(670), - [anon_sym_PIPE_PIPE] = ACTIONS(670), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_LF] = ACTIONS(670), - [anon_sym_AMP] = ACTIONS(670), - }, - [183] = { - [sym_file_descriptor] = ACTIONS(516), - [sym_variable_name] = ACTIONS(516), - [anon_sym_for] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(672), - [anon_sym_function] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_AMP_GT] = ACTIONS(518), - [anon_sym_AMP_GT_GT] = ACTIONS(516), - [anon_sym_LT_AMP] = ACTIONS(516), - [anon_sym_GT_AMP] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR] = ACTIONS(518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), - [anon_sym_BQUOTE] = ACTIONS(516), - [anon_sym_LT_LPAREN] = ACTIONS(516), - [anon_sym_GT_LPAREN] = ACTIONS(516), - [sym_word] = ACTIONS(520), - [sym_comment] = ACTIONS(52), - }, - [184] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(674), - [anon_sym_SEMI_SEMI] = ACTIONS(676), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LF] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - }, - [185] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(674), - [anon_sym_SEMI_SEMI] = ACTIONS(676), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(678), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), [anon_sym_AMP_GT_GT] = ACTIONS(238), [anon_sym_LT_AMP] = ACTIONS(238), [anon_sym_GT_AMP] = ACTIONS(238), [anon_sym_DQUOTE] = ACTIONS(238), [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), [anon_sym_BQUOTE] = ACTIONS(238), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [179] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(678), + [sym_comment] = ACTIONS(52), + }, + [180] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [181] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [182] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [183] = { + [anon_sym_RPAREN] = ACTIONS(682), + [sym_comment] = ACTIONS(52), + }, + [184] = { + [sym_file_redirect] = STATE(416), + [sym_file_descriptor] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_SEMI_SEMI] = ACTIONS(684), + [anon_sym_PIPE_AMP] = ACTIONS(684), + [anon_sym_AMP_AMP] = ACTIONS(684), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_AMP_GT] = ACTIONS(528), + [anon_sym_AMP_GT_GT] = ACTIONS(528), + [anon_sym_LT_AMP] = ACTIONS(528), + [anon_sym_GT_AMP] = ACTIONS(528), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LF] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(684), + [anon_sym_LF] = ACTIONS(684), + [anon_sym_AMP] = ACTIONS(684), + }, + [185] = { + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(686), + [anon_sym_SEMI_SEMI] = ACTIONS(686), + [anon_sym_PIPE_AMP] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(686), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(686), + [anon_sym_LF] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), }, [186] = { - [sym__concat] = ACTIONS(382), - [anon_sym_RBRACE] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(678), - [anon_sym_DQUOTE] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_word] = ACTIONS(384), + [sym_file_descriptor] = ACTIONS(530), + [sym_variable_name] = ACTIONS(530), + [anon_sym_for] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_function] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_AMP_GT] = ACTIONS(532), + [anon_sym_AMP_GT_GT] = ACTIONS(530), + [anon_sym_LT_AMP] = ACTIONS(530), + [anon_sym_GT_AMP] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [sym_raw_string] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_LT_LPAREN] = ACTIONS(530), + [anon_sym_GT_LPAREN] = ACTIONS(530), + [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, [187] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(680), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(692), + }, + [188] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(692), + }, + [189] = { + [sym__concat] = ACTIONS(386), + [anon_sym_RBRACE] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(386), + [sym_raw_string] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), + [anon_sym_BQUOTE] = ACTIONS(386), + [anon_sym_LT_LPAREN] = ACTIONS(386), + [anon_sym_GT_LPAREN] = ACTIONS(386), + [sym_word] = ACTIONS(388), + [sym_comment] = ACTIONS(52), + }, + [190] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(696), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [188] = { - [sym_string] = STATE(409), - [sym_simple_expansion] = STATE(409), - [sym_expansion] = STATE(409), - [sym_command_substitution] = STATE(409), - [sym_process_substitution] = STATE(409), + [191] = { + [sym_string] = STATE(420), + [sym_simple_expansion] = STATE(420), + [sym_expansion] = STATE(420), + [sym_command_substitution] = STATE(420), + [sym_process_substitution] = STATE(420), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(682), + [sym_raw_string] = ACTIONS(698), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(684), + [sym_word] = ACTIONS(700), [sym_comment] = ACTIONS(52), }, - [189] = { - [sym__concat] = ACTIONS(686), - [anon_sym_RBRACE] = ACTIONS(408), - [anon_sym_RBRACK] = ACTIONS(688), - [anon_sym_DQUOTE] = ACTIONS(408), - [sym_raw_string] = ACTIONS(408), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), - [anon_sym_BQUOTE] = ACTIONS(408), - [anon_sym_LT_LPAREN] = ACTIONS(408), - [anon_sym_GT_LPAREN] = ACTIONS(408), - [sym_word] = ACTIONS(412), - [sym_comment] = ACTIONS(52), - }, - [190] = { - [sym__concat] = ACTIONS(414), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(426), - [anon_sym_DQUOTE] = ACTIONS(414), - [sym_raw_string] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), + [192] = { + [sym__concat] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_RBRACK] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_raw_string] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), [sym_word] = ACTIONS(416), [sym_comment] = ACTIONS(52), }, - [191] = { + [193] = { [sym__concat] = ACTIONS(418), [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_RBRACK] = ACTIONS(430), [anon_sym_DQUOTE] = ACTIONS(418), [sym_raw_string] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(430), [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), [anon_sym_BQUOTE] = ACTIONS(418), @@ -9441,13 +9758,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(420), [sym_comment] = ACTIONS(52), }, - [192] = { + [194] = { [sym__concat] = ACTIONS(422), [anon_sym_RBRACE] = ACTIONS(422), - [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(706), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(706), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), @@ -9456,21 +9773,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(424), [sym_comment] = ACTIONS(52), }, - [193] = { - [sym_special_variable_name] = STATE(412), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [195] = { + [sym__concat] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_RBRACK] = ACTIONS(708), + [anon_sym_DQUOTE] = ACTIONS(426), + [sym_raw_string] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_word] = ACTIONS(428), + [sym_comment] = ACTIONS(52), + }, + [196] = { + [sym_special_variable_name] = STATE(423), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(694), + [sym_simple_variable_name] = ACTIONS(710), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -9478,246 +9810,232 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [194] = { - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_COLON] = ACTIONS(702), - [anon_sym_COLON_QMARK] = ACTIONS(700), - [anon_sym_COLON_DASH] = ACTIONS(700), - [anon_sym_PERCENT] = ACTIONS(700), - [anon_sym_SLASH] = ACTIONS(700), - [sym_comment] = ACTIONS(52), - }, - [195] = { - [anon_sym_RBRACE] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(706), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_COLON] = ACTIONS(710), - [anon_sym_COLON_QMARK] = ACTIONS(708), - [anon_sym_COLON_DASH] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [sym_comment] = ACTIONS(52), - }, - [196] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, [197] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(714), + [anon_sym_EQ] = ACTIONS(716), + [anon_sym_COLON] = ACTIONS(718), + [anon_sym_COLON_QMARK] = ACTIONS(716), + [anon_sym_COLON_DASH] = ACTIONS(716), + [anon_sym_PERCENT] = ACTIONS(716), + [anon_sym_SLASH] = ACTIONS(716), [sym_comment] = ACTIONS(52), }, [198] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(722), + [anon_sym_EQ] = ACTIONS(724), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_COLON_QMARK] = ACTIONS(724), + [anon_sym_COLON_DASH] = ACTIONS(724), + [anon_sym_PERCENT] = ACTIONS(724), + [anon_sym_SLASH] = ACTIONS(724), [sym_comment] = ACTIONS(52), }, [199] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(712), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [200] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [201] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(728), [sym_comment] = ACTIONS(52), }, [202] = { - [anon_sym_PIPE] = ACTIONS(716), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_SEMI_SEMI] = ACTIONS(716), - [anon_sym_PIPE_AMP] = ACTIONS(716), - [anon_sym_AMP_AMP] = ACTIONS(716), - [anon_sym_PIPE_PIPE] = ACTIONS(716), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(716), - [anon_sym_LF] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(716), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), }, [203] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym_raw_string] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), - [anon_sym_BQUOTE] = ACTIONS(720), - [anon_sym_LT_LPAREN] = ACTIONS(720), - [anon_sym_GT_LPAREN] = ACTIONS(720), - [sym_word] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [204] = { - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym_raw_string] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), - [anon_sym_BQUOTE] = ACTIONS(720), - [anon_sym_LT_LPAREN] = ACTIONS(720), - [anon_sym_GT_LPAREN] = ACTIONS(720), - [sym_word] = ACTIONS(722), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [205] = { - [sym__concat] = ACTIONS(382), - [anon_sym_RBRACK_RBRACK] = ACTIONS(678), - [anon_sym_DQUOTE] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_word] = ACTIONS(384), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(732), }, [206] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(724), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_raw_string] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), + [anon_sym_BQUOTE] = ACTIONS(736), + [anon_sym_LT_LPAREN] = ACTIONS(736), + [anon_sym_GT_LPAREN] = ACTIONS(736), + [sym_word] = ACTIONS(738), + [sym_comment] = ACTIONS(52), + }, + [207] = { + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_raw_string] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), + [anon_sym_BQUOTE] = ACTIONS(736), + [anon_sym_LT_LPAREN] = ACTIONS(736), + [anon_sym_GT_LPAREN] = ACTIONS(736), + [sym_word] = ACTIONS(738), + [sym_comment] = ACTIONS(52), + }, + [208] = { + [sym__concat] = ACTIONS(386), + [anon_sym_RBRACK_RBRACK] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(386), + [sym_raw_string] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), + [anon_sym_BQUOTE] = ACTIONS(386), + [anon_sym_LT_LPAREN] = ACTIONS(386), + [anon_sym_GT_LPAREN] = ACTIONS(386), + [sym_word] = ACTIONS(388), + [sym_comment] = ACTIONS(52), + }, + [209] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(740), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [207] = { - [sym_string] = STATE(422), - [sym_simple_expansion] = STATE(422), - [sym_expansion] = STATE(422), - [sym_command_substitution] = STATE(422), - [sym_process_substitution] = STATE(422), + [210] = { + [sym_string] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_command_substitution] = STATE(433), + [sym_process_substitution] = STATE(433), [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(726), + [sym_raw_string] = ACTIONS(742), [anon_sym_DOLLAR] = ACTIONS(102), [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), [anon_sym_BQUOTE] = ACTIONS(108), [anon_sym_LT_LPAREN] = ACTIONS(110), [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(728), + [sym_word] = ACTIONS(744), [sym_comment] = ACTIONS(52), }, - [208] = { - [sym__concat] = ACTIONS(730), - [anon_sym_RBRACK_RBRACK] = ACTIONS(688), - [anon_sym_DQUOTE] = ACTIONS(408), - [sym_raw_string] = ACTIONS(408), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), - [anon_sym_BQUOTE] = ACTIONS(408), - [anon_sym_LT_LPAREN] = ACTIONS(408), - [anon_sym_GT_LPAREN] = ACTIONS(408), - [sym_word] = ACTIONS(412), - [sym_comment] = ACTIONS(52), - }, - [209] = { - [sym__concat] = ACTIONS(414), - [anon_sym_RBRACK_RBRACK] = ACTIONS(426), - [anon_sym_DQUOTE] = ACTIONS(414), - [sym_raw_string] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), + [211] = { + [sym__concat] = ACTIONS(746), + [anon_sym_RBRACK_RBRACK] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_raw_string] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), [sym_word] = ACTIONS(416), [sym_comment] = ACTIONS(52), }, - [210] = { + [212] = { [sym__concat] = ACTIONS(418), - [anon_sym_RBRACK_RBRACK] = ACTIONS(690), + [anon_sym_RBRACK_RBRACK] = ACTIONS(430), [anon_sym_DQUOTE] = ACTIONS(418), [sym_raw_string] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(430), [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), [anon_sym_BQUOTE] = ACTIONS(418), @@ -9726,12 +10044,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(420), [sym_comment] = ACTIONS(52), }, - [211] = { + [213] = { [sym__concat] = ACTIONS(422), - [anon_sym_RBRACK_RBRACK] = ACTIONS(692), + [anon_sym_RBRACK_RBRACK] = ACTIONS(706), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(706), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), @@ -9740,21 +10058,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(424), [sym_comment] = ACTIONS(52), }, - [212] = { - [sym_special_variable_name] = STATE(425), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [214] = { + [sym__concat] = ACTIONS(426), + [anon_sym_RBRACK_RBRACK] = ACTIONS(708), + [anon_sym_DQUOTE] = ACTIONS(426), + [sym_raw_string] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_word] = ACTIONS(428), + [sym_comment] = ACTIONS(52), + }, + [215] = { + [sym_special_variable_name] = STATE(436), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(732), + [sym_simple_variable_name] = ACTIONS(748), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -9762,311 +10094,311 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [213] = { - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_EQ] = ACTIONS(738), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_COLON_QMARK] = ACTIONS(738), - [anon_sym_COLON_DASH] = ACTIONS(738), - [anon_sym_PERCENT] = ACTIONS(738), - [anon_sym_SLASH] = ACTIONS(738), - [sym_comment] = ACTIONS(52), - }, - [214] = { - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(746), - [anon_sym_COLON] = ACTIONS(748), - [anon_sym_COLON_QMARK] = ACTIONS(746), - [anon_sym_COLON_DASH] = ACTIONS(746), - [anon_sym_PERCENT] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(746), - [sym_comment] = ACTIONS(52), - }, - [215] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, [216] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_COLON] = ACTIONS(756), + [anon_sym_COLON_QMARK] = ACTIONS(754), + [anon_sym_COLON_DASH] = ACTIONS(754), + [anon_sym_PERCENT] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(754), [sym_comment] = ACTIONS(52), }, [217] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_COLON] = ACTIONS(764), + [anon_sym_COLON_QMARK] = ACTIONS(762), + [anon_sym_COLON_DASH] = ACTIONS(762), + [anon_sym_PERCENT] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(762), [sym_comment] = ACTIONS(52), }, [218] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [219] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [220] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(766), [sym_comment] = ACTIONS(52), }, [221] = { - [aux_sym_concatenation_repeat1] = STATE(208), - [sym__concat] = ACTIONS(348), - [anon_sym_RBRACK_RBRACK] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym_raw_string] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), - [anon_sym_BQUOTE] = ACTIONS(720), - [anon_sym_LT_LPAREN] = ACTIONS(720), - [anon_sym_GT_LPAREN] = ACTIONS(720), - [sym_word] = ACTIONS(722), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(766), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [222] = { - [anon_sym_RBRACK_RBRACK] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym_raw_string] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), - [anon_sym_BQUOTE] = ACTIONS(720), - [anon_sym_LT_LPAREN] = ACTIONS(720), - [anon_sym_GT_LPAREN] = ACTIONS(720), - [sym_word] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [223] = { - [sym_file_descriptor] = ACTIONS(382), - [sym__concat] = ACTIONS(382), - [sym_variable_name] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_word] = ACTIONS(678), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [224] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(754), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [aux_sym_concatenation_repeat1] = STATE(211), + [sym__concat] = ACTIONS(352), + [anon_sym_RBRACK_RBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_raw_string] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), + [anon_sym_BQUOTE] = ACTIONS(736), + [anon_sym_LT_LPAREN] = ACTIONS(736), + [anon_sym_GT_LPAREN] = ACTIONS(736), + [sym_word] = ACTIONS(738), + [sym_comment] = ACTIONS(52), + }, + [225] = { + [anon_sym_RBRACK_RBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_raw_string] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), + [anon_sym_BQUOTE] = ACTIONS(736), + [anon_sym_LT_LPAREN] = ACTIONS(736), + [anon_sym_GT_LPAREN] = ACTIONS(736), + [sym_word] = ACTIONS(738), + [sym_comment] = ACTIONS(52), + }, + [226] = { + [sym_file_descriptor] = ACTIONS(386), + [sym__concat] = ACTIONS(386), + [sym_variable_name] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(386), + [anon_sym_LT_AMP] = ACTIONS(386), + [anon_sym_GT_AMP] = ACTIONS(386), + [anon_sym_DQUOTE] = ACTIONS(386), + [sym_raw_string] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), + [anon_sym_BQUOTE] = ACTIONS(386), + [anon_sym_LT_LPAREN] = ACTIONS(386), + [anon_sym_GT_LPAREN] = ACTIONS(386), + [sym_word] = ACTIONS(694), + [sym_comment] = ACTIONS(52), + }, + [227] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(770), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [225] = { - [sym_string] = STATE(435), - [sym_simple_expansion] = STATE(435), - [sym_expansion] = STATE(435), - [sym_command_substitution] = STATE(435), - [sym_process_substitution] = STATE(435), + [228] = { + [sym_string] = STATE(446), + [sym_simple_expansion] = STATE(446), + [sym_expansion] = STATE(446), + [sym_command_substitution] = STATE(446), + [sym_process_substitution] = STATE(446), [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(756), + [sym_raw_string] = ACTIONS(772), [anon_sym_DOLLAR] = ACTIONS(118), [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), [anon_sym_BQUOTE] = ACTIONS(124), [anon_sym_LT_LPAREN] = ACTIONS(126), [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(758), + [sym_word] = ACTIONS(774), [sym_comment] = ACTIONS(52), }, - [226] = { - [sym_file_descriptor] = ACTIONS(408), - [sym__concat] = ACTIONS(760), - [sym_variable_name] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(688), - [anon_sym_GT] = ACTIONS(688), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_AMP_GT] = ACTIONS(688), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_DQUOTE] = ACTIONS(408), - [sym_raw_string] = ACTIONS(408), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), - [anon_sym_BQUOTE] = ACTIONS(408), - [anon_sym_LT_LPAREN] = ACTIONS(408), - [anon_sym_GT_LPAREN] = ACTIONS(408), - [sym_word] = ACTIONS(688), + [229] = { + [sym_file_descriptor] = ACTIONS(412), + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(704), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_raw_string] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), + [sym_word] = ACTIONS(704), [sym_comment] = ACTIONS(52), }, - [227] = { - [sym_file_descriptor] = ACTIONS(414), - [sym__concat] = ACTIONS(414), - [sym_variable_name] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(414), - [anon_sym_AMP_GT] = ACTIONS(426), - [anon_sym_AMP_GT_GT] = ACTIONS(414), - [anon_sym_LT_AMP] = ACTIONS(414), - [anon_sym_GT_AMP] = ACTIONS(414), - [anon_sym_DQUOTE] = ACTIONS(414), - [sym_raw_string] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_word] = ACTIONS(426), - [sym_comment] = ACTIONS(52), - }, - [228] = { + [230] = { [sym_file_descriptor] = ACTIONS(418), [sym__concat] = ACTIONS(418), [sym_variable_name] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(430), [anon_sym_AMP_GT_GT] = ACTIONS(418), [anon_sym_LT_AMP] = ACTIONS(418), [anon_sym_GT_AMP] = ACTIONS(418), [anon_sym_DQUOTE] = ACTIONS(418), [sym_raw_string] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(430), [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), [anon_sym_BQUOTE] = ACTIONS(418), [anon_sym_LT_LPAREN] = ACTIONS(418), [anon_sym_GT_LPAREN] = ACTIONS(418), - [sym_word] = ACTIONS(690), + [sym_word] = ACTIONS(430), [sym_comment] = ACTIONS(52), }, - [229] = { + [231] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), [sym_variable_name] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(706), [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(692), + [anon_sym_AMP_GT] = ACTIONS(706), [anon_sym_AMP_GT_GT] = ACTIONS(422), [anon_sym_LT_AMP] = ACTIONS(422), [anon_sym_GT_AMP] = ACTIONS(422), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(706), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), [anon_sym_LT_LPAREN] = ACTIONS(422), [anon_sym_GT_LPAREN] = ACTIONS(422), - [sym_word] = ACTIONS(692), + [sym_word] = ACTIONS(706), [sym_comment] = ACTIONS(52), }, - [230] = { - [sym_special_variable_name] = STATE(438), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [232] = { + [sym_file_descriptor] = ACTIONS(426), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_AMP_GT] = ACTIONS(708), + [anon_sym_AMP_GT_GT] = ACTIONS(426), + [anon_sym_LT_AMP] = ACTIONS(426), + [anon_sym_GT_AMP] = ACTIONS(426), + [anon_sym_DQUOTE] = ACTIONS(426), + [sym_raw_string] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_word] = ACTIONS(708), + [sym_comment] = ACTIONS(52), + }, + [233] = { + [sym_special_variable_name] = STATE(449), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(762), + [sym_simple_variable_name] = ACTIONS(778), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -10074,171 +10406,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [231] = { - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_COLON] = ACTIONS(770), - [anon_sym_COLON_QMARK] = ACTIONS(768), - [anon_sym_COLON_DASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [sym_comment] = ACTIONS(52), - }, - [232] = { - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_EQ] = ACTIONS(776), - [anon_sym_COLON] = ACTIONS(778), - [anon_sym_COLON_QMARK] = ACTIONS(776), - [anon_sym_COLON_DASH] = ACTIONS(776), - [anon_sym_PERCENT] = ACTIONS(776), - [anon_sym_SLASH] = ACTIONS(776), - [sym_comment] = ACTIONS(52), - }, - [233] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, [234] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_EQ] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_COLON_QMARK] = ACTIONS(784), + [anon_sym_COLON_DASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), [sym_comment] = ACTIONS(52), }, [235] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_EQ] = ACTIONS(792), + [anon_sym_COLON] = ACTIONS(794), + [anon_sym_COLON_QMARK] = ACTIONS(792), + [anon_sym_COLON_DASH] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(792), [sym_comment] = ACTIONS(52), }, [236] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(780), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [237] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [238] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(796), [sym_comment] = ACTIONS(52), }, [239] = { - [anon_sym_DQUOTE] = ACTIONS(416), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(416), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(416), - [sym_comment] = ACTIONS(142), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), }, [240] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [241] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [242] = { [anon_sym_DQUOTE] = ACTIONS(420), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(690), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(430), [anon_sym_DOLLAR] = ACTIONS(420), [anon_sym_DOLLAR_LBRACE] = ACTIONS(420), [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), [anon_sym_BQUOTE] = ACTIONS(420), [sym_comment] = ACTIONS(142), }, - [241] = { + [243] = { [anon_sym_DQUOTE] = ACTIONS(424), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(692), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(706), [anon_sym_DOLLAR] = ACTIONS(424), [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), [anon_sym_DOLLAR_LPAREN] = ACTIONS(424), [anon_sym_BQUOTE] = ACTIONS(424), [sym_comment] = ACTIONS(142), }, - [242] = { - [sym_special_variable_name] = STATE(448), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [244] = { + [anon_sym_DQUOTE] = ACTIONS(428), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), + [anon_sym_BQUOTE] = ACTIONS(428), + [sym_comment] = ACTIONS(142), + }, + [245] = { + [sym_special_variable_name] = STATE(459), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(784), + [sym_simple_variable_name] = ACTIONS(800), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -10246,196 +10578,137 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [243] = { - [anon_sym_RBRACE] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(788), - [anon_sym_EQ] = ACTIONS(790), - [anon_sym_COLON] = ACTIONS(792), - [anon_sym_COLON_QMARK] = ACTIONS(790), - [anon_sym_COLON_DASH] = ACTIONS(790), - [anon_sym_PERCENT] = ACTIONS(790), - [anon_sym_SLASH] = ACTIONS(790), - [sym_comment] = ACTIONS(52), - }, - [244] = { - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_EQ] = ACTIONS(798), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_COLON_QMARK] = ACTIONS(798), - [anon_sym_COLON_DASH] = ACTIONS(798), - [anon_sym_PERCENT] = ACTIONS(798), - [anon_sym_SLASH] = ACTIONS(798), - [sym_comment] = ACTIONS(52), - }, - [245] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, [246] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_RBRACE] = ACTIONS(802), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(808), + [anon_sym_COLON_QMARK] = ACTIONS(806), + [anon_sym_COLON_DASH] = ACTIONS(806), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), [sym_comment] = ACTIONS(52), }, [247] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(802), + [anon_sym_RBRACE] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_COLON] = ACTIONS(816), + [anon_sym_COLON_QMARK] = ACTIONS(814), + [anon_sym_COLON_DASH] = ACTIONS(814), + [anon_sym_PERCENT] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(814), [sym_comment] = ACTIONS(52), }, [248] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [249] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(806), - [anon_sym_LT_AMP] = ACTIONS(806), - [anon_sym_GT_AMP] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(806), - [anon_sym_LT_LT_DASH] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_word] = ACTIONS(806), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), }, [250] = { - [anon_sym_DQUOTE] = ACTIONS(808), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(810), - [anon_sym_DOLLAR] = ACTIONS(808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), - [anon_sym_BQUOTE] = ACTIONS(808), - [sym_comment] = ACTIONS(142), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_comment] = ACTIONS(52), }, [251] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_SEMI_SEMI] = ACTIONS(814), - [anon_sym_PIPE_AMP] = ACTIONS(814), - [anon_sym_AMP_AMP] = ACTIONS(814), - [anon_sym_PIPE_PIPE] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_AMP_GT] = ACTIONS(814), - [anon_sym_AMP_GT_GT] = ACTIONS(814), - [anon_sym_LT_AMP] = ACTIONS(814), - [anon_sym_GT_AMP] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(814), - [anon_sym_LT_LT_DASH] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(814), - [sym_raw_string] = ACTIONS(814), - [anon_sym_DOLLAR] = ACTIONS(814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), - [anon_sym_BQUOTE] = ACTIONS(814), - [anon_sym_LT_LPAREN] = ACTIONS(814), - [anon_sym_GT_LPAREN] = ACTIONS(814), - [sym_word] = ACTIONS(814), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), }, [252] = { - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(818), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_SEMI_SEMI] = ACTIONS(822), + [anon_sym_PIPE_AMP] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(822), + [anon_sym_PIPE_PIPE] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_AMP_GT] = ACTIONS(822), + [anon_sym_AMP_GT_GT] = ACTIONS(822), + [anon_sym_LT_AMP] = ACTIONS(822), + [anon_sym_GT_AMP] = ACTIONS(822), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_LT_LT_DASH] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_raw_string] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(822), + [anon_sym_LT_LPAREN] = ACTIONS(822), + [anon_sym_GT_LPAREN] = ACTIONS(822), + [sym_word] = ACTIONS(822), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(822), }, [253] = { - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(824), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_comment] = ACTIONS(142), }, [254] = { - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(826), - [sym_comment] = ACTIONS(52), - }, - [255] = { [sym_file_descriptor] = ACTIONS(828), [sym__concat] = ACTIONS(828), [anon_sym_PIPE] = ACTIONS(830), @@ -10467,194 +10740,255 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(830), [anon_sym_AMP] = ACTIONS(830), }, + [255] = { + [sym_string] = STATE(467), + [sym_simple_expansion] = STATE(467), + [sym_expansion] = STATE(467), + [sym_command_substitution] = STATE(467), + [sym_process_substitution] = STATE(467), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(834), + [sym_comment] = ACTIONS(52), + }, [256] = { - [anon_sym_AT] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(838), [sym_comment] = ACTIONS(52), }, [257] = { - [sym_concatenation] = STATE(463), - [sym_string] = STATE(462), - [sym_simple_expansion] = STATE(462), - [sym_expansion] = STATE(462), - [sym_command_substitution] = STATE(462), - [sym_process_substitution] = STATE(462), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(842), [sym_comment] = ACTIONS(52), }, [258] = { - [sym_file_descriptor] = ACTIONS(838), - [sym__concat] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(840), - [anon_sym_RPAREN] = ACTIONS(840), - [anon_sym_SEMI_SEMI] = ACTIONS(840), - [anon_sym_PIPE_AMP] = ACTIONS(840), - [anon_sym_AMP_AMP] = ACTIONS(840), - [anon_sym_PIPE_PIPE] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(840), - [anon_sym_GT] = ACTIONS(840), - [anon_sym_GT_GT] = ACTIONS(840), - [anon_sym_AMP_GT] = ACTIONS(840), - [anon_sym_AMP_GT_GT] = ACTIONS(840), - [anon_sym_LT_AMP] = ACTIONS(840), - [anon_sym_GT_AMP] = ACTIONS(840), - [anon_sym_LT_LT] = ACTIONS(840), - [anon_sym_LT_LT_DASH] = ACTIONS(840), - [anon_sym_DQUOTE] = ACTIONS(840), - [sym_raw_string] = ACTIONS(840), - [anon_sym_DOLLAR] = ACTIONS(840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), - [anon_sym_BQUOTE] = ACTIONS(840), - [anon_sym_LT_LPAREN] = ACTIONS(840), - [anon_sym_GT_LPAREN] = ACTIONS(840), - [sym_word] = ACTIONS(840), + [sym_file_descriptor] = ACTIONS(844), + [sym__concat] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_SEMI_SEMI] = ACTIONS(846), + [anon_sym_PIPE_AMP] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(846), + [anon_sym_PIPE_PIPE] = ACTIONS(846), + [anon_sym_LT] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_GT_GT] = ACTIONS(846), + [anon_sym_AMP_GT] = ACTIONS(846), + [anon_sym_AMP_GT_GT] = ACTIONS(846), + [anon_sym_LT_AMP] = ACTIONS(846), + [anon_sym_GT_AMP] = ACTIONS(846), + [anon_sym_LT_LT] = ACTIONS(846), + [anon_sym_LT_LT_DASH] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym_raw_string] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(846), + [anon_sym_BQUOTE] = ACTIONS(846), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_word] = ACTIONS(846), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(840), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(846), }, [259] = { - [anon_sym_AT] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(848), [sym_comment] = ACTIONS(52), }, [260] = { - [sym_concatenation] = STATE(466), - [sym_string] = STATE(465), - [sym_simple_expansion] = STATE(465), - [sym_expansion] = STATE(465), - [sym_command_substitution] = STATE(465), - [sym_process_substitution] = STATE(465), + [sym_concatenation] = STATE(474), + [sym_string] = STATE(473), + [sym_simple_expansion] = STATE(473), + [sym_expansion] = STATE(473), + [sym_command_substitution] = STATE(473), + [sym_process_substitution] = STATE(473), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(844), + [sym_raw_string] = ACTIONS(850), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(846), + [sym_word] = ACTIONS(852), [sym_comment] = ACTIONS(52), }, [261] = { - [sym_concatenation] = STATE(467), - [sym_string] = STATE(470), - [sym_array] = STATE(467), - [sym_simple_expansion] = STATE(470), - [sym_expansion] = STATE(470), - [sym_command_substitution] = STATE(470), - [sym_process_substitution] = STATE(470), - [sym__empty_value] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(852), - [sym_raw_string] = ACTIONS(854), + [sym_file_descriptor] = ACTIONS(854), + [sym__concat] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_PIPE_AMP] = ACTIONS(856), + [anon_sym_AMP_AMP] = ACTIONS(856), + [anon_sym_PIPE_PIPE] = ACTIONS(856), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_AMP_GT] = ACTIONS(856), + [anon_sym_AMP_GT_GT] = ACTIONS(856), + [anon_sym_LT_AMP] = ACTIONS(856), + [anon_sym_GT_AMP] = ACTIONS(856), + [anon_sym_LT_LT] = ACTIONS(856), + [anon_sym_LT_LT_DASH] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(856), + [sym_raw_string] = ACTIONS(856), [anon_sym_DOLLAR] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_word] = ACTIONS(866), - [sym_comment] = ACTIONS(52), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(856), + [anon_sym_BQUOTE] = ACTIONS(856), + [anon_sym_LT_LPAREN] = ACTIONS(856), + [anon_sym_GT_LPAREN] = ACTIONS(856), + [sym_word] = ACTIONS(856), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), }, [262] = { - [anon_sym_in] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(858), [sym_comment] = ACTIONS(52), }, [263] = { - [sym_do_group] = STATE(478), - [anon_sym_do] = ACTIONS(870), + [sym_concatenation] = STATE(477), + [sym_string] = STATE(476), + [sym_simple_expansion] = STATE(476), + [sym_expansion] = STATE(476), + [sym_command_substitution] = STATE(476), + [sym_process_substitution] = STATE(476), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(860), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(862), [sym_comment] = ACTIONS(52), }, [264] = { - [anon_sym_then] = ACTIONS(872), + [sym_concatenation] = STATE(478), + [sym_string] = STATE(481), + [sym_array] = STATE(478), + [sym_simple_expansion] = STATE(481), + [sym_expansion] = STATE(481), + [sym_command_substitution] = STATE(481), + [sym_process_substitution] = STATE(481), + [sym__empty_value] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(868), + [sym_raw_string] = ACTIONS(870), + [anon_sym_DOLLAR] = ACTIONS(872), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_word] = ACTIONS(882), [sym_comment] = ACTIONS(52), }, [265] = { - [aux_sym_concatenation_repeat1] = STATE(168), - [sym__concat] = ACTIONS(298), - [anon_sym_in] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), + [anon_sym_in] = ACTIONS(884), + [sym_comment] = ACTIONS(52), }, [266] = { - [anon_sym_in] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), + [sym_do_group] = STATE(489), + [anon_sym_do] = ACTIONS(886), + [sym_comment] = ACTIONS(52), }, [267] = { - [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_then] = ACTIONS(888), [sym_comment] = ACTIONS(52), }, [268] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), + [aux_sym_concatenation_repeat1] = STATE(170), + [sym__concat] = ACTIONS(300), + [anon_sym_in] = ACTIONS(890), + [anon_sym_SEMI_SEMI] = ACTIONS(892), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_LF] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), }, [269] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), + [anon_sym_in] = ACTIONS(890), + [anon_sym_SEMI_SEMI] = ACTIONS(892), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_LF] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), }, [270] = { - [sym__terminated_statement] = STATE(134), - [sym_for_statement] = STATE(485), - [sym_while_statement] = STATE(485), - [sym_if_statement] = STATE(485), - [sym_case_statement] = STATE(485), - [sym_function_definition] = STATE(485), - [sym_subshell] = STATE(485), - [sym_pipeline] = STATE(485), - [sym_list] = STATE(485), - [sym_bracket_command] = STATE(485), - [sym_command] = STATE(485), + [sym_compound_statement] = STATE(494), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(478), + [sym_comment] = ACTIONS(52), + }, + [271] = { + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_SEMI_SEMI] = ACTIONS(898), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LF] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + }, + [272] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_SEMI_SEMI] = ACTIONS(898), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LF] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + }, + [273] = { + [sym__terminated_statement] = STATE(136), + [sym_for_statement] = STATE(497), + [sym_while_statement] = STATE(497), + [sym_if_statement] = STATE(497), + [sym_case_statement] = STATE(497), + [sym_function_definition] = STATE(497), + [sym_subshell] = STATE(497), + [sym_pipeline] = STATE(497), + [sym_list] = STATE(497), + [sym_bracket_command] = STATE(497), + [sym_command] = STATE(497), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(486), + [sym_environment_variable_assignment] = STATE(498), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -10692,177 +11026,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [271] = { - [sym_concatenation] = STATE(204), - [sym_string] = STATE(203), - [sym_simple_expansion] = STATE(203), - [sym_expansion] = STATE(203), - [sym_command_substitution] = STATE(203), - [sym_process_substitution] = STATE(203), - [anon_sym_RBRACK] = ACTIONS(884), + [274] = { + [sym_concatenation] = STATE(207), + [sym_string] = STATE(206), + [sym_simple_expansion] = STATE(206), + [sym_expansion] = STATE(206), + [sym_command_substitution] = STATE(206), + [sym_process_substitution] = STATE(206), + [anon_sym_RBRACK] = ACTIONS(900), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(342), + [sym_raw_string] = ACTIONS(346), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(344), + [sym_word] = ACTIONS(348), [sym_comment] = ACTIONS(52), }, - [272] = { - [sym_concatenation] = STATE(222), - [sym_string] = STATE(221), - [sym_simple_expansion] = STATE(221), - [sym_expansion] = STATE(221), - [sym_command_substitution] = STATE(221), - [sym_process_substitution] = STATE(221), - [anon_sym_RBRACK_RBRACK] = ACTIONS(884), + [275] = { + [sym_concatenation] = STATE(225), + [sym_string] = STATE(224), + [sym_simple_expansion] = STATE(224), + [sym_expansion] = STATE(224), + [sym_command_substitution] = STATE(224), + [sym_process_substitution] = STATE(224), + [anon_sym_RBRACK_RBRACK] = ACTIONS(900), [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(360), + [sym_raw_string] = ACTIONS(364), [anon_sym_DOLLAR] = ACTIONS(102), [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), [anon_sym_BQUOTE] = ACTIONS(108), [anon_sym_LT_LPAREN] = ACTIONS(110), [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(362), + [sym_word] = ACTIONS(366), [sym_comment] = ACTIONS(52), }, - [273] = { - [sym_file_descriptor] = ACTIONS(382), - [sym__concat] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(382), - [anon_sym_PIPE_AMP] = ACTIONS(382), - [anon_sym_AMP_AMP] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_LT_LT_DASH] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_word] = ACTIONS(384), + [276] = { + [sym_file_descriptor] = ACTIONS(386), + [sym__concat] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(386), + [anon_sym_PIPE_AMP] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(386), + [anon_sym_LT_AMP] = ACTIONS(386), + [anon_sym_GT_AMP] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_LT_LT_DASH] = ACTIONS(386), + [anon_sym_DQUOTE] = ACTIONS(386), + [sym_raw_string] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), + [anon_sym_BQUOTE] = ACTIONS(386), + [anon_sym_LT_LPAREN] = ACTIONS(386), + [anon_sym_GT_LPAREN] = ACTIONS(386), + [sym_word] = ACTIONS(388), [sym_comment] = ACTIONS(52), }, - [274] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(886), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [277] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(902), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [275] = { - [sym_string] = STATE(489), - [sym_simple_expansion] = STATE(489), - [sym_expansion] = STATE(489), - [sym_command_substitution] = STATE(489), - [sym_process_substitution] = STATE(489), + [278] = { + [sym_string] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(888), + [sym_raw_string] = ACTIONS(904), [anon_sym_DOLLAR] = ACTIONS(186), [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), [anon_sym_BQUOTE] = ACTIONS(192), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(890), + [sym_word] = ACTIONS(906), [sym_comment] = ACTIONS(52), }, - [276] = { - [sym_file_descriptor] = ACTIONS(408), - [sym__concat] = ACTIONS(892), - [anon_sym_PIPE] = ACTIONS(688), - [anon_sym_RPAREN] = ACTIONS(408), - [anon_sym_PIPE_AMP] = ACTIONS(408), - [anon_sym_AMP_AMP] = ACTIONS(408), - [anon_sym_PIPE_PIPE] = ACTIONS(688), - [anon_sym_LT] = ACTIONS(688), - [anon_sym_GT] = ACTIONS(688), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_AMP_GT] = ACTIONS(688), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_LT_LT] = ACTIONS(688), - [anon_sym_LT_LT_DASH] = ACTIONS(408), - [anon_sym_DQUOTE] = ACTIONS(408), - [sym_raw_string] = ACTIONS(408), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), - [anon_sym_BQUOTE] = ACTIONS(408), - [anon_sym_LT_LPAREN] = ACTIONS(408), - [anon_sym_GT_LPAREN] = ACTIONS(408), - [sym_word] = ACTIONS(412), - [sym_comment] = ACTIONS(52), - }, - [277] = { - [sym_file_descriptor] = ACTIONS(414), - [sym__concat] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_PIPE_AMP] = ACTIONS(414), - [anon_sym_AMP_AMP] = ACTIONS(414), - [anon_sym_PIPE_PIPE] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(414), - [anon_sym_AMP_GT] = ACTIONS(426), - [anon_sym_AMP_GT_GT] = ACTIONS(414), - [anon_sym_LT_AMP] = ACTIONS(414), - [anon_sym_GT_AMP] = ACTIONS(414), - [anon_sym_LT_LT] = ACTIONS(426), - [anon_sym_LT_LT_DASH] = ACTIONS(414), - [anon_sym_DQUOTE] = ACTIONS(414), - [sym_raw_string] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), + [279] = { + [sym_file_descriptor] = ACTIONS(412), + [sym__concat] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_PIPE_AMP] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(412), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(704), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(704), + [anon_sym_LT_LT_DASH] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_raw_string] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), [sym_word] = ACTIONS(416), [sym_comment] = ACTIONS(52), }, - [278] = { + [280] = { [sym_file_descriptor] = ACTIONS(418), [sym__concat] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(430), [anon_sym_RPAREN] = ACTIONS(418), [anon_sym_PIPE_AMP] = ACTIONS(418), [anon_sym_AMP_AMP] = ACTIONS(418), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(430), [anon_sym_AMP_GT_GT] = ACTIONS(418), [anon_sym_LT_AMP] = ACTIONS(418), [anon_sym_GT_AMP] = ACTIONS(418), - [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(430), [anon_sym_LT_LT_DASH] = ACTIONS(418), [anon_sym_DQUOTE] = ACTIONS(418), [sym_raw_string] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(430), [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), [anon_sym_BQUOTE] = ACTIONS(418), @@ -10871,26 +11177,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(420), [sym_comment] = ACTIONS(52), }, - [279] = { + [281] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(706), [anon_sym_RPAREN] = ACTIONS(422), [anon_sym_PIPE_AMP] = ACTIONS(422), [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(706), [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(692), + [anon_sym_AMP_GT] = ACTIONS(706), [anon_sym_AMP_GT_GT] = ACTIONS(422), [anon_sym_LT_AMP] = ACTIONS(422), [anon_sym_GT_AMP] = ACTIONS(422), - [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(706), [anon_sym_LT_LT_DASH] = ACTIONS(422), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(706), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), @@ -10899,858 +11205,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(424), [sym_comment] = ACTIONS(52), }, - [280] = { - [sym_special_variable_name] = STATE(492), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(156), - [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), - [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_DASH] = ACTIONS(156), - [anon_sym_BANG] = ACTIONS(156), - [anon_sym_0] = ACTIONS(162), - [anon_sym__] = ACTIONS(162), - }, - [281] = { - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(900), - [anon_sym_COLON] = ACTIONS(902), - [anon_sym_COLON_QMARK] = ACTIONS(900), - [anon_sym_COLON_DASH] = ACTIONS(900), - [anon_sym_PERCENT] = ACTIONS(900), - [anon_sym_SLASH] = ACTIONS(900), - [sym_comment] = ACTIONS(52), - }, [282] = { - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(908), - [anon_sym_COLON] = ACTIONS(910), - [anon_sym_COLON_QMARK] = ACTIONS(908), - [anon_sym_COLON_DASH] = ACTIONS(908), - [anon_sym_PERCENT] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), + [sym_file_descriptor] = ACTIONS(426), + [sym__concat] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_RPAREN] = ACTIONS(426), + [anon_sym_PIPE_AMP] = ACTIONS(426), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_PIPE_PIPE] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_AMP_GT] = ACTIONS(708), + [anon_sym_AMP_GT_GT] = ACTIONS(426), + [anon_sym_LT_AMP] = ACTIONS(426), + [anon_sym_GT_AMP] = ACTIONS(426), + [anon_sym_LT_LT] = ACTIONS(708), + [anon_sym_LT_LT_DASH] = ACTIONS(426), + [anon_sym_DQUOTE] = ACTIONS(426), + [sym_raw_string] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_word] = ACTIONS(428), [sym_comment] = ACTIONS(52), }, [283] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(912), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [284] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(912), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [285] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(912), - [sym_comment] = ACTIONS(52), - }, - [286] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(912), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [287] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [288] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [289] = { - [anon_sym_RPAREN] = ACTIONS(916), - [sym_comment] = ACTIONS(52), - }, - [290] = { - [sym_for_statement] = STATE(502), - [sym_while_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_case_statement] = STATE(502), - [sym_function_definition] = STATE(502), - [sym_subshell] = STATE(502), - [sym_pipeline] = STATE(502), - [sym_list] = STATE(502), - [sym_bracket_command] = STATE(502), - [sym_command] = STATE(502), - [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(503), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [291] = { - [sym_file_descriptor] = ACTIONS(918), - [sym__concat] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_word] = ACTIONS(920), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - }, - [292] = { - [sym_for_statement] = STATE(504), - [sym_while_statement] = STATE(504), - [sym_if_statement] = STATE(504), - [sym_case_statement] = STATE(504), - [sym_function_definition] = STATE(504), - [sym_subshell] = STATE(504), - [sym_pipeline] = STATE(504), - [sym_list] = STATE(504), - [sym_bracket_command] = STATE(504), - [sym_command] = STATE(504), - [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(505), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [293] = { - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(924), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(924), - [anon_sym_LT_AMP] = ACTIONS(924), - [anon_sym_GT_AMP] = ACTIONS(924), - [sym_comment] = ACTIONS(52), - }, - [294] = { - [sym_concatenation] = STATE(514), - [sym_string] = STATE(508), - [sym_simple_expansion] = STATE(508), - [sym_expansion] = STATE(508), - [sym_command_substitution] = STATE(508), - [sym_process_substitution] = STATE(508), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_raw_string] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(934), - [anon_sym_BQUOTE] = ACTIONS(936), - [anon_sym_LT_LPAREN] = ACTIONS(938), - [anon_sym_GT_LPAREN] = ACTIONS(938), - [sym_word] = ACTIONS(940), - [sym_comment] = ACTIONS(52), - }, - [295] = { - [sym_heredoc] = STATE(517), - [sym__simple_heredoc] = ACTIONS(942), - [sym__heredoc_beginning] = ACTIONS(944), - [sym_comment] = ACTIONS(52), - }, - [296] = { - [aux_sym_concatenation_repeat1] = STATE(276), - [sym_file_descriptor] = ACTIONS(326), - [sym__concat] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(326), - [anon_sym_PIPE_AMP] = ACTIONS(326), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(326), - [anon_sym_AMP_GT] = ACTIONS(324), - [anon_sym_AMP_GT_GT] = ACTIONS(326), - [anon_sym_LT_AMP] = ACTIONS(326), - [anon_sym_GT_AMP] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_LT_LT_DASH] = ACTIONS(326), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_raw_string] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(326), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_word] = ACTIONS(328), - [sym_comment] = ACTIONS(52), - }, - [297] = { - [sym_file_descriptor] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(946), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_PIPE_AMP] = ACTIONS(546), - [anon_sym_AMP_AMP] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(946), - [anon_sym_GT] = ACTIONS(946), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(946), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(946), - [anon_sym_LT_LT_DASH] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [sym_comment] = ACTIONS(52), - }, - [298] = { - [sym_file_descriptor] = ACTIONS(326), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(326), - [anon_sym_PIPE_AMP] = ACTIONS(326), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(326), - [anon_sym_AMP_GT] = ACTIONS(324), - [anon_sym_AMP_GT_GT] = ACTIONS(326), - [anon_sym_LT_AMP] = ACTIONS(326), - [anon_sym_GT_AMP] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_LT_LT_DASH] = ACTIONS(326), - [anon_sym_DQUOTE] = ACTIONS(326), - [sym_raw_string] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(326), - [anon_sym_LT_LPAREN] = ACTIONS(326), - [anon_sym_GT_LPAREN] = ACTIONS(326), - [sym_word] = ACTIONS(328), - [sym_comment] = ACTIONS(52), - }, - [299] = { - [sym_file_redirect] = STATE(297), - [sym_heredoc_redirect] = STATE(297), - [sym_concatenation] = STATE(519), - [sym_string] = STATE(518), - [sym_simple_expansion] = STATE(518), - [sym_expansion] = STATE(518), - [sym_command_substitution] = STATE(518), - [sym_process_substitution] = STATE(518), - [aux_sym_command_repeat2] = STATE(520), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_PIPE_AMP] = ACTIONS(950), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(954), - [sym_comment] = ACTIONS(52), - }, - [300] = { - [sym_file_redirect] = STATE(521), - [sym_heredoc_redirect] = STATE(521), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_PIPE_AMP] = ACTIONS(950), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_PIPE_PIPE] = ACTIONS(950), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), - [anon_sym_BQUOTE] = ACTIONS(950), - [sym_comment] = ACTIONS(52), - }, - [301] = { - [sym_file_redirect] = STATE(297), - [sym_heredoc_redirect] = STATE(297), - [sym_concatenation] = STATE(298), - [sym_string] = STATE(296), - [sym_simple_expansion] = STATE(296), - [sym_expansion] = STATE(296), - [sym_command_substitution] = STATE(296), - [sym_process_substitution] = STATE(296), - [aux_sym_for_statement_repeat1] = STATE(522), - [aux_sym_command_repeat2] = STATE(520), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_PIPE_AMP] = ACTIONS(950), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(496), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(498), - [sym_comment] = ACTIONS(52), - }, - [302] = { - [sym_for_statement] = STATE(502), - [sym_while_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_case_statement] = STATE(502), - [sym_function_definition] = STATE(502), - [sym_subshell] = STATE(502), - [sym_pipeline] = STATE(502), - [sym_list] = STATE(502), - [sym_bracket_command] = STATE(502), - [sym_command] = STATE(502), - [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(523), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(119), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [303] = { - [sym_for_statement] = STATE(524), - [sym_while_statement] = STATE(524), - [sym_if_statement] = STATE(524), - [sym_case_statement] = STATE(524), - [sym_function_definition] = STATE(524), - [sym_subshell] = STATE(524), - [sym_pipeline] = STATE(524), - [sym_list] = STATE(524), - [sym_bracket_command] = STATE(524), - [sym_command] = STATE(524), - [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(525), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(119), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [304] = { - [sym_file_redirect] = STATE(297), - [sym_heredoc_redirect] = STATE(297), - [sym_concatenation] = STATE(519), - [sym_string] = STATE(518), - [sym_simple_expansion] = STATE(518), - [sym_expansion] = STATE(518), - [sym_command_substitution] = STATE(518), - [sym_process_substitution] = STATE(518), - [aux_sym_command_repeat2] = STATE(520), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_PIPE_AMP] = ACTIONS(950), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(950), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(954), - [sym_comment] = ACTIONS(52), - }, - [305] = { - [sym_file_redirect] = STATE(297), - [sym_heredoc_redirect] = STATE(297), - [sym_concatenation] = STATE(298), - [sym_string] = STATE(296), - [sym_simple_expansion] = STATE(296), - [sym_expansion] = STATE(296), - [sym_command_substitution] = STATE(296), - [sym_process_substitution] = STATE(296), - [aux_sym_for_statement_repeat1] = STATE(526), - [aux_sym_command_repeat2] = STATE(520), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_PIPE_AMP] = ACTIONS(950), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(496), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(950), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(498), - [sym_comment] = ACTIONS(52), - }, - [306] = { - [sym_file_descriptor] = ACTIONS(956), - [sym__concat] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(958), - [anon_sym_RPAREN] = ACTIONS(958), - [anon_sym_SEMI_SEMI] = ACTIONS(958), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(958), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), - [anon_sym_GT_GT] = ACTIONS(958), - [anon_sym_AMP_GT] = ACTIONS(958), - [anon_sym_AMP_GT_GT] = ACTIONS(958), - [anon_sym_LT_AMP] = ACTIONS(958), - [anon_sym_GT_AMP] = ACTIONS(958), - [anon_sym_LT_LT] = ACTIONS(958), - [anon_sym_LT_LT_DASH] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_raw_string] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(958), - [anon_sym_LT_LPAREN] = ACTIONS(958), - [anon_sym_GT_LPAREN] = ACTIONS(958), - [sym_word] = ACTIONS(958), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - }, - [307] = { - [sym_compound_statement] = STATE(528), - [anon_sym_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(52), - }, - [308] = { - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_SEMI_SEMI] = ACTIONS(962), - [anon_sym_PIPE_AMP] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(962), - [anon_sym_PIPE_PIPE] = ACTIONS(962), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - }, - [309] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_SEMI_SEMI] = ACTIONS(962), - [anon_sym_PIPE_AMP] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(962), - [anon_sym_PIPE_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - }, - [310] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_SEMI_SEMI] = ACTIONS(964), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LF] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - }, - [311] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_SEMI_SEMI] = ACTIONS(964), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LF] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - }, - [312] = { - [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), - [anon_sym_DQUOTE] = ACTIONS(526), - [sym_raw_string] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(534), - [anon_sym_BQUOTE] = ACTIONS(536), - [anon_sym_LT_LPAREN] = ACTIONS(538), - [anon_sym_GT_LPAREN] = ACTIONS(538), - [sym_word] = ACTIONS(968), - [sym_comment] = ACTIONS(52), - }, - [313] = { - [sym_simple_expansion] = STATE(78), - [sym_expansion] = STATE(78), - [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(532), - [anon_sym_DQUOTE] = ACTIONS(970), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), - [anon_sym_DOLLAR] = ACTIONS(134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), - [anon_sym_BQUOTE] = ACTIONS(140), - [sym_comment] = ACTIONS(142), - }, - [314] = { - [aux_sym_concatenation_repeat1] = STATE(534), - [sym_file_descriptor] = ACTIONS(366), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_SEMI_SEMI] = ACTIONS(974), - [anon_sym_PIPE_AMP] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_AMP_GT] = ACTIONS(974), - [anon_sym_AMP_GT_GT] = ACTIONS(974), - [anon_sym_LT_AMP] = ACTIONS(974), - [anon_sym_GT_AMP] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_LT_LT_DASH] = ACTIONS(974), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - }, - [315] = { - [sym_special_variable_name] = STATE(537), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(976), - [anon_sym_AT] = ACTIONS(976), - [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_0] = ACTIONS(980), - [anon_sym__] = ACTIONS(980), - }, - [316] = { - [sym_special_variable_name] = STATE(540), + [sym_special_variable_name] = STATE(504), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(984), + [sym_simple_variable_name] = ACTIONS(910), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -11758,7 +11255,590 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [317] = { + [284] = { + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_EQ] = ACTIONS(916), + [anon_sym_COLON] = ACTIONS(918), + [anon_sym_COLON_QMARK] = ACTIONS(916), + [anon_sym_COLON_DASH] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(916), + [anon_sym_SLASH] = ACTIONS(916), + [sym_comment] = ACTIONS(52), + }, + [285] = { + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(924), + [anon_sym_COLON] = ACTIONS(926), + [anon_sym_COLON_QMARK] = ACTIONS(924), + [anon_sym_COLON_DASH] = ACTIONS(924), + [anon_sym_PERCENT] = ACTIONS(924), + [anon_sym_SLASH] = ACTIONS(924), + [sym_comment] = ACTIONS(52), + }, + [286] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [287] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [288] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(928), + [sym_comment] = ACTIONS(52), + }, + [289] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(928), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [290] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [291] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [292] = { + [anon_sym_RPAREN] = ACTIONS(932), + [sym_comment] = ACTIONS(52), + }, + [293] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_bracket_command] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(25), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(515), + [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_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), + [sym_comment] = ACTIONS(52), + }, + [294] = { + [sym_file_redirect] = STATE(518), + [sym_file_descriptor] = ACTIONS(936), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_PIPE_AMP] = ACTIONS(940), + [anon_sym_AMP_AMP] = ACTIONS(940), + [anon_sym_PIPE_PIPE] = ACTIONS(940), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(944), + [anon_sym_LT_AMP] = ACTIONS(944), + [anon_sym_GT_AMP] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(940), + [sym_comment] = ACTIONS(52), + }, + [295] = { + [sym_for_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_function_definition] = STATE(519), + [sym_subshell] = STATE(519), + [sym_pipeline] = STATE(519), + [sym_list] = STATE(519), + [sym_bracket_command] = STATE(519), + [sym_command] = STATE(519), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(520), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [296] = { + [sym_file_descriptor] = ACTIONS(946), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_SEMI_SEMI] = ACTIONS(948), + [anon_sym_PIPE_AMP] = ACTIONS(948), + [anon_sym_AMP_AMP] = ACTIONS(948), + [anon_sym_PIPE_PIPE] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(948), + [anon_sym_GT] = ACTIONS(948), + [anon_sym_GT_GT] = ACTIONS(948), + [anon_sym_AMP_GT] = ACTIONS(948), + [anon_sym_AMP_GT_GT] = ACTIONS(948), + [anon_sym_LT_AMP] = ACTIONS(948), + [anon_sym_GT_AMP] = ACTIONS(948), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_LT_LT_DASH] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym_raw_string] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(948), + [anon_sym_BQUOTE] = ACTIONS(948), + [anon_sym_LT_LPAREN] = ACTIONS(948), + [anon_sym_GT_LPAREN] = ACTIONS(948), + [sym_word] = ACTIONS(948), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + }, + [297] = { + [sym_for_statement] = STATE(521), + [sym_while_statement] = STATE(521), + [sym_if_statement] = STATE(521), + [sym_case_statement] = STATE(521), + [sym_function_definition] = STATE(521), + [sym_subshell] = STATE(521), + [sym_pipeline] = STATE(521), + [sym_list] = STATE(521), + [sym_bracket_command] = STATE(521), + [sym_command] = STATE(521), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(522), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [298] = { + [anon_sym_LT] = ACTIONS(950), + [anon_sym_GT] = ACTIONS(950), + [anon_sym_GT_GT] = ACTIONS(952), + [anon_sym_AMP_GT] = ACTIONS(950), + [anon_sym_AMP_GT_GT] = ACTIONS(952), + [anon_sym_LT_AMP] = ACTIONS(952), + [anon_sym_GT_AMP] = ACTIONS(952), + [sym_comment] = ACTIONS(52), + }, + [299] = { + [sym_concatenation] = STATE(531), + [sym_string] = STATE(525), + [sym_simple_expansion] = STATE(525), + [sym_expansion] = STATE(525), + [sym_command_substitution] = STATE(525), + [sym_process_substitution] = STATE(525), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_raw_string] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(964), + [anon_sym_LT_LPAREN] = ACTIONS(966), + [anon_sym_GT_LPAREN] = ACTIONS(966), + [sym_word] = ACTIONS(968), + [sym_comment] = ACTIONS(52), + }, + [300] = { + [sym_heredoc] = STATE(534), + [sym__simple_heredoc] = ACTIONS(970), + [sym__heredoc_beginning] = ACTIONS(972), + [sym_comment] = ACTIONS(52), + }, + [301] = { + [aux_sym_concatenation_repeat1] = STATE(279), + [sym_file_descriptor] = ACTIONS(330), + [sym__concat] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(328), + [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_PIPE_AMP] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(330), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(330), + [anon_sym_LT_AMP] = ACTIONS(330), + [anon_sym_GT_AMP] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(328), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_word] = ACTIONS(332), + [sym_comment] = ACTIONS(52), + }, + [302] = { + [sym_file_descriptor] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(560), + [anon_sym_PIPE_AMP] = ACTIONS(560), + [anon_sym_AMP_AMP] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(974), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_AMP_GT] = ACTIONS(974), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(560), + [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_BQUOTE] = ACTIONS(560), + [sym_comment] = ACTIONS(52), + }, + [303] = { + [sym_file_descriptor] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(328), + [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_PIPE_AMP] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(330), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(330), + [anon_sym_LT_AMP] = ACTIONS(330), + [anon_sym_GT_AMP] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(328), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_word] = ACTIONS(332), + [sym_comment] = ACTIONS(52), + }, + [304] = { + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(535), + [sym_simple_expansion] = STATE(535), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), + [sym_process_substitution] = STATE(535), + [aux_sym_command_repeat2] = STATE(537), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(982), + [sym_comment] = ACTIONS(52), + }, + [305] = { + [sym_file_redirect] = STATE(538), + [sym_heredoc_redirect] = STATE(538), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_BQUOTE] = ACTIONS(978), + [sym_comment] = ACTIONS(52), + }, + [306] = { + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(303), + [sym_string] = STATE(301), + [sym_simple_expansion] = STATE(301), + [sym_expansion] = STATE(301), + [sym_command_substitution] = STATE(301), + [sym_process_substitution] = STATE(301), + [aux_sym_for_statement_repeat1] = STATE(539), + [aux_sym_command_repeat2] = STATE(537), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(502), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(504), + [sym_comment] = ACTIONS(52), + }, + [307] = { + [sym_for_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_function_definition] = STATE(519), + [sym_subshell] = STATE(519), + [sym_pipeline] = STATE(519), + [sym_list] = STATE(519), + [sym_bracket_command] = STATE(519), + [sym_command] = STATE(519), + [sym_command_name] = STATE(117), + [sym_environment_variable_assignment] = STATE(540), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(119), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [308] = { [sym_for_statement] = STATE(541), [sym_while_statement] = STATE(541), [sym_if_statement] = STATE(541), @@ -11769,58 +11849,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(541), [sym_bracket_command] = STATE(541), [sym_command] = STATE(541), - [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(542), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [318] = { - [sym_for_statement] = STATE(543), - [sym_while_statement] = STATE(543), - [sym_if_statement] = STATE(543), - [sym_case_statement] = STATE(543), - [sym_function_definition] = STATE(543), - [sym_subshell] = STATE(543), - [sym_pipeline] = STATE(543), - [sym_list] = STATE(543), - [sym_bracket_command] = STATE(543), - [sym_command] = STATE(543), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(544), + [sym_environment_variable_assignment] = STATE(542), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -11858,19 +11888,406 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, + [309] = { + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(535), + [sym_simple_expansion] = STATE(535), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), + [sym_process_substitution] = STATE(535), + [aux_sym_command_repeat2] = STATE(537), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(982), + [sym_comment] = ACTIONS(52), + }, + [310] = { + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(303), + [sym_string] = STATE(301), + [sym_simple_expansion] = STATE(301), + [sym_expansion] = STATE(301), + [sym_command_substitution] = STATE(301), + [sym_process_substitution] = STATE(301), + [aux_sym_for_statement_repeat1] = STATE(543), + [aux_sym_command_repeat2] = STATE(537), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(502), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(504), + [sym_comment] = ACTIONS(52), + }, + [311] = { + [sym_file_descriptor] = ACTIONS(984), + [sym__concat] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_SEMI_SEMI] = ACTIONS(986), + [anon_sym_PIPE_AMP] = ACTIONS(986), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(986), + [anon_sym_GT_GT] = ACTIONS(986), + [anon_sym_AMP_GT] = ACTIONS(986), + [anon_sym_AMP_GT_GT] = ACTIONS(986), + [anon_sym_LT_AMP] = ACTIONS(986), + [anon_sym_GT_AMP] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(986), + [anon_sym_LT_LT_DASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_raw_string] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(986), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), + [anon_sym_BQUOTE] = ACTIONS(986), + [anon_sym_LT_LPAREN] = ACTIONS(986), + [anon_sym_GT_LPAREN] = ACTIONS(986), + [sym_word] = ACTIONS(986), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + }, + [312] = { + [sym_compound_statement] = STATE(544), + [anon_sym_LBRACE] = ACTIONS(318), + [sym_comment] = ACTIONS(52), + }, + [313] = { + [sym_file_descriptor] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_SEMI_SEMI] = ACTIONS(990), + [anon_sym_PIPE_AMP] = ACTIONS(990), + [anon_sym_AMP_AMP] = ACTIONS(990), + [anon_sym_PIPE_PIPE] = ACTIONS(990), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_LF] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + }, + [314] = { + [sym__terminated_statement] = STATE(136), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_bracket_command] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(25), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [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_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), + [sym_comment] = ACTIONS(52), + }, + [315] = { + [anon_sym_LT] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(996), + [anon_sym_AMP_GT] = ACTIONS(994), + [anon_sym_AMP_GT_GT] = ACTIONS(996), + [anon_sym_LT_AMP] = ACTIONS(996), + [anon_sym_GT_AMP] = ACTIONS(996), + [sym_comment] = ACTIONS(52), + }, + [316] = { + [sym_concatenation] = STATE(554), + [sym_string] = STATE(548), + [sym_simple_expansion] = STATE(548), + [sym_expansion] = STATE(548), + [sym_command_substitution] = STATE(548), + [sym_process_substitution] = STATE(548), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_LT_LPAREN] = ACTIONS(1010), + [anon_sym_GT_LPAREN] = ACTIONS(1010), + [sym_word] = ACTIONS(1012), + [sym_comment] = ACTIONS(52), + }, + [317] = { + [anon_sym_PIPE] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_SEMI_SEMI] = ACTIONS(684), + [anon_sym_PIPE_AMP] = ACTIONS(684), + [anon_sym_AMP_AMP] = ACTIONS(684), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(684), + [anon_sym_LF] = ACTIONS(684), + [anon_sym_AMP] = ACTIONS(684), + }, + [318] = { + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_SEMI_SEMI] = ACTIONS(1014), + [anon_sym_PIPE_AMP] = ACTIONS(1014), + [anon_sym_AMP_AMP] = ACTIONS(1014), + [anon_sym_PIPE_PIPE] = ACTIONS(1014), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + }, [319] = { - [sym_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_bracket_command] = STATE(545), - [sym_command] = STATE(545), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_SEMI_SEMI] = ACTIONS(1014), + [anon_sym_PIPE_AMP] = ACTIONS(1014), + [anon_sym_AMP_AMP] = ACTIONS(1014), + [anon_sym_PIPE_PIPE] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + }, + [320] = { + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_SEMI_SEMI] = ACTIONS(1016), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(1016), + [anon_sym_PIPE_PIPE] = ACTIONS(1016), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_AMP] = ACTIONS(1016), + }, + [321] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_SEMI_SEMI] = ACTIONS(1016), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(1016), + [anon_sym_PIPE_PIPE] = ACTIONS(1016), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_AMP] = ACTIONS(1016), + }, + [322] = { + [sym_concatenation] = STATE(556), + [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(540), + [sym_raw_string] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_LT_LPAREN] = ACTIONS(552), + [anon_sym_GT_LPAREN] = ACTIONS(552), + [sym_word] = ACTIONS(1020), + [sym_comment] = ACTIONS(52), + }, + [323] = { + [sym_simple_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [aux_sym_string_repeat1] = STATE(558), + [anon_sym_DQUOTE] = ACTIONS(1022), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [sym_comment] = ACTIONS(142), + }, + [324] = { + [aux_sym_concatenation_repeat1] = STATE(560), + [sym_file_descriptor] = ACTIONS(370), + [sym__concat] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_SEMI_SEMI] = ACTIONS(1026), + [anon_sym_PIPE_AMP] = ACTIONS(1026), + [anon_sym_AMP_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1026), + [anon_sym_GT_GT] = ACTIONS(1026), + [anon_sym_AMP_GT] = ACTIONS(1026), + [anon_sym_AMP_GT_GT] = ACTIONS(1026), + [anon_sym_LT_AMP] = ACTIONS(1026), + [anon_sym_GT_AMP] = ACTIONS(1026), + [anon_sym_LT_LT] = ACTIONS(1026), + [anon_sym_LT_LT_DASH] = ACTIONS(1026), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + }, + [325] = { + [sym_special_variable_name] = STATE(563), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(1028), + [anon_sym_AT] = ACTIONS(1028), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_QMARK] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_0] = ACTIONS(1032), + [anon_sym__] = ACTIONS(1032), + }, + [326] = { + [sym_special_variable_name] = STATE(566), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(1034), + [anon_sym_AT] = ACTIONS(156), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [327] = { + [sym_for_statement] = STATE(567), + [sym_while_statement] = STATE(567), + [sym_if_statement] = STATE(567), + [sym_case_statement] = STATE(567), + [sym_function_definition] = STATE(567), + [sym_subshell] = STATE(567), + [sym_pipeline] = STATE(567), + [sym_list] = STATE(567), + [sym_bracket_command] = STATE(567), + [sym_command] = STATE(567), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(546), + [sym_environment_variable_assignment] = STATE(568), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -11908,336 +12325,436 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [320] = { - [sym_file_descriptor] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_SEMI_SEMI] = ACTIONS(974), - [anon_sym_PIPE_AMP] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_AMP_GT] = ACTIONS(974), - [anon_sym_AMP_GT_GT] = ACTIONS(974), - [anon_sym_LT_AMP] = ACTIONS(974), - [anon_sym_GT_AMP] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_LT_LT_DASH] = ACTIONS(974), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - }, - [321] = { - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_SEMI_SEMI] = ACTIONS(988), - [anon_sym_PIPE_AMP] = ACTIONS(988), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_PIPE_PIPE] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(988), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(988), - [anon_sym_LT_AMP] = ACTIONS(988), - [anon_sym_GT_AMP] = ACTIONS(988), - [anon_sym_LT_LT] = ACTIONS(988), - [anon_sym_LT_LT_DASH] = ACTIONS(988), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_LF] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - }, - [322] = { - [sym_simple_expansion] = STATE(547), - [sym_expansion] = STATE(547), - [aux_sym_heredoc_repeat1] = STATE(551), - [sym__heredoc_middle] = ACTIONS(990), - [sym__heredoc_end] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(996), + [328] = { + [sym_for_statement] = STATE(569), + [sym_while_statement] = STATE(569), + [sym_if_statement] = STATE(569), + [sym_case_statement] = STATE(569), + [sym_function_definition] = STATE(569), + [sym_subshell] = STATE(569), + [sym_pipeline] = STATE(569), + [sym_list] = STATE(569), + [sym_bracket_command] = STATE(569), + [sym_command] = STATE(569), + [sym_command_name] = STATE(117), + [sym_environment_variable_assignment] = STATE(570), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(119), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [323] = { - [sym_file_descriptor] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_SEMI_SEMI] = ACTIONS(1000), - [anon_sym_PIPE_AMP] = ACTIONS(1000), - [anon_sym_AMP_AMP] = ACTIONS(1000), - [anon_sym_PIPE_PIPE] = ACTIONS(1000), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_GT] = ACTIONS(1000), - [anon_sym_AMP_GT] = ACTIONS(1000), - [anon_sym_AMP_GT_GT] = ACTIONS(1000), - [anon_sym_LT_AMP] = ACTIONS(1000), - [anon_sym_GT_AMP] = ACTIONS(1000), - [anon_sym_LT_LT] = ACTIONS(1000), - [anon_sym_LT_LT_DASH] = ACTIONS(1000), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LF] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), + [329] = { + [sym_for_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_function_definition] = STATE(571), + [sym_subshell] = STATE(571), + [sym_pipeline] = STATE(571), + [sym_list] = STATE(571), + [sym_bracket_command] = STATE(571), + [sym_command] = STATE(571), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(572), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), }, - [324] = { + [330] = { + [sym_file_descriptor] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_SEMI_SEMI] = ACTIONS(1026), + [anon_sym_PIPE_AMP] = ACTIONS(1026), + [anon_sym_AMP_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1026), + [anon_sym_GT_GT] = ACTIONS(1026), + [anon_sym_AMP_GT] = ACTIONS(1026), + [anon_sym_AMP_GT_GT] = ACTIONS(1026), + [anon_sym_LT_AMP] = ACTIONS(1026), + [anon_sym_GT_AMP] = ACTIONS(1026), + [anon_sym_LT_LT] = ACTIONS(1026), + [anon_sym_LT_LT_DASH] = ACTIONS(1026), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + }, + [331] = { + [sym_file_descriptor] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_SEMI_SEMI] = ACTIONS(1040), + [anon_sym_PIPE_AMP] = ACTIONS(1040), + [anon_sym_AMP_AMP] = ACTIONS(1040), + [anon_sym_PIPE_PIPE] = ACTIONS(1040), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_AMP_GT] = ACTIONS(1040), + [anon_sym_AMP_GT_GT] = ACTIONS(1040), + [anon_sym_LT_AMP] = ACTIONS(1040), + [anon_sym_GT_AMP] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_LT_LT_DASH] = ACTIONS(1040), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_LF] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1040), + }, + [332] = { + [sym_simple_expansion] = STATE(573), + [sym_expansion] = STATE(573), + [aux_sym_heredoc_repeat1] = STATE(577), + [sym__heredoc_middle] = ACTIONS(1042), + [sym__heredoc_end] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [sym_comment] = ACTIONS(52), + }, + [333] = { + [sym_file_descriptor] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_SEMI_SEMI] = ACTIONS(1052), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1052), + [anon_sym_GT] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1052), + [anon_sym_AMP_GT] = ACTIONS(1052), + [anon_sym_AMP_GT_GT] = ACTIONS(1052), + [anon_sym_LT_AMP] = ACTIONS(1052), + [anon_sym_GT_AMP] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_LT_LT_DASH] = ACTIONS(1052), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_LF] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1052), + }, + [334] = { [aux_sym_concatenation_repeat1] = STATE(85), - [sym_file_descriptor] = ACTIONS(720), + [sym_file_descriptor] = ACTIONS(736), [sym__concat] = ACTIONS(146), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_SEMI_SEMI] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_AMP_GT] = ACTIONS(722), - [anon_sym_AMP_GT_GT] = ACTIONS(722), - [anon_sym_LT_AMP] = ACTIONS(722), - [anon_sym_GT_AMP] = ACTIONS(722), - [anon_sym_LT_LT] = ACTIONS(722), - [anon_sym_LT_LT_DASH] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_raw_string] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), - [anon_sym_BQUOTE] = ACTIONS(722), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), - [sym_word] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_AMP_GT] = ACTIONS(738), + [anon_sym_AMP_GT_GT] = ACTIONS(738), + [anon_sym_LT_AMP] = ACTIONS(738), + [anon_sym_GT_AMP] = ACTIONS(738), + [anon_sym_LT_LT] = ACTIONS(738), + [anon_sym_LT_LT_DASH] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [sym_raw_string] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), + [sym_word] = ACTIONS(738), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), }, - [325] = { - [sym_file_descriptor] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_SEMI_SEMI] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_AMP_GT] = ACTIONS(722), - [anon_sym_AMP_GT_GT] = ACTIONS(722), - [anon_sym_LT_AMP] = ACTIONS(722), - [anon_sym_GT_AMP] = ACTIONS(722), - [anon_sym_LT_LT] = ACTIONS(722), - [anon_sym_LT_LT_DASH] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_raw_string] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), - [anon_sym_BQUOTE] = ACTIONS(722), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), - [sym_word] = ACTIONS(722), + [335] = { + [sym_file_descriptor] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_AMP_GT] = ACTIONS(738), + [anon_sym_AMP_GT_GT] = ACTIONS(738), + [anon_sym_LT_AMP] = ACTIONS(738), + [anon_sym_GT_AMP] = ACTIONS(738), + [anon_sym_LT_LT] = ACTIONS(738), + [anon_sym_LT_LT_DASH] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [sym_raw_string] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), + [sym_word] = ACTIONS(738), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), }, - [326] = { - [sym_file_redirect] = STATE(327), - [sym_heredoc_redirect] = STATE(327), - [sym_file_descriptor] = ACTIONS(214), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_SEMI_SEMI] = ACTIONS(1002), - [anon_sym_PIPE_AMP] = ACTIONS(1002), - [anon_sym_AMP_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(1002), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_AMP_GT] = ACTIONS(218), - [anon_sym_AMP_GT_GT] = ACTIONS(218), - [anon_sym_LT_AMP] = ACTIONS(218), - [anon_sym_GT_AMP] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(220), - [anon_sym_LT_LT_DASH] = ACTIONS(220), + [336] = { + [sym_file_redirect] = STATE(337), + [sym_heredoc_redirect] = STATE(337), + [sym_file_descriptor] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_SEMI_SEMI] = ACTIONS(1054), + [anon_sym_PIPE_AMP] = ACTIONS(1054), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_GT_GT] = ACTIONS(220), + [anon_sym_AMP_GT] = ACTIONS(220), + [anon_sym_AMP_GT_GT] = ACTIONS(220), + [anon_sym_LT_AMP] = ACTIONS(220), + [anon_sym_GT_AMP] = ACTIONS(220), + [anon_sym_LT_LT] = ACTIONS(222), + [anon_sym_LT_LT_DASH] = ACTIONS(222), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_LF] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), }, - [327] = { - [sym_file_descriptor] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_SEMI_SEMI] = ACTIONS(1006), - [anon_sym_PIPE_AMP] = ACTIONS(1006), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(1006), - [anon_sym_AMP_GT] = ACTIONS(1006), - [anon_sym_AMP_GT_GT] = ACTIONS(1006), - [anon_sym_LT_AMP] = ACTIONS(1006), - [anon_sym_GT_AMP] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1006), - [anon_sym_LT_LT_DASH] = ACTIONS(1006), + [337] = { + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_RPAREN] = ACTIONS(1058), + [anon_sym_SEMI_SEMI] = ACTIONS(1058), + [anon_sym_PIPE_AMP] = ACTIONS(1058), + [anon_sym_AMP_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_AMP_GT] = ACTIONS(1058), + [anon_sym_AMP_GT_GT] = ACTIONS(1058), + [anon_sym_LT_AMP] = ACTIONS(1058), + [anon_sym_GT_AMP] = ACTIONS(1058), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_LT_LT_DASH] = ACTIONS(1058), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_LF] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), }, - [328] = { - [sym_concatenation] = STATE(552), - [sym_string] = STATE(554), - [sym_array] = STATE(552), - [sym_simple_expansion] = STATE(554), - [sym_expansion] = STATE(554), - [sym_command_substitution] = STATE(554), - [sym_process_substitution] = STATE(554), - [sym__empty_value] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), + [338] = { + [sym_concatenation] = STATE(578), + [sym_string] = STATE(580), + [sym_array] = STATE(578), + [sym_simple_expansion] = STATE(580), + [sym_expansion] = STATE(580), + [sym_command_substitution] = STATE(580), + [sym_process_substitution] = STATE(580), + [sym__empty_value] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1062), [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(1012), + [sym_raw_string] = ACTIONS(1064), [anon_sym_DOLLAR] = ACTIONS(118), [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), [anon_sym_BQUOTE] = ACTIONS(124), [anon_sym_LT_LPAREN] = ACTIONS(126), [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(1014), + [sym_word] = ACTIONS(1066), [sym_comment] = ACTIONS(52), }, - [329] = { - [sym_file_redirect] = STATE(130), - [sym_heredoc_redirect] = STATE(130), - [sym_concatenation] = STATE(325), - [sym_string] = STATE(324), - [sym_simple_expansion] = STATE(324), - [sym_expansion] = STATE(324), - [sym_command_substitution] = STATE(324), - [sym_process_substitution] = STATE(324), - [aux_sym_command_repeat2] = STATE(555), - [sym_file_descriptor] = ACTIONS(214), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_SEMI_SEMI] = ACTIONS(1002), - [anon_sym_PIPE_AMP] = ACTIONS(1002), - [anon_sym_AMP_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(1002), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_AMP_GT] = ACTIONS(218), - [anon_sym_AMP_GT_GT] = ACTIONS(218), - [anon_sym_LT_AMP] = ACTIONS(218), - [anon_sym_GT_AMP] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(220), - [anon_sym_LT_LT_DASH] = ACTIONS(220), - [anon_sym_DQUOTE] = ACTIONS(222), - [sym_raw_string] = ACTIONS(552), - [anon_sym_DOLLAR] = ACTIONS(226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(230), - [anon_sym_BQUOTE] = ACTIONS(232), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_word] = ACTIONS(552), + [339] = { + [sym_file_redirect] = STATE(132), + [sym_heredoc_redirect] = STATE(132), + [sym_concatenation] = STATE(335), + [sym_string] = STATE(334), + [sym_simple_expansion] = STATE(334), + [sym_expansion] = STATE(334), + [sym_command_substitution] = STATE(334), + [sym_process_substitution] = STATE(334), + [aux_sym_command_repeat2] = STATE(581), + [sym_file_descriptor] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_SEMI_SEMI] = ACTIONS(1054), + [anon_sym_PIPE_AMP] = ACTIONS(1054), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_GT_GT] = ACTIONS(220), + [anon_sym_AMP_GT] = ACTIONS(220), + [anon_sym_AMP_GT_GT] = ACTIONS(220), + [anon_sym_LT_AMP] = ACTIONS(220), + [anon_sym_GT_AMP] = ACTIONS(220), + [anon_sym_LT_LT] = ACTIONS(222), + [anon_sym_LT_LT_DASH] = ACTIONS(222), + [anon_sym_DQUOTE] = ACTIONS(224), + [sym_raw_string] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(232), + [anon_sym_BQUOTE] = ACTIONS(234), + [anon_sym_LT_LPAREN] = ACTIONS(236), + [anon_sym_GT_LPAREN] = ACTIONS(236), + [sym_word] = ACTIONS(566), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_LF] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), }, - [330] = { - [sym__concat] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_RPAREN] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(382), + [340] = { + [sym__concat] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_RPAREN] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(386), [sym_comment] = ACTIONS(52), }, - [331] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(1016), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [341] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(1068), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [332] = { - [sym_string] = STATE(557), - [sym_simple_expansion] = STATE(557), - [sym_expansion] = STATE(557), - [sym_command_substitution] = STATE(557), - [sym_process_substitution] = STATE(557), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1020), + [342] = { + [sym_string] = STATE(583), + [sym_simple_expansion] = STATE(583), + [sym_expansion] = STATE(583), + [sym_command_substitution] = STATE(583), + [sym_process_substitution] = STATE(583), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1072), [sym_comment] = ACTIONS(52), }, - [333] = { - [anon_sym_EQ] = ACTIONS(1022), + [343] = { + [anon_sym_EQ] = ACTIONS(1074), [sym_comment] = ACTIONS(52), }, - [334] = { - [sym__concat] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(408), - [anon_sym_RBRACK] = ACTIONS(408), + [344] = { + [sym__concat] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(412), + [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_RBRACK] = ACTIONS(412), [sym_comment] = ACTIONS(52), }, - [335] = { - [sym__concat] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(414), - [sym_comment] = ACTIONS(52), - }, - [336] = { + [345] = { [sym__concat] = ACTIONS(418), [anon_sym_PIPE] = ACTIONS(418), [anon_sym_RPAREN] = ACTIONS(418), [anon_sym_RBRACK] = ACTIONS(418), [sym_comment] = ACTIONS(52), }, - [337] = { + [346] = { [sym__concat] = ACTIONS(422), [anon_sym_PIPE] = ACTIONS(422), [anon_sym_RPAREN] = ACTIONS(422), [anon_sym_RBRACK] = ACTIONS(422), [sym_comment] = ACTIONS(52), }, - [338] = { - [sym_special_variable_name] = STATE(560), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [347] = { + [sym__concat] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_RPAREN] = ACTIONS(426), + [anon_sym_RBRACK] = ACTIONS(426), + [sym_comment] = ACTIONS(52), + }, + [348] = { + [sym_special_variable_name] = STATE(586), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1026), + [sym_simple_variable_name] = ACTIONS(1078), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -12245,264 +12762,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [339] = { - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_COLON] = ACTIONS(1034), - [anon_sym_COLON_QMARK] = ACTIONS(1032), - [anon_sym_COLON_DASH] = ACTIONS(1032), - [anon_sym_PERCENT] = ACTIONS(1032), - [anon_sym_SLASH] = ACTIONS(1032), - [sym_comment] = ACTIONS(52), - }, - [340] = { - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_COLON] = ACTIONS(1042), - [anon_sym_COLON_QMARK] = ACTIONS(1040), - [anon_sym_COLON_DASH] = ACTIONS(1040), - [anon_sym_PERCENT] = ACTIONS(1040), - [anon_sym_SLASH] = ACTIONS(1040), - [sym_comment] = ACTIONS(52), - }, - [341] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [342] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [343] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(1044), - [sym_comment] = ACTIONS(52), - }, - [344] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(1044), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [345] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [346] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [347] = { - [sym_file_descriptor] = 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(142), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_LF] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - }, - [348] = { - [anon_sym_RPAREN] = ACTIONS(1052), - [sym_word] = ACTIONS(1054), - [sym_comment] = ACTIONS(52), - }, [349] = { - [anon_sym_RPAREN] = ACTIONS(1056), - [sym_word] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_COLON] = ACTIONS(1086), + [anon_sym_COLON_QMARK] = ACTIONS(1084), + [anon_sym_COLON_DASH] = ACTIONS(1084), + [anon_sym_PERCENT] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1084), [sym_comment] = ACTIONS(52), }, [350] = { - [sym_file_descriptor] = ACTIONS(382), - [sym__concat] = ACTIONS(382), - [sym_variable_name] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_SEMI_SEMI] = ACTIONS(384), - [anon_sym_PIPE_AMP] = ACTIONS(384), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(384), - [anon_sym_LT_AMP] = ACTIONS(384), - [anon_sym_GT_AMP] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [sym_raw_string] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(384), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(384), - [anon_sym_BQUOTE] = ACTIONS(384), - [anon_sym_LT_LPAREN] = ACTIONS(384), - [anon_sym_GT_LPAREN] = ACTIONS(384), - [sym_word] = ACTIONS(384), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LF] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(384), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_COLON] = ACTIONS(1094), + [anon_sym_COLON_QMARK] = ACTIONS(1092), + [anon_sym_COLON_DASH] = ACTIONS(1092), + [anon_sym_PERCENT] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(52), }, [351] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(1060), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [352] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [353] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(1096), + [sym_comment] = ACTIONS(52), + }, + [354] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1096), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [355] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [356] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [357] = { + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(1102), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_PIPE_AMP] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1102), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), + [sym_word] = ACTIONS(1102), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_LF] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + }, + [358] = { + [anon_sym_RPAREN] = ACTIONS(1104), + [sym_word] = ACTIONS(1106), + [sym_comment] = ACTIONS(52), + }, + [359] = { + [anon_sym_RPAREN] = ACTIONS(1108), + [sym_word] = ACTIONS(1110), + [sym_comment] = ACTIONS(52), + }, + [360] = { + [sym_file_descriptor] = ACTIONS(386), + [sym__concat] = ACTIONS(386), + [sym_variable_name] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_SEMI_SEMI] = ACTIONS(388), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_AMP_GT] = ACTIONS(388), + [anon_sym_AMP_GT_GT] = ACTIONS(388), + [anon_sym_LT_AMP] = ACTIONS(388), + [anon_sym_GT_AMP] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_word] = ACTIONS(388), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(388), + }, + [361] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(1112), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [352] = { - [sym_string] = STATE(572), - [sym_simple_expansion] = STATE(572), - [sym_expansion] = STATE(572), - [sym_command_substitution] = STATE(572), - [sym_process_substitution] = STATE(572), - [anon_sym_DQUOTE] = ACTIONS(272), - [sym_raw_string] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(280), - [anon_sym_BQUOTE] = ACTIONS(282), - [anon_sym_LT_LPAREN] = ACTIONS(284), - [anon_sym_GT_LPAREN] = ACTIONS(284), - [sym_word] = ACTIONS(1064), + [362] = { + [sym_string] = STATE(598), + [sym_simple_expansion] = STATE(598), + [sym_expansion] = STATE(598), + [sym_command_substitution] = STATE(598), + [sym_process_substitution] = STATE(598), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_word] = ACTIONS(1116), [sym_comment] = ACTIONS(52), }, - [353] = { - [sym_file_descriptor] = ACTIONS(408), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(408), - [anon_sym_PIPE] = ACTIONS(412), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_SEMI_SEMI] = ACTIONS(412), - [anon_sym_PIPE_AMP] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(412), - [anon_sym_GT] = ACTIONS(412), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(412), - [anon_sym_AMP_GT_GT] = ACTIONS(412), - [anon_sym_LT_AMP] = ACTIONS(412), - [anon_sym_GT_AMP] = ACTIONS(412), - [anon_sym_DQUOTE] = ACTIONS(412), - [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(412), - [anon_sym_GT_LPAREN] = ACTIONS(412), - [sym_word] = ACTIONS(412), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(412), - [anon_sym_LF] = ACTIONS(412), - [anon_sym_AMP] = ACTIONS(412), - }, - [354] = { - [sym_file_descriptor] = ACTIONS(414), - [sym__concat] = ACTIONS(414), - [sym_variable_name] = ACTIONS(414), + [363] = { + [sym_file_descriptor] = ACTIONS(412), + [sym__concat] = ACTIONS(1118), + [sym_variable_name] = ACTIONS(412), [anon_sym_PIPE] = ACTIONS(416), [anon_sym_RPAREN] = ACTIONS(416), [anon_sym_SEMI_SEMI] = ACTIONS(416), @@ -12530,7 +13016,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(416), [anon_sym_AMP] = ACTIONS(416), }, - [355] = { + [364] = { [sym_file_descriptor] = ACTIONS(418), [sym__concat] = ACTIONS(418), [sym_variable_name] = ACTIONS(418), @@ -12561,7 +13047,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(420), [anon_sym_AMP] = ACTIONS(420), }, - [356] = { + [365] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), [sym_variable_name] = ACTIONS(422), @@ -12592,21 +13078,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(424), [anon_sym_AMP] = ACTIONS(424), }, - [357] = { - [sym_special_variable_name] = STATE(575), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [366] = { + [sym_file_descriptor] = ACTIONS(426), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_SEMI_SEMI] = ACTIONS(428), + [anon_sym_PIPE_AMP] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_AMP_GT] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(428), + [anon_sym_LT_AMP] = ACTIONS(428), + [anon_sym_GT_AMP] = ACTIONS(428), + [anon_sym_DQUOTE] = ACTIONS(428), + [sym_raw_string] = ACTIONS(428), + [anon_sym_DOLLAR] = ACTIONS(428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), + [anon_sym_BQUOTE] = ACTIONS(428), + [anon_sym_LT_LPAREN] = ACTIONS(428), + [anon_sym_GT_LPAREN] = ACTIONS(428), + [sym_word] = ACTIONS(428), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_LF] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + }, + [367] = { + [sym_special_variable_name] = STATE(601), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1068), + [sym_simple_variable_name] = ACTIONS(1120), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -12614,135 +13131,135 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [358] = { - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_EQ] = ACTIONS(1074), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_COLON_QMARK] = ACTIONS(1074), - [anon_sym_COLON_DASH] = ACTIONS(1074), - [anon_sym_PERCENT] = ACTIONS(1074), - [anon_sym_SLASH] = ACTIONS(1074), + [368] = { + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_COLON] = ACTIONS(1128), + [anon_sym_COLON_QMARK] = ACTIONS(1126), + [anon_sym_COLON_DASH] = ACTIONS(1126), + [anon_sym_PERCENT] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1126), [sym_comment] = ACTIONS(52), }, - [359] = { - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_COLON] = ACTIONS(1084), - [anon_sym_COLON_QMARK] = ACTIONS(1082), - [anon_sym_COLON_DASH] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_SLASH] = ACTIONS(1082), + [369] = { + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_COLON] = ACTIONS(1136), + [anon_sym_COLON_QMARK] = ACTIONS(1134), + [anon_sym_COLON_DASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1134), + [anon_sym_SLASH] = ACTIONS(1134), [sym_comment] = ACTIONS(52), }, - [360] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [370] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [361] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [371] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [362] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(1086), + [372] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(1138), [sym_comment] = ACTIONS(52), }, - [363] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [373] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1138), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [364] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [374] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [365] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [375] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [366] = { + [376] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(585), - [anon_sym_DQUOTE] = ACTIONS(1090), + [aux_sym_string_repeat1] = STATE(611), + [anon_sym_DQUOTE] = ACTIONS(1142), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -12750,45 +13267,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [367] = { - [aux_sym_concatenation_repeat1] = STATE(587), - [sym__concat] = ACTIONS(1092), - [anon_sym_SEMI_SEMI] = ACTIONS(328), - [anon_sym_DQUOTE] = ACTIONS(328), - [sym_raw_string] = ACTIONS(328), - [anon_sym_DOLLAR] = ACTIONS(328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_LT_LPAREN] = ACTIONS(328), - [anon_sym_GT_LPAREN] = ACTIONS(328), - [sym_word] = ACTIONS(328), + [377] = { + [aux_sym_concatenation_repeat1] = STATE(613), + [sym__concat] = ACTIONS(1144), + [anon_sym_SEMI_SEMI] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(332), + [sym_raw_string] = ACTIONS(332), + [anon_sym_DOLLAR] = ACTIONS(332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(332), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_word] = ACTIONS(332), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LF] = ACTIONS(328), - [anon_sym_AMP] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LF] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(332), }, - [368] = { - [sym_special_variable_name] = STATE(590), - [anon_sym_DOLLAR] = ACTIONS(1094), - [anon_sym_POUND] = ACTIONS(1094), - [anon_sym_AT] = ACTIONS(1094), + [378] = { + [sym_special_variable_name] = STATE(616), + [anon_sym_DOLLAR] = ACTIONS(1146), + [anon_sym_POUND] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(1146), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_QMARK] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_0] = ACTIONS(1098), - [anon_sym__] = ACTIONS(1098), + [sym_simple_variable_name] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_0] = ACTIONS(1150), + [anon_sym__] = ACTIONS(1150), }, - [369] = { - [sym_special_variable_name] = STATE(593), + [379] = { + [sym_special_variable_name] = STATE(619), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(1152), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1102), + [sym_simple_variable_name] = ACTIONS(1154), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -12796,19 +13313,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [370] = { - [sym_for_statement] = STATE(594), - [sym_while_statement] = STATE(594), - [sym_if_statement] = STATE(594), - [sym_case_statement] = STATE(594), - [sym_function_definition] = STATE(594), - [sym_subshell] = STATE(594), - [sym_pipeline] = STATE(594), - [sym_list] = STATE(594), - [sym_bracket_command] = STATE(594), - [sym_command] = STATE(594), + [380] = { + [sym_for_statement] = STATE(620), + [sym_while_statement] = STATE(620), + [sym_if_statement] = STATE(620), + [sym_case_statement] = STATE(620), + [sym_function_definition] = STATE(620), + [sym_subshell] = STATE(620), + [sym_pipeline] = STATE(620), + [sym_list] = STATE(620), + [sym_bracket_command] = STATE(620), + [sym_command] = STATE(620), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(595), + [sym_environment_variable_assignment] = STATE(621), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -12846,19 +13363,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [371] = { - [sym_for_statement] = STATE(596), - [sym_while_statement] = STATE(596), - [sym_if_statement] = STATE(596), - [sym_case_statement] = STATE(596), - [sym_function_definition] = STATE(596), - [sym_subshell] = STATE(596), - [sym_pipeline] = STATE(596), - [sym_list] = STATE(596), - [sym_bracket_command] = STATE(596), - [sym_command] = STATE(596), + [381] = { + [sym_for_statement] = STATE(622), + [sym_while_statement] = STATE(622), + [sym_if_statement] = STATE(622), + [sym_case_statement] = STATE(622), + [sym_function_definition] = STATE(622), + [sym_subshell] = STATE(622), + [sym_pipeline] = STATE(622), + [sym_list] = STATE(622), + [sym_bracket_command] = STATE(622), + [sym_command] = STATE(622), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(597), + [sym_environment_variable_assignment] = STATE(623), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -12896,19 +13413,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [372] = { - [sym_for_statement] = STATE(598), - [sym_while_statement] = STATE(598), - [sym_if_statement] = STATE(598), - [sym_case_statement] = STATE(598), - [sym_function_definition] = STATE(598), - [sym_subshell] = STATE(598), - [sym_pipeline] = STATE(598), - [sym_list] = STATE(598), - [sym_bracket_command] = STATE(598), - [sym_command] = STATE(598), + [382] = { + [sym_for_statement] = STATE(624), + [sym_while_statement] = STATE(624), + [sym_if_statement] = STATE(624), + [sym_case_statement] = STATE(624), + [sym_function_definition] = STATE(624), + [sym_subshell] = STATE(624), + [sym_pipeline] = STATE(624), + [sym_list] = STATE(624), + [sym_bracket_command] = STATE(624), + [sym_command] = STATE(624), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(599), + [sym_environment_variable_assignment] = STATE(625), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -12946,140 +13463,140 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [373] = { - [anon_sym_SEMI_SEMI] = ACTIONS(328), - [anon_sym_DQUOTE] = ACTIONS(328), - [sym_raw_string] = ACTIONS(328), - [anon_sym_DOLLAR] = ACTIONS(328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_LT_LPAREN] = ACTIONS(328), - [anon_sym_GT_LPAREN] = ACTIONS(328), - [sym_word] = ACTIONS(328), + [383] = { + [anon_sym_SEMI_SEMI] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(332), + [sym_raw_string] = ACTIONS(332), + [anon_sym_DOLLAR] = ACTIONS(332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(332), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_word] = ACTIONS(332), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LF] = ACTIONS(328), - [anon_sym_AMP] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LF] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(332), }, - [374] = { - [sym_concatenation] = STATE(602), - [sym_string] = STATE(601), - [sym_simple_expansion] = STATE(601), - [sym_expansion] = STATE(601), - [sym_command_substitution] = STATE(601), - [sym_process_substitution] = STATE(601), - [anon_sym_SEMI_SEMI] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_raw_string] = ACTIONS(1108), - [anon_sym_DOLLAR] = ACTIONS(1110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1114), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_LT_LPAREN] = ACTIONS(1118), - [anon_sym_GT_LPAREN] = ACTIONS(1118), - [sym_word] = ACTIONS(1108), + [384] = { + [sym_concatenation] = STATE(628), + [sym_string] = STATE(627), + [sym_simple_expansion] = STATE(627), + [sym_expansion] = STATE(627), + [sym_command_substitution] = STATE(627), + [sym_process_substitution] = STATE(627), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1158), + [sym_raw_string] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), + [anon_sym_BQUOTE] = ACTIONS(1168), + [anon_sym_LT_LPAREN] = ACTIONS(1170), + [anon_sym_GT_LPAREN] = ACTIONS(1170), + [sym_word] = ACTIONS(1160), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_LF] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), }, - [375] = { - [anon_sym_PIPE] = ACTIONS(1120), - [anon_sym_RPAREN] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [385] = { + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_RPAREN] = ACTIONS(1172), + [anon_sym_SEMI_SEMI] = ACTIONS(1172), + [anon_sym_PIPE_AMP] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1172), + [anon_sym_PIPE_PIPE] = ACTIONS(1172), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_LF] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), }, - [376] = { - [sym_file_descriptor] = ACTIONS(202), - [sym_variable_name] = ACTIONS(202), - [anon_sym_for] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [anon_sym_done] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_case] = ACTIONS(204), - [anon_sym_function] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_GT] = ACTIONS(204), - [anon_sym_GT_GT] = ACTIONS(202), - [anon_sym_AMP_GT] = ACTIONS(204), - [anon_sym_AMP_GT_GT] = ACTIONS(202), - [anon_sym_LT_AMP] = ACTIONS(202), - [anon_sym_GT_AMP] = ACTIONS(202), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(202), - [anon_sym_DOLLAR] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(202), - [anon_sym_BQUOTE] = ACTIONS(202), - [anon_sym_LT_LPAREN] = ACTIONS(202), - [anon_sym_GT_LPAREN] = ACTIONS(202), - [sym_word] = ACTIONS(206), + [386] = { + [sym_file_descriptor] = ACTIONS(204), + [sym_variable_name] = ACTIONS(204), + [anon_sym_for] = ACTIONS(206), + [anon_sym_while] = ACTIONS(206), + [anon_sym_done] = ACTIONS(206), + [anon_sym_if] = ACTIONS(206), + [anon_sym_case] = ACTIONS(206), + [anon_sym_function] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_GT_GT] = ACTIONS(204), + [anon_sym_AMP_GT] = ACTIONS(206), + [anon_sym_AMP_GT_GT] = ACTIONS(204), + [anon_sym_LT_AMP] = ACTIONS(204), + [anon_sym_GT_AMP] = ACTIONS(204), + [anon_sym_DQUOTE] = ACTIONS(204), + [sym_raw_string] = ACTIONS(204), + [anon_sym_DOLLAR] = ACTIONS(206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(204), + [anon_sym_LT_LPAREN] = ACTIONS(204), + [anon_sym_GT_LPAREN] = ACTIONS(204), + [sym_word] = ACTIONS(208), [sym_comment] = ACTIONS(52), }, - [377] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), + [387] = { + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(1174), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_LF] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_LF] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1174), }, - [378] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), + [388] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(1174), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_LF] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_LF] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1174), }, - [379] = { - [sym__terminated_statement] = STATE(605), - [sym_for_statement] = STATE(377), - [sym_while_statement] = STATE(377), - [sym_if_statement] = STATE(377), - [sym_case_statement] = STATE(377), - [sym_function_definition] = STATE(377), - [sym_subshell] = STATE(377), - [sym_pipeline] = STATE(377), - [sym_list] = STATE(377), - [sym_bracket_command] = STATE(377), - [sym_command] = STATE(377), + [389] = { + [sym__terminated_statement] = STATE(631), + [sym_for_statement] = STATE(387), + [sym_while_statement] = STATE(387), + [sym_if_statement] = STATE(387), + [sym_case_statement] = STATE(387), + [sym_function_definition] = STATE(387), + [sym_subshell] = STATE(387), + [sym_pipeline] = STATE(387), + [sym_list] = STATE(387), + [sym_bracket_command] = STATE(387), + [sym_command] = STATE(387), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(378), + [sym_environment_variable_assignment] = STATE(388), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -13093,7 +13610,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1124), + [anon_sym_done] = ACTIONS(1176), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -13118,20 +13635,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [380] = { - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [390] = { + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_RPAREN] = ACTIONS(1178), + [anon_sym_SEMI_SEMI] = ACTIONS(1178), + [anon_sym_PIPE_AMP] = ACTIONS(1178), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_LF] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1178), }, - [381] = { - [sym__terminated_statement] = STATE(606), + [391] = { + [sym__terminated_statement] = STATE(632), [sym_for_statement] = STATE(36), [sym_while_statement] = STATE(36), [sym_if_statement] = STATE(36), @@ -13181,280 +13698,216 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [382] = { - [sym__terminated_statement] = STATE(607), - [sym_for_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_function_definition] = STATE(608), - [sym_subshell] = STATE(608), - [sym_pipeline] = STATE(608), - [sym_list] = STATE(608), - [sym_bracket_command] = STATE(608), - [sym_command] = STATE(608), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(609), - [sym_subscript] = STATE(26), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(610), - [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(1128), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), - [sym_comment] = ACTIONS(52), - }, - [383] = { - [sym_file_descriptor] = ACTIONS(202), - [sym_variable_name] = ACTIONS(202), - [anon_sym_for] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_fi] = ACTIONS(204), - [anon_sym_elif] = ACTIONS(204), - [anon_sym_else] = ACTIONS(204), - [anon_sym_case] = ACTIONS(204), - [anon_sym_function] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_GT] = ACTIONS(204), - [anon_sym_GT_GT] = ACTIONS(202), - [anon_sym_AMP_GT] = ACTIONS(204), - [anon_sym_AMP_GT_GT] = ACTIONS(202), - [anon_sym_LT_AMP] = ACTIONS(202), - [anon_sym_GT_AMP] = ACTIONS(202), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(202), - [anon_sym_DOLLAR] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(202), - [anon_sym_BQUOTE] = ACTIONS(202), - [anon_sym_LT_LPAREN] = ACTIONS(202), - [anon_sym_GT_LPAREN] = ACTIONS(202), - [sym_word] = ACTIONS(206), - [sym_comment] = ACTIONS(52), - }, - [384] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(1130), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - }, - [385] = { - [anon_sym_fi] = ACTIONS(1132), - [anon_sym_elif] = ACTIONS(1132), - [anon_sym_else] = ACTIONS(1132), - [sym_comment] = ACTIONS(52), - }, - [386] = { - [anon_sym_fi] = ACTIONS(1134), - [sym_comment] = ACTIONS(52), - }, - [387] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(1130), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - }, - [388] = { - [sym__terminated_statement] = STATE(613), - [sym_for_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_elif_clause] = STATE(385), - [sym_else_clause] = STATE(614), - [sym_case_statement] = STATE(384), - [sym_function_definition] = STATE(384), - [sym_subshell] = STATE(384), - [sym_pipeline] = STATE(384), - [sym_list] = STATE(384), - [sym_bracket_command] = STATE(384), - [sym_command] = STATE(384), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(387), - [sym_subscript] = STATE(26), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [aux_sym_if_statement_repeat1] = STATE(615), - [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(1136), - [anon_sym_elif] = ACTIONS(630), - [anon_sym_else] = ACTIONS(632), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), - [sym_comment] = ACTIONS(52), - }, - [389] = { - [sym_elif_clause] = STATE(616), - [sym_else_clause] = STATE(614), - [anon_sym_fi] = ACTIONS(1134), - [anon_sym_elif] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1140), - [sym_comment] = ACTIONS(52), - }, - [390] = { - [sym__concat] = ACTIONS(804), - [anon_sym_in] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), - }, - [391] = { - [sym__concat] = ACTIONS(812), - [anon_sym_in] = ACTIONS(814), - [anon_sym_SEMI_SEMI] = ACTIONS(814), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), - }, [392] = { - [sym_case_item] = STATE(619), - [sym_concatenation] = STATE(620), - [sym_string] = STATE(618), - [sym_simple_expansion] = STATE(618), - [sym_expansion] = STATE(618), - [sym_command_substitution] = STATE(618), - [sym_process_substitution] = STATE(618), - [aux_sym_case_statement_repeat1] = STATE(621), - [anon_sym_esac] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1146), + [sym__terminated_statement] = STATE(633), + [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_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(635), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(636), + [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(1180), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, [393] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - }, - [394] = { - [sym_string] = STATE(623), - [sym_simple_expansion] = STATE(623), - [sym_expansion] = STATE(623), - [sym_command_substitution] = STATE(623), - [sym_process_substitution] = STATE(623), - [anon_sym_DQUOTE] = ACTIONS(64), - [sym_raw_string] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(68), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(70), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(72), - [anon_sym_BQUOTE] = ACTIONS(74), - [anon_sym_LT_LPAREN] = ACTIONS(76), - [anon_sym_GT_LPAREN] = ACTIONS(76), - [sym_word] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(204), + [sym_variable_name] = ACTIONS(204), + [anon_sym_for] = ACTIONS(206), + [anon_sym_while] = ACTIONS(206), + [anon_sym_if] = ACTIONS(206), + [anon_sym_fi] = ACTIONS(206), + [anon_sym_elif] = ACTIONS(206), + [anon_sym_else] = ACTIONS(206), + [anon_sym_case] = ACTIONS(206), + [anon_sym_function] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_GT_GT] = ACTIONS(204), + [anon_sym_AMP_GT] = ACTIONS(206), + [anon_sym_AMP_GT_GT] = ACTIONS(204), + [anon_sym_LT_AMP] = ACTIONS(204), + [anon_sym_GT_AMP] = ACTIONS(204), + [anon_sym_DQUOTE] = ACTIONS(204), + [sym_raw_string] = ACTIONS(204), + [anon_sym_DOLLAR] = ACTIONS(206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(204), + [anon_sym_LT_LPAREN] = ACTIONS(204), + [anon_sym_GT_LPAREN] = ACTIONS(204), + [sym_word] = ACTIONS(208), [sym_comment] = ACTIONS(52), }, + [394] = { + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(1182), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_LF] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + }, [395] = { - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_fi] = ACTIONS(1184), + [anon_sym_elif] = ACTIONS(1184), + [anon_sym_else] = ACTIONS(1184), [sym_comment] = ACTIONS(52), }, [396] = { - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_fi] = ACTIONS(1186), [sym_comment] = ACTIONS(52), }, [397] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(1182), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_LF] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + }, + [398] = { + [sym__terminated_statement] = STATE(639), + [sym_for_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_elif_clause] = STATE(395), + [sym_else_clause] = STATE(640), + [sym_case_statement] = STATE(394), + [sym_function_definition] = STATE(394), + [sym_subshell] = STATE(394), + [sym_pipeline] = STATE(394), + [sym_list] = STATE(394), + [sym_bracket_command] = STATE(394), + [sym_command] = STATE(394), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(397), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_if_statement_repeat1] = STATE(641), + [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(1188), + [anon_sym_elif] = ACTIONS(644), + [anon_sym_else] = ACTIONS(646), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), + [sym_comment] = ACTIONS(52), + }, + [399] = { + [sym_elif_clause] = STATE(642), + [sym_else_clause] = STATE(640), + [anon_sym_fi] = ACTIONS(1186), + [anon_sym_elif] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1192), + [sym_comment] = ACTIONS(52), + }, + [400] = { + [sym__concat] = ACTIONS(820), + [anon_sym_in] = ACTIONS(822), + [anon_sym_SEMI_SEMI] = ACTIONS(822), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(822), + }, + [401] = { [sym__concat] = ACTIONS(828), [anon_sym_in] = ACTIONS(830), [anon_sym_SEMI_SEMI] = ACTIONS(830), @@ -13463,544 +13916,283 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(830), [anon_sym_AMP] = ACTIONS(830), }, - [398] = { - [anon_sym_AT] = ACTIONS(1162), - [sym_comment] = ACTIONS(52), - }, - [399] = { - [sym_concatenation] = STATE(630), - [sym_string] = STATE(629), - [sym_simple_expansion] = STATE(629), - [sym_expansion] = STATE(629), - [sym_command_substitution] = STATE(629), - [sym_process_substitution] = STATE(629), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1164), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1166), - [sym_comment] = ACTIONS(52), - }, - [400] = { - [sym__concat] = ACTIONS(838), - [anon_sym_in] = ACTIONS(840), - [anon_sym_SEMI_SEMI] = ACTIONS(840), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(840), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(840), - }, - [401] = { - [anon_sym_AT] = ACTIONS(1168), - [sym_comment] = ACTIONS(52), - }, [402] = { - [sym_concatenation] = STATE(633), - [sym_string] = STATE(632), - [sym_simple_expansion] = STATE(632), - [sym_expansion] = STATE(632), - [sym_command_substitution] = STATE(632), - [sym_process_substitution] = STATE(632), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1172), + [sym_case_item] = STATE(645), + [sym_concatenation] = STATE(646), + [sym_string] = STATE(644), + [sym_simple_expansion] = STATE(644), + [sym_expansion] = STATE(644), + [sym_command_substitution] = STATE(644), + [sym_process_substitution] = STATE(644), + [aux_sym_case_statement_repeat1] = STATE(647), + [anon_sym_esac] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1198), [sym_comment] = ACTIONS(52), }, [403] = { - [sym__concat] = ACTIONS(918), - [anon_sym_in] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), + [anon_sym_SEMI_SEMI] = ACTIONS(1200), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_LF] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), }, [404] = { - [sym__concat] = ACTIONS(956), - [anon_sym_in] = ACTIONS(958), - [anon_sym_SEMI_SEMI] = ACTIONS(958), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), + [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(64), + [sym_raw_string] = ACTIONS(1202), + [anon_sym_DOLLAR] = ACTIONS(68), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(70), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(72), + [anon_sym_BQUOTE] = ACTIONS(74), + [anon_sym_LT_LPAREN] = ACTIONS(76), + [anon_sym_GT_LPAREN] = ACTIONS(76), + [sym_word] = ACTIONS(1204), + [sym_comment] = ACTIONS(52), }, [405] = { - [sym_compound_statement] = STATE(634), - [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1208), [sym_comment] = ACTIONS(52), }, [406] = { - [anon_sym_PIPE] = ACTIONS(1174), - [anon_sym_RPAREN] = ACTIONS(1174), - [anon_sym_SEMI_SEMI] = ACTIONS(1174), - [anon_sym_PIPE_AMP] = ACTIONS(1174), - [anon_sym_AMP_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1174), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - }, - [407] = { - [sym_file_descriptor] = ACTIONS(516), - [sym_variable_name] = ACTIONS(516), - [anon_sym_for] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_function] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_AMP_GT] = ACTIONS(518), - [anon_sym_AMP_GT_GT] = ACTIONS(516), - [anon_sym_LT_AMP] = ACTIONS(516), - [anon_sym_GT_AMP] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR] = ACTIONS(518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), - [anon_sym_BQUOTE] = ACTIONS(516), - [anon_sym_LT_LPAREN] = ACTIONS(516), - [anon_sym_GT_LPAREN] = ACTIONS(516), - [sym_word] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1212), [sym_comment] = ACTIONS(52), }, + [407] = { + [sym__concat] = ACTIONS(844), + [anon_sym_in] = ACTIONS(846), + [anon_sym_SEMI_SEMI] = ACTIONS(846), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(846), + }, [408] = { - [sym__concat] = ACTIONS(804), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(804), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_word] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(1214), [sym_comment] = ACTIONS(52), }, [409] = { - [sym__concat] = ACTIONS(812), - [anon_sym_RBRACE] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(812), - [sym_raw_string] = ACTIONS(812), - [anon_sym_DOLLAR] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), - [anon_sym_BQUOTE] = ACTIONS(812), - [anon_sym_LT_LPAREN] = ACTIONS(812), - [anon_sym_GT_LPAREN] = ACTIONS(812), - [sym_word] = ACTIONS(814), + [sym_concatenation] = STATE(656), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1218), [sym_comment] = ACTIONS(52), }, [410] = { - [sym_string] = STATE(636), - [sym_simple_expansion] = STATE(636), - [sym_expansion] = STATE(636), - [sym_command_substitution] = STATE(636), - [sym_process_substitution] = STATE(636), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1182), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1184), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(854), + [anon_sym_in] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), }, [411] = { - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1220), [sym_comment] = ACTIONS(52), }, [412] = { - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1192), - [sym_comment] = ACTIONS(52), - }, - [413] = { - [sym__concat] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_RBRACK] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_word] = ACTIONS(830), - [sym_comment] = ACTIONS(52), - }, - [414] = { - [anon_sym_AT] = ACTIONS(1196), - [sym_comment] = ACTIONS(52), - }, - [415] = { - [sym_concatenation] = STATE(643), - [sym_string] = STATE(642), - [sym_simple_expansion] = STATE(642), - [sym_expansion] = STATE(642), - [sym_command_substitution] = STATE(642), - [sym_process_substitution] = STATE(642), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1200), - [sym_comment] = ACTIONS(52), - }, - [416] = { - [sym__concat] = ACTIONS(838), - [anon_sym_RBRACE] = ACTIONS(838), - [anon_sym_RBRACK] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(838), - [sym_raw_string] = ACTIONS(838), - [anon_sym_DOLLAR] = ACTIONS(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), - [anon_sym_BQUOTE] = ACTIONS(838), - [anon_sym_LT_LPAREN] = ACTIONS(838), - [anon_sym_GT_LPAREN] = ACTIONS(838), - [sym_word] = ACTIONS(840), - [sym_comment] = ACTIONS(52), - }, - [417] = { - [anon_sym_AT] = ACTIONS(1204), - [sym_comment] = ACTIONS(52), - }, - [418] = { - [sym_concatenation] = STATE(646), - [sym_string] = STATE(645), - [sym_simple_expansion] = STATE(645), - [sym_expansion] = STATE(645), - [sym_command_substitution] = STATE(645), - [sym_process_substitution] = STATE(645), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1206), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1208), - [sym_comment] = ACTIONS(52), - }, - [419] = { - [sym__concat] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_RBRACK] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym_raw_string] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(918), - [anon_sym_LT_LPAREN] = ACTIONS(918), - [anon_sym_GT_LPAREN] = ACTIONS(918), - [sym_word] = ACTIONS(920), - [sym_comment] = ACTIONS(52), - }, - [420] = { - [sym__concat] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_raw_string] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(1212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_BQUOTE] = ACTIONS(956), - [anon_sym_LT_LPAREN] = ACTIONS(956), - [anon_sym_GT_LPAREN] = ACTIONS(956), - [sym_word] = ACTIONS(958), - [sym_comment] = ACTIONS(52), - }, - [421] = { - [sym__concat] = ACTIONS(804), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(804), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_word] = ACTIONS(806), - [sym_comment] = ACTIONS(52), - }, - [422] = { - [sym__concat] = ACTIONS(812), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(812), - [sym_raw_string] = ACTIONS(812), - [anon_sym_DOLLAR] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), - [anon_sym_BQUOTE] = ACTIONS(812), - [anon_sym_LT_LPAREN] = ACTIONS(812), - [anon_sym_GT_LPAREN] = ACTIONS(812), - [sym_word] = ACTIONS(814), - [sym_comment] = ACTIONS(52), - }, - [423] = { - [sym_string] = STATE(647), - [sym_simple_expansion] = STATE(647), - [sym_expansion] = STATE(647), - [sym_command_substitution] = STATE(647), - [sym_process_substitution] = STATE(647), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1216), - [sym_comment] = ACTIONS(52), - }, - [424] = { - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1220), - [sym_comment] = ACTIONS(52), - }, - [425] = { - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1224), - [sym_comment] = ACTIONS(52), - }, - [426] = { - [sym__concat] = ACTIONS(828), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_word] = ACTIONS(830), - [sym_comment] = ACTIONS(52), - }, - [427] = { - [anon_sym_AT] = ACTIONS(1226), - [sym_comment] = ACTIONS(52), - }, - [428] = { - [sym_concatenation] = STATE(654), - [sym_string] = STATE(653), - [sym_simple_expansion] = STATE(653), - [sym_expansion] = STATE(653), - [sym_command_substitution] = STATE(653), - [sym_process_substitution] = STATE(653), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1230), - [sym_comment] = ACTIONS(52), - }, - [429] = { - [sym__concat] = ACTIONS(838), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(838), - [sym_raw_string] = ACTIONS(838), - [anon_sym_DOLLAR] = ACTIONS(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), - [anon_sym_BQUOTE] = ACTIONS(838), - [anon_sym_LT_LPAREN] = ACTIONS(838), - [anon_sym_GT_LPAREN] = ACTIONS(838), - [sym_word] = ACTIONS(840), - [sym_comment] = ACTIONS(52), - }, - [430] = { - [anon_sym_AT] = ACTIONS(1232), - [sym_comment] = ACTIONS(52), - }, - [431] = { - [sym_concatenation] = STATE(657), - [sym_string] = STATE(656), - [sym_simple_expansion] = STATE(656), - [sym_expansion] = STATE(656), - [sym_command_substitution] = STATE(656), - [sym_process_substitution] = STATE(656), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1236), - [sym_comment] = ACTIONS(52), - }, - [432] = { - [sym__concat] = ACTIONS(918), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym_raw_string] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(918), - [anon_sym_LT_LPAREN] = ACTIONS(918), - [anon_sym_GT_LPAREN] = ACTIONS(918), - [sym_word] = ACTIONS(920), - [sym_comment] = ACTIONS(52), - }, - [433] = { - [sym__concat] = ACTIONS(956), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_raw_string] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(1212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_BQUOTE] = ACTIONS(956), - [anon_sym_LT_LPAREN] = ACTIONS(956), - [anon_sym_GT_LPAREN] = ACTIONS(956), - [sym_word] = ACTIONS(958), - [sym_comment] = ACTIONS(52), - }, - [434] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1178), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(804), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_word] = ACTIONS(1178), - [sym_comment] = ACTIONS(52), - }, - [435] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [sym_variable_name] = ACTIONS(812), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(812), - [anon_sym_LT_AMP] = ACTIONS(812), - [anon_sym_GT_AMP] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(812), - [sym_raw_string] = ACTIONS(812), - [anon_sym_DOLLAR] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), - [anon_sym_BQUOTE] = ACTIONS(812), - [anon_sym_LT_LPAREN] = ACTIONS(812), - [anon_sym_GT_LPAREN] = ACTIONS(812), - [sym_word] = ACTIONS(1180), - [sym_comment] = ACTIONS(52), - }, - [436] = { + [sym_concatenation] = STATE(659), [sym_string] = STATE(658), [sym_simple_expansion] = STATE(658), [sym_expansion] = STATE(658), [sym_command_substitution] = STATE(658), [sym_process_substitution] = STATE(658), - [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(1238), - [anon_sym_DOLLAR] = ACTIONS(118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), - [anon_sym_BQUOTE] = ACTIONS(124), - [anon_sym_LT_LPAREN] = ACTIONS(126), - [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1222), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1224), [sym_comment] = ACTIONS(52), }, - [437] = { - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1244), + [413] = { + [sym__concat] = ACTIONS(946), + [anon_sym_in] = ACTIONS(948), + [anon_sym_SEMI_SEMI] = ACTIONS(948), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + }, + [414] = { + [sym__concat] = ACTIONS(984), + [anon_sym_in] = ACTIONS(986), + [anon_sym_SEMI_SEMI] = ACTIONS(986), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + }, + [415] = { + [sym_compound_statement] = STATE(660), + [anon_sym_LBRACE] = ACTIONS(318), [sym_comment] = ACTIONS(52), }, - [438] = { - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1248), + [416] = { + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + }, + [417] = { + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_RPAREN] = ACTIONS(1228), + [anon_sym_SEMI_SEMI] = ACTIONS(1228), + [anon_sym_PIPE_AMP] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + }, + [418] = { + [sym_file_descriptor] = ACTIONS(530), + [sym_variable_name] = ACTIONS(530), + [anon_sym_for] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_RPAREN] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_AMP_GT] = ACTIONS(532), + [anon_sym_AMP_GT_GT] = ACTIONS(530), + [anon_sym_LT_AMP] = ACTIONS(530), + [anon_sym_GT_AMP] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [sym_raw_string] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_LT_LPAREN] = ACTIONS(530), + [anon_sym_GT_LPAREN] = ACTIONS(530), + [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, - [439] = { - [sym_file_descriptor] = ACTIONS(828), + [419] = { + [sym__concat] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(820), + [sym_raw_string] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_LT_LPAREN] = ACTIONS(820), + [anon_sym_GT_LPAREN] = ACTIONS(820), + [sym_word] = ACTIONS(822), + [sym_comment] = ACTIONS(52), + }, + [420] = { [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1194), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_RBRACK] = ACTIONS(1234), [anon_sym_DQUOTE] = ACTIONS(828), [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), [anon_sym_BQUOTE] = ACTIONS(828), [anon_sym_LT_LPAREN] = ACTIONS(828), [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_word] = ACTIONS(1194), + [sym_word] = ACTIONS(830), [sym_comment] = ACTIONS(52), }, - [440] = { + [421] = { + [sym_string] = STATE(662), + [sym_simple_expansion] = STATE(662), + [sym_expansion] = STATE(662), + [sym_command_substitution] = STATE(662), + [sym_process_substitution] = STATE(662), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1236), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1238), + [sym_comment] = ACTIONS(52), + }, + [422] = { + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1242), + [sym_comment] = ACTIONS(52), + }, + [423] = { + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1246), + [sym_comment] = ACTIONS(52), + }, + [424] = { + [sym__concat] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_RBRACK] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_word] = ACTIONS(846), + [sym_comment] = ACTIONS(52), + }, + [425] = { [anon_sym_AT] = ACTIONS(1250), [sym_comment] = ACTIONS(52), }, - [441] = { - [sym_concatenation] = STATE(665), - [sym_string] = STATE(664), - [sym_simple_expansion] = STATE(664), - [sym_expansion] = STATE(664), - [sym_command_substitution] = STATE(664), - [sym_process_substitution] = STATE(664), + [426] = { + [sym_concatenation] = STATE(669), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), [anon_sym_DQUOTE] = ACTIONS(82), [sym_raw_string] = ACTIONS(1252), [anon_sym_DOLLAR] = ACTIONS(86), @@ -14012,905 +14204,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1254), [sym_comment] = ACTIONS(52), }, - [442] = { - [sym_file_descriptor] = ACTIONS(838), - [sym__concat] = ACTIONS(838), - [sym_variable_name] = ACTIONS(838), - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_GT] = ACTIONS(1202), - [anon_sym_GT_GT] = ACTIONS(838), - [anon_sym_AMP_GT] = ACTIONS(1202), - [anon_sym_AMP_GT_GT] = ACTIONS(838), - [anon_sym_LT_AMP] = ACTIONS(838), - [anon_sym_GT_AMP] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(838), - [sym_raw_string] = ACTIONS(838), - [anon_sym_DOLLAR] = ACTIONS(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), - [anon_sym_BQUOTE] = ACTIONS(838), - [anon_sym_LT_LPAREN] = ACTIONS(838), - [anon_sym_GT_LPAREN] = ACTIONS(838), - [sym_word] = ACTIONS(1202), + [427] = { + [sym__concat] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_RBRACK] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_raw_string] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [anon_sym_LT_LPAREN] = ACTIONS(854), + [anon_sym_GT_LPAREN] = ACTIONS(854), + [sym_word] = ACTIONS(856), [sym_comment] = ACTIONS(52), }, - [443] = { - [anon_sym_AT] = ACTIONS(1256), + [428] = { + [anon_sym_AT] = ACTIONS(1258), [sym_comment] = ACTIONS(52), }, - [444] = { - [sym_concatenation] = STATE(668), - [sym_string] = STATE(667), - [sym_simple_expansion] = STATE(667), - [sym_expansion] = STATE(667), - [sym_command_substitution] = STATE(667), - [sym_process_substitution] = STATE(667), + [429] = { + [sym_concatenation] = STATE(672), + [sym_string] = STATE(671), + [sym_simple_expansion] = STATE(671), + [sym_expansion] = STATE(671), + [sym_command_substitution] = STATE(671), + [sym_process_substitution] = STATE(671), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(1260), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1260), + [sym_word] = ACTIONS(1262), [sym_comment] = ACTIONS(52), }, - [445] = { - [sym_file_descriptor] = ACTIONS(918), - [sym__concat] = ACTIONS(918), - [sym_variable_name] = ACTIONS(918), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(918), - [anon_sym_AMP_GT] = ACTIONS(1210), - [anon_sym_AMP_GT_GT] = ACTIONS(918), - [anon_sym_LT_AMP] = ACTIONS(918), - [anon_sym_GT_AMP] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym_raw_string] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(918), - [anon_sym_LT_LPAREN] = ACTIONS(918), - [anon_sym_GT_LPAREN] = ACTIONS(918), - [sym_word] = ACTIONS(1210), + [430] = { + [sym__concat] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_RBRACK] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_raw_string] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(1264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), + [anon_sym_BQUOTE] = ACTIONS(946), + [anon_sym_LT_LPAREN] = ACTIONS(946), + [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_word] = ACTIONS(948), [sym_comment] = ACTIONS(52), }, - [446] = { - [sym_file_descriptor] = ACTIONS(956), - [sym__concat] = ACTIONS(956), - [sym_variable_name] = ACTIONS(956), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_GT] = ACTIONS(1212), - [anon_sym_GT_GT] = ACTIONS(956), - [anon_sym_AMP_GT] = ACTIONS(1212), - [anon_sym_AMP_GT_GT] = ACTIONS(956), - [anon_sym_LT_AMP] = ACTIONS(956), - [anon_sym_GT_AMP] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_raw_string] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(1212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_BQUOTE] = ACTIONS(956), - [anon_sym_LT_LPAREN] = ACTIONS(956), - [anon_sym_GT_LPAREN] = ACTIONS(956), - [sym_word] = ACTIONS(1212), + [431] = { + [sym__concat] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_RBRACK] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym_raw_string] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(984), + [anon_sym_LT_LPAREN] = ACTIONS(984), + [anon_sym_GT_LPAREN] = ACTIONS(984), + [sym_word] = ACTIONS(986), [sym_comment] = ACTIONS(52), }, - [447] = { - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1264), + [432] = { + [sym__concat] = ACTIONS(820), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(820), + [sym_raw_string] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_LT_LPAREN] = ACTIONS(820), + [anon_sym_GT_LPAREN] = ACTIONS(820), + [sym_word] = ACTIONS(822), [sym_comment] = ACTIONS(52), }, - [448] = { - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1268), - [sym_comment] = ACTIONS(52), - }, - [449] = { - [anon_sym_DQUOTE] = ACTIONS(830), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_comment] = ACTIONS(142), - }, - [450] = { - [anon_sym_AT] = ACTIONS(1270), - [sym_comment] = ACTIONS(52), - }, - [451] = { - [sym_concatenation] = STATE(675), - [sym_string] = STATE(674), - [sym_simple_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1274), - [sym_comment] = ACTIONS(52), - }, - [452] = { - [anon_sym_DQUOTE] = ACTIONS(840), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), - [anon_sym_BQUOTE] = ACTIONS(840), - [sym_comment] = ACTIONS(142), - }, - [453] = { - [anon_sym_AT] = ACTIONS(1276), - [sym_comment] = ACTIONS(52), - }, - [454] = { - [sym_concatenation] = STATE(678), - [sym_string] = STATE(677), - [sym_simple_expansion] = STATE(677), - [sym_expansion] = STATE(677), - [sym_command_substitution] = STATE(677), - [sym_process_substitution] = STATE(677), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), - [anon_sym_BQUOTE] = ACTIONS(92), - [anon_sym_LT_LPAREN] = ACTIONS(94), - [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1280), - [sym_comment] = ACTIONS(52), - }, - [455] = { - [anon_sym_DQUOTE] = ACTIONS(920), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1210), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [sym_comment] = ACTIONS(142), - }, - [456] = { - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), - [sym_word] = ACTIONS(1284), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - }, - [457] = { - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_SEMI_SEMI] = ACTIONS(1288), - [anon_sym_PIPE_AMP] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1288), - [anon_sym_LT_AMP] = ACTIONS(1288), - [anon_sym_GT_AMP] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_LT_LT_DASH] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_raw_string] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_LT_LPAREN] = ACTIONS(1288), - [anon_sym_GT_LPAREN] = ACTIONS(1288), - [sym_word] = ACTIONS(1288), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - }, - [458] = { - [anon_sym_AT] = ACTIONS(1290), - [sym_comment] = ACTIONS(52), - }, - [459] = { - [sym_file_descriptor] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [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(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(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - }, - [460] = { - [anon_sym_AT] = ACTIONS(1296), - [sym_comment] = ACTIONS(52), - }, - [461] = { - [anon_sym_RBRACK] = ACTIONS(1298), - [sym_comment] = ACTIONS(52), - }, - [462] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1300), - [sym_comment] = ACTIONS(52), - }, - [463] = { - [anon_sym_RBRACE] = ACTIONS(1300), - [sym_comment] = ACTIONS(52), - }, - [464] = { - [anon_sym_RBRACK] = ACTIONS(1302), - [sym_comment] = ACTIONS(52), - }, - [465] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1304), - [sym_comment] = ACTIONS(52), - }, - [466] = { - [anon_sym_RBRACE] = ACTIONS(1304), - [sym_comment] = ACTIONS(52), - }, - [467] = { - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_PIPE_AMP] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(1306), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_DQUOTE] = ACTIONS(586), - [sym_raw_string] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(1306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(586), - [anon_sym_LT_LPAREN] = ACTIONS(586), - [anon_sym_GT_LPAREN] = ACTIONS(586), - [sym_word] = ACTIONS(588), - [sym_comment] = ACTIONS(52), - }, - [468] = { - [aux_sym_array_repeat1] = STATE(686), - [anon_sym_RPAREN] = ACTIONS(1308), - [sym_word] = ACTIONS(592), - [sym_comment] = ACTIONS(52), - }, - [469] = { - [sym_simple_expansion] = STATE(78), - [sym_expansion] = STATE(78), - [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(688), - [anon_sym_DQUOTE] = ACTIONS(1310), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), - [anon_sym_DOLLAR] = ACTIONS(134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), - [anon_sym_BQUOTE] = ACTIONS(140), - [sym_comment] = ACTIONS(142), - }, - [470] = { - [aux_sym_concatenation_repeat1] = STATE(690), - [sym_file_descriptor] = ACTIONS(586), - [sym__concat] = ACTIONS(1312), - [sym_variable_name] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_PIPE_AMP] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(1306), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_DQUOTE] = ACTIONS(586), - [sym_raw_string] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(1306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(586), - [anon_sym_LT_LPAREN] = ACTIONS(586), - [anon_sym_GT_LPAREN] = ACTIONS(586), - [sym_word] = ACTIONS(588), - [sym_comment] = ACTIONS(52), - }, - [471] = { - [sym_special_variable_name] = STATE(693), - [anon_sym_DOLLAR] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(1314), - [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_0] = ACTIONS(1318), - [anon_sym__] = ACTIONS(1318), - }, - [472] = { - [sym_special_variable_name] = STATE(696), - [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_AT] = ACTIONS(156), - [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_DASH] = ACTIONS(156), - [anon_sym_BANG] = ACTIONS(156), - [anon_sym_0] = ACTIONS(162), - [anon_sym__] = ACTIONS(162), - }, - [473] = { - [sym_for_statement] = STATE(697), - [sym_while_statement] = STATE(697), - [sym_if_statement] = STATE(697), - [sym_case_statement] = STATE(697), - [sym_function_definition] = STATE(697), - [sym_subshell] = STATE(697), - [sym_pipeline] = STATE(697), - [sym_list] = STATE(697), - [sym_bracket_command] = STATE(697), - [sym_command] = STATE(697), - [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(698), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [474] = { - [sym_for_statement] = STATE(699), - [sym_while_statement] = STATE(699), - [sym_if_statement] = STATE(699), - [sym_case_statement] = STATE(699), - [sym_function_definition] = STATE(699), - [sym_subshell] = STATE(699), - [sym_pipeline] = STATE(699), - [sym_list] = STATE(699), - [sym_bracket_command] = STATE(699), - [sym_command] = STATE(699), - [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(700), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(119), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [475] = { - [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_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(702), - [sym_subscript] = STATE(113), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(103), - [sym_simple_expansion] = STATE(103), - [sym_expansion] = STATE(103), - [sym_command_substitution] = STATE(103), - [sym_process_substitution] = STATE(103), - [aux_sym_command_repeat1] = STATE(115), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(168), - [anon_sym_if] = ACTIONS(170), - [anon_sym_case] = ACTIONS(172), - [anon_sym_function] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(184), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(196), - [sym_comment] = ACTIONS(52), - }, - [476] = { - [sym_concatenation] = STATE(373), - [sym_string] = STATE(367), - [sym_simple_expansion] = STATE(367), - [sym_expansion] = STATE(367), - [sym_command_substitution] = STATE(367), - [sym_process_substitution] = STATE(367), - [aux_sym_for_statement_repeat1] = STATE(703), - [anon_sym_DQUOTE] = ACTIONS(608), - [sym_raw_string] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(616), - [anon_sym_BQUOTE] = ACTIONS(618), - [anon_sym_LT_LPAREN] = ACTIONS(620), - [anon_sym_GT_LPAREN] = ACTIONS(620), - [sym_word] = ACTIONS(622), - [sym_comment] = ACTIONS(52), - }, - [477] = { - [sym__terminated_statement] = STATE(376), - [sym_for_statement] = STATE(377), - [sym_while_statement] = STATE(377), - [sym_if_statement] = STATE(377), - [sym_case_statement] = STATE(377), - [sym_function_definition] = STATE(377), - [sym_subshell] = STATE(377), - [sym_pipeline] = STATE(377), - [sym_list] = STATE(377), - [sym_bracket_command] = STATE(377), - [sym_command] = STATE(377), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(378), - [sym_subscript] = STATE(26), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(705), - [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(1324), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), - [sym_comment] = ACTIONS(52), - }, - [478] = { - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_PIPE_AMP] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(1328), - [anon_sym_PIPE_PIPE] = ACTIONS(1328), - [anon_sym_BQUOTE] = ACTIONS(1328), - [sym_comment] = ACTIONS(52), - }, - [479] = { - [sym__terminated_statement] = STATE(383), - [sym_for_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_elif_clause] = STATE(385), - [sym_else_clause] = STATE(707), - [sym_case_statement] = STATE(384), - [sym_function_definition] = STATE(384), - [sym_subshell] = STATE(384), - [sym_pipeline] = STATE(384), - [sym_list] = STATE(384), - [sym_bracket_command] = STATE(384), - [sym_command] = STATE(384), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(387), - [sym_subscript] = STATE(26), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [aux_sym_program_repeat1] = STATE(708), - [aux_sym_if_statement_repeat1] = STATE(709), - [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(1330), - [anon_sym_elif] = ACTIONS(630), - [anon_sym_else] = ACTIONS(632), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), - [sym_comment] = ACTIONS(52), - }, - [480] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1332), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - }, - [481] = { - [anon_sym_in] = ACTIONS(1334), - [sym_comment] = ACTIONS(52), - }, - [482] = { - [anon_sym_RPAREN] = ACTIONS(1336), - [sym_comment] = ACTIONS(52), - }, - [483] = { - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_PIPE_AMP] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [anon_sym_PIPE_PIPE] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [sym_comment] = ACTIONS(52), - }, - [484] = { - [sym_file_descriptor] = ACTIONS(516), - [sym_variable_name] = ACTIONS(516), - [anon_sym_for] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_function] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_AMP_GT] = ACTIONS(518), - [anon_sym_AMP_GT_GT] = ACTIONS(516), - [anon_sym_LT_AMP] = ACTIONS(516), - [anon_sym_GT_AMP] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR] = ACTIONS(518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), - [anon_sym_BQUOTE] = ACTIONS(516), - [anon_sym_LT_LPAREN] = ACTIONS(516), - [anon_sym_GT_LPAREN] = ACTIONS(516), - [sym_word] = ACTIONS(520), - [sym_comment] = ACTIONS(52), - }, - [485] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(1344), - [anon_sym_SEMI_SEMI] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - }, - [486] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(1344), - [anon_sym_SEMI_SEMI] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(238), - [anon_sym_LT_AMP] = ACTIONS(238), - [anon_sym_GT_AMP] = ACTIONS(238), - [anon_sym_DQUOTE] = ACTIONS(238), - [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(238), - [anon_sym_LT_LPAREN] = ACTIONS(238), - [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - }, - [487] = { - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_PIPE_AMP] = ACTIONS(1350), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_BQUOTE] = ACTIONS(1350), - [sym_comment] = ACTIONS(52), - }, - [488] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1178), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_LT_LT_DASH] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(804), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_word] = ACTIONS(806), - [sym_comment] = ACTIONS(52), - }, - [489] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_PIPE_AMP] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(812), - [anon_sym_PIPE_PIPE] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(812), - [anon_sym_LT_AMP] = ACTIONS(812), - [anon_sym_GT_AMP] = ACTIONS(812), - [anon_sym_LT_LT] = ACTIONS(1180), - [anon_sym_LT_LT_DASH] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(812), - [sym_raw_string] = ACTIONS(812), - [anon_sym_DOLLAR] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), - [anon_sym_BQUOTE] = ACTIONS(812), - [anon_sym_LT_LPAREN] = ACTIONS(812), - [anon_sym_GT_LPAREN] = ACTIONS(812), - [sym_word] = ACTIONS(814), - [sym_comment] = ACTIONS(52), - }, - [490] = { - [sym_string] = STATE(715), - [sym_simple_expansion] = STATE(715), - [sym_expansion] = STATE(715), - [sym_command_substitution] = STATE(715), - [sym_process_substitution] = STATE(715), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(192), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(1354), - [sym_comment] = ACTIONS(52), - }, - [491] = { - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1358), - [sym_comment] = ACTIONS(52), - }, - [492] = { - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1362), - [sym_comment] = ACTIONS(52), - }, - [493] = { - [sym_file_descriptor] = ACTIONS(828), + [433] = { [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1194), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1234), [anon_sym_DQUOTE] = ACTIONS(828), [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), [anon_sym_BQUOTE] = ACTIONS(828), @@ -14919,232 +14299,587 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(830), [sym_comment] = ACTIONS(52), }, - [494] = { - [anon_sym_AT] = ACTIONS(1364), + [434] = { + [sym_string] = STATE(673), + [sym_simple_expansion] = STATE(673), + [sym_expansion] = STATE(673), + [sym_command_substitution] = STATE(673), + [sym_process_substitution] = STATE(673), + [anon_sym_DQUOTE] = ACTIONS(98), + [sym_raw_string] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_LT_LPAREN] = ACTIONS(110), + [anon_sym_GT_LPAREN] = ACTIONS(110), + [sym_word] = ACTIONS(1270), [sym_comment] = ACTIONS(52), }, - [495] = { - [sym_concatenation] = STATE(722), - [sym_string] = STATE(721), - [sym_simple_expansion] = STATE(721), - [sym_expansion] = STATE(721), - [sym_command_substitution] = STATE(721), - [sym_process_substitution] = STATE(721), + [435] = { + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1274), + [sym_comment] = ACTIONS(52), + }, + [436] = { + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1278), + [sym_comment] = ACTIONS(52), + }, + [437] = { + [sym__concat] = ACTIONS(844), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_word] = ACTIONS(846), + [sym_comment] = ACTIONS(52), + }, + [438] = { + [anon_sym_AT] = ACTIONS(1280), + [sym_comment] = ACTIONS(52), + }, + [439] = { + [sym_concatenation] = STATE(680), + [sym_string] = STATE(679), + [sym_simple_expansion] = STATE(679), + [sym_expansion] = STATE(679), + [sym_command_substitution] = STATE(679), + [sym_process_substitution] = STATE(679), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1282), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1368), + [sym_word] = ACTIONS(1284), [sym_comment] = ACTIONS(52), }, - [496] = { - [sym_file_descriptor] = ACTIONS(838), - [sym__concat] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_PIPE_AMP] = ACTIONS(838), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_GT] = ACTIONS(1202), - [anon_sym_GT_GT] = ACTIONS(838), - [anon_sym_AMP_GT] = ACTIONS(1202), - [anon_sym_AMP_GT_GT] = ACTIONS(838), - [anon_sym_LT_AMP] = ACTIONS(838), - [anon_sym_GT_AMP] = ACTIONS(838), - [anon_sym_LT_LT] = ACTIONS(1202), - [anon_sym_LT_LT_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(838), - [sym_raw_string] = ACTIONS(838), - [anon_sym_DOLLAR] = ACTIONS(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), - [anon_sym_BQUOTE] = ACTIONS(838), - [anon_sym_LT_LPAREN] = ACTIONS(838), - [anon_sym_GT_LPAREN] = ACTIONS(838), - [sym_word] = ACTIONS(840), + [440] = { + [sym__concat] = ACTIONS(854), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_raw_string] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [anon_sym_LT_LPAREN] = ACTIONS(854), + [anon_sym_GT_LPAREN] = ACTIONS(854), + [sym_word] = ACTIONS(856), [sym_comment] = ACTIONS(52), }, - [497] = { - [anon_sym_AT] = ACTIONS(1370), + [441] = { + [anon_sym_AT] = ACTIONS(1286), [sym_comment] = ACTIONS(52), }, - [498] = { - [sym_concatenation] = STATE(725), - [sym_string] = STATE(724), - [sym_simple_expansion] = STATE(724), - [sym_expansion] = STATE(724), - [sym_command_substitution] = STATE(724), - [sym_process_substitution] = STATE(724), + [442] = { + [sym_concatenation] = STATE(683), + [sym_string] = STATE(682), + [sym_simple_expansion] = STATE(682), + [sym_expansion] = STATE(682), + [sym_command_substitution] = STATE(682), + [sym_process_substitution] = STATE(682), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1372), + [sym_raw_string] = ACTIONS(1288), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1374), + [sym_word] = ACTIONS(1290), [sym_comment] = ACTIONS(52), }, - [499] = { - [sym_file_descriptor] = ACTIONS(918), - [sym__concat] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_PIPE_AMP] = ACTIONS(918), - [anon_sym_AMP_AMP] = ACTIONS(918), - [anon_sym_PIPE_PIPE] = ACTIONS(1210), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(918), - [anon_sym_AMP_GT] = ACTIONS(1210), - [anon_sym_AMP_GT_GT] = ACTIONS(918), - [anon_sym_LT_AMP] = ACTIONS(918), - [anon_sym_GT_AMP] = ACTIONS(918), - [anon_sym_LT_LT] = ACTIONS(1210), - [anon_sym_LT_LT_DASH] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym_raw_string] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(918), - [anon_sym_LT_LPAREN] = ACTIONS(918), - [anon_sym_GT_LPAREN] = ACTIONS(918), - [sym_word] = ACTIONS(920), + [443] = { + [sym__concat] = ACTIONS(946), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_raw_string] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(1264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), + [anon_sym_BQUOTE] = ACTIONS(946), + [anon_sym_LT_LPAREN] = ACTIONS(946), + [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_word] = ACTIONS(948), [sym_comment] = ACTIONS(52), }, - [500] = { - [sym_file_descriptor] = ACTIONS(956), - [sym__concat] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_PIPE_AMP] = ACTIONS(956), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_GT] = ACTIONS(1212), - [anon_sym_GT_GT] = ACTIONS(956), - [anon_sym_AMP_GT] = ACTIONS(1212), - [anon_sym_AMP_GT_GT] = ACTIONS(956), - [anon_sym_LT_AMP] = ACTIONS(956), - [anon_sym_GT_AMP] = ACTIONS(956), - [anon_sym_LT_LT] = ACTIONS(1212), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_raw_string] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(1212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_BQUOTE] = ACTIONS(956), - [anon_sym_LT_LPAREN] = ACTIONS(956), - [anon_sym_GT_LPAREN] = ACTIONS(956), - [sym_word] = ACTIONS(958), + [444] = { + [sym__concat] = ACTIONS(984), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym_raw_string] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(984), + [anon_sym_LT_LPAREN] = ACTIONS(984), + [anon_sym_GT_LPAREN] = ACTIONS(984), + [sym_word] = ACTIONS(986), [sym_comment] = ACTIONS(52), }, - [501] = { - [sym_compound_statement] = STATE(727), - [anon_sym_LBRACE] = ACTIONS(1376), + [445] = { + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(820), + [sym_variable_name] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1232), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_AMP_GT] = ACTIONS(1232), + [anon_sym_AMP_GT_GT] = ACTIONS(820), + [anon_sym_LT_AMP] = ACTIONS(820), + [anon_sym_GT_AMP] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(820), + [sym_raw_string] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_LT_LPAREN] = ACTIONS(820), + [anon_sym_GT_LPAREN] = ACTIONS(820), + [sym_word] = ACTIONS(1232), [sym_comment] = ACTIONS(52), }, - [502] = { - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_PIPE_AMP] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [anon_sym_PIPE_PIPE] = ACTIONS(1380), - [anon_sym_BQUOTE] = ACTIONS(1380), + [446] = { + [sym_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [sym_variable_name] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(1234), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), + [sym_word] = ACTIONS(1234), [sym_comment] = ACTIONS(52), }, - [503] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_PIPE_AMP] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [447] = { + [sym_string] = STATE(684), + [sym_simple_expansion] = STATE(684), + [sym_expansion] = STATE(684), + [sym_command_substitution] = STATE(684), + [sym_process_substitution] = STATE(684), + [anon_sym_DQUOTE] = ACTIONS(114), + [sym_raw_string] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), + [anon_sym_BQUOTE] = ACTIONS(124), + [anon_sym_LT_LPAREN] = ACTIONS(126), + [anon_sym_GT_LPAREN] = ACTIONS(126), + [sym_word] = ACTIONS(1294), [sym_comment] = ACTIONS(52), }, - [504] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), + [448] = { + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1298), [sym_comment] = ACTIONS(52), }, - [505] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [449] = { + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1302), [sym_comment] = ACTIONS(52), }, - [506] = { - [sym_concatenation] = STATE(729), - [sym_string] = STATE(728), - [sym_simple_expansion] = STATE(728), - [sym_expansion] = STATE(728), - [sym_command_substitution] = STATE(728), - [sym_process_substitution] = STATE(728), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_raw_string] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(934), - [anon_sym_BQUOTE] = ACTIONS(936), - [anon_sym_LT_LPAREN] = ACTIONS(938), - [anon_sym_GT_LPAREN] = ACTIONS(938), - [sym_word] = ACTIONS(1388), + [450] = { + [sym_file_descriptor] = ACTIONS(844), + [sym__concat] = ACTIONS(844), + [sym_variable_name] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1248), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(1248), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_word] = ACTIONS(1248), [sym_comment] = ACTIONS(52), }, - [507] = { + [451] = { + [anon_sym_AT] = ACTIONS(1304), + [sym_comment] = ACTIONS(52), + }, + [452] = { + [sym_concatenation] = STATE(691), + [sym_string] = STATE(690), + [sym_simple_expansion] = STATE(690), + [sym_expansion] = STATE(690), + [sym_command_substitution] = STATE(690), + [sym_process_substitution] = STATE(690), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1308), + [sym_comment] = ACTIONS(52), + }, + [453] = { + [sym_file_descriptor] = ACTIONS(854), + [sym__concat] = ACTIONS(854), + [sym_variable_name] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_AMP_GT_GT] = ACTIONS(854), + [anon_sym_LT_AMP] = ACTIONS(854), + [anon_sym_GT_AMP] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_raw_string] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [anon_sym_LT_LPAREN] = ACTIONS(854), + [anon_sym_GT_LPAREN] = ACTIONS(854), + [sym_word] = ACTIONS(1256), + [sym_comment] = ACTIONS(52), + }, + [454] = { + [anon_sym_AT] = ACTIONS(1310), + [sym_comment] = ACTIONS(52), + }, + [455] = { + [sym_concatenation] = STATE(694), + [sym_string] = STATE(693), + [sym_simple_expansion] = STATE(693), + [sym_expansion] = STATE(693), + [sym_command_substitution] = STATE(693), + [sym_process_substitution] = STATE(693), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1314), + [sym_comment] = ACTIONS(52), + }, + [456] = { + [sym_file_descriptor] = ACTIONS(946), + [sym__concat] = ACTIONS(946), + [sym_variable_name] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1264), + [anon_sym_GT_GT] = ACTIONS(946), + [anon_sym_AMP_GT] = ACTIONS(1264), + [anon_sym_AMP_GT_GT] = ACTIONS(946), + [anon_sym_LT_AMP] = ACTIONS(946), + [anon_sym_GT_AMP] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_raw_string] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(1264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), + [anon_sym_BQUOTE] = ACTIONS(946), + [anon_sym_LT_LPAREN] = ACTIONS(946), + [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_word] = ACTIONS(1264), + [sym_comment] = ACTIONS(52), + }, + [457] = { + [sym_file_descriptor] = ACTIONS(984), + [sym__concat] = ACTIONS(984), + [sym_variable_name] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(984), + [anon_sym_LT_AMP] = ACTIONS(984), + [anon_sym_GT_AMP] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym_raw_string] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(984), + [anon_sym_LT_LPAREN] = ACTIONS(984), + [anon_sym_GT_LPAREN] = ACTIONS(984), + [sym_word] = ACTIONS(1266), + [sym_comment] = ACTIONS(52), + }, + [458] = { + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1318), + [sym_comment] = ACTIONS(52), + }, + [459] = { + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1322), + [sym_comment] = ACTIONS(52), + }, + [460] = { + [anon_sym_DQUOTE] = ACTIONS(846), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(846), + [anon_sym_BQUOTE] = ACTIONS(846), + [sym_comment] = ACTIONS(142), + }, + [461] = { + [anon_sym_AT] = ACTIONS(1324), + [sym_comment] = ACTIONS(52), + }, + [462] = { + [sym_concatenation] = STATE(701), + [sym_string] = STATE(700), + [sym_simple_expansion] = STATE(700), + [sym_expansion] = STATE(700), + [sym_command_substitution] = STATE(700), + [sym_process_substitution] = STATE(700), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1326), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1328), + [sym_comment] = ACTIONS(52), + }, + [463] = { + [anon_sym_DQUOTE] = ACTIONS(856), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(856), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(856), + [anon_sym_BQUOTE] = ACTIONS(856), + [sym_comment] = ACTIONS(142), + }, + [464] = { + [anon_sym_AT] = ACTIONS(1330), + [sym_comment] = ACTIONS(52), + }, + [465] = { + [sym_concatenation] = STATE(704), + [sym_string] = STATE(703), + [sym_simple_expansion] = STATE(703), + [sym_expansion] = STATE(703), + [sym_command_substitution] = STATE(703), + [sym_process_substitution] = STATE(703), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1332), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1334), + [sym_comment] = ACTIONS(52), + }, + [466] = { + [anon_sym_DQUOTE] = ACTIONS(948), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(948), + [anon_sym_BQUOTE] = ACTIONS(948), + [sym_comment] = ACTIONS(142), + }, + [467] = { + [sym_file_descriptor] = ACTIONS(1336), + [sym__concat] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1338), + [anon_sym_GT_GT] = ACTIONS(1338), + [anon_sym_AMP_GT] = ACTIONS(1338), + [anon_sym_AMP_GT_GT] = ACTIONS(1338), + [anon_sym_LT_AMP] = ACTIONS(1338), + [anon_sym_GT_AMP] = ACTIONS(1338), + [anon_sym_LT_LT] = ACTIONS(1338), + [anon_sym_LT_LT_DASH] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_raw_string] = ACTIONS(1338), + [anon_sym_DOLLAR] = ACTIONS(1338), + [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(1338), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + }, + [468] = { + [sym_file_descriptor] = ACTIONS(1340), + [sym__concat] = 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_LT_LT] = ACTIONS(1342), + [anon_sym_LT_LT_DASH] = 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(142), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + }, + [469] = { + [anon_sym_AT] = ACTIONS(1344), + [sym_comment] = ACTIONS(52), + }, + [470] = { + [sym_file_descriptor] = ACTIONS(1346), + [sym__concat] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_SEMI_SEMI] = ACTIONS(1348), + [anon_sym_PIPE_AMP] = ACTIONS(1348), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_GT_GT] = ACTIONS(1348), + [anon_sym_AMP_GT] = ACTIONS(1348), + [anon_sym_AMP_GT_GT] = ACTIONS(1348), + [anon_sym_LT_AMP] = ACTIONS(1348), + [anon_sym_GT_AMP] = ACTIONS(1348), + [anon_sym_LT_LT] = ACTIONS(1348), + [anon_sym_LT_LT_DASH] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_raw_string] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_LT_LPAREN] = ACTIONS(1348), + [anon_sym_GT_LPAREN] = ACTIONS(1348), + [sym_word] = ACTIONS(1348), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LF] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + }, + [471] = { + [anon_sym_AT] = ACTIONS(1350), + [sym_comment] = ACTIONS(52), + }, + [472] = { + [anon_sym_RBRACK] = ACTIONS(1352), + [sym_comment] = ACTIONS(52), + }, + [473] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1354), + [sym_comment] = ACTIONS(52), + }, + [474] = { + [anon_sym_RBRACE] = ACTIONS(1354), + [sym_comment] = ACTIONS(52), + }, + [475] = { + [anon_sym_RBRACK] = ACTIONS(1356), + [sym_comment] = ACTIONS(52), + }, + [476] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1358), + [sym_comment] = ACTIONS(52), + }, + [477] = { + [anon_sym_RBRACE] = ACTIONS(1358), + [sym_comment] = ACTIONS(52), + }, + [478] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_PIPE_AMP] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_word] = ACTIONS(602), + [sym_comment] = ACTIONS(52), + }, + [479] = { + [aux_sym_array_repeat1] = STATE(712), + [anon_sym_RPAREN] = ACTIONS(1362), + [sym_word] = ACTIONS(606), + [sym_comment] = ACTIONS(52), + }, + [480] = { [sym_simple_expansion] = STATE(78), [sym_expansion] = STATE(78), [sym_command_substitution] = STATE(78), - [aux_sym_string_repeat1] = STATE(731), - [anon_sym_DQUOTE] = ACTIONS(1390), + [aux_sym_string_repeat1] = STATE(714), + [anon_sym_DQUOTE] = ACTIONS(1364), [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), @@ -15152,48 +14887,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [508] = { - [aux_sym_concatenation_repeat1] = STATE(733), - [sym_file_descriptor] = ACTIONS(366), - [sym__concat] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_RPAREN] = ACTIONS(366), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(366), - [anon_sym_PIPE_PIPE] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(366), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(366), - [anon_sym_LT_AMP] = ACTIONS(366), - [anon_sym_GT_AMP] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_LT_LT_DASH] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(366), + [481] = { + [aux_sym_concatenation_repeat1] = STATE(716), + [sym_file_descriptor] = ACTIONS(600), + [sym__concat] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_PIPE_AMP] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_word] = ACTIONS(602), [sym_comment] = ACTIONS(52), }, - [509] = { - [sym_special_variable_name] = STATE(736), - [anon_sym_DOLLAR] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), + [482] = { + [sym_special_variable_name] = STATE(719), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(1368), + [anon_sym_AT] = ACTIONS(1368), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_0] = ACTIONS(1398), - [anon_sym__] = ACTIONS(1398), + [sym_simple_variable_name] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_QMARK] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_0] = ACTIONS(1372), + [anon_sym__] = ACTIONS(1372), }, - [510] = { - [sym_special_variable_name] = STATE(739), + [483] = { + [sym_special_variable_name] = STATE(722), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1374), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1402), + [sym_simple_variable_name] = ACTIONS(1376), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -15201,19 +14943,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [511] = { - [sym_for_statement] = STATE(740), - [sym_while_statement] = STATE(740), - [sym_if_statement] = STATE(740), - [sym_case_statement] = STATE(740), - [sym_function_definition] = STATE(740), - [sym_subshell] = STATE(740), - [sym_pipeline] = STATE(740), - [sym_list] = STATE(740), - [sym_bracket_command] = STATE(740), - [sym_command] = STATE(740), + [484] = { + [sym_for_statement] = STATE(723), + [sym_while_statement] = STATE(723), + [sym_if_statement] = STATE(723), + [sym_case_statement] = STATE(723), + [sym_function_definition] = STATE(723), + [sym_subshell] = STATE(723), + [sym_pipeline] = STATE(723), + [sym_list] = STATE(723), + [sym_bracket_command] = STATE(723), + [sym_command] = STATE(723), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(741), + [sym_environment_variable_assignment] = STATE(724), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -15251,19 +14993,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [512] = { - [sym_for_statement] = STATE(742), - [sym_while_statement] = STATE(742), - [sym_if_statement] = STATE(742), - [sym_case_statement] = STATE(742), - [sym_function_definition] = STATE(742), - [sym_subshell] = STATE(742), - [sym_pipeline] = STATE(742), - [sym_list] = STATE(742), - [sym_bracket_command] = STATE(742), - [sym_command] = STATE(742), + [485] = { + [sym_for_statement] = STATE(725), + [sym_while_statement] = STATE(725), + [sym_if_statement] = STATE(725), + [sym_case_statement] = STATE(725), + [sym_function_definition] = STATE(725), + [sym_subshell] = STATE(725), + [sym_pipeline] = STATE(725), + [sym_list] = STATE(725), + [sym_bracket_command] = STATE(725), + [sym_command] = STATE(725), [sym_command_name] = STATE(117), - [sym_environment_variable_assignment] = STATE(743), + [sym_environment_variable_assignment] = STATE(726), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -15301,19 +15043,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [513] = { - [sym_for_statement] = STATE(744), - [sym_while_statement] = STATE(744), - [sym_if_statement] = STATE(744), - [sym_case_statement] = STATE(744), - [sym_function_definition] = STATE(744), - [sym_subshell] = STATE(744), - [sym_pipeline] = STATE(744), - [sym_list] = STATE(744), - [sym_bracket_command] = STATE(744), - [sym_command] = STATE(744), + [486] = { + [sym_for_statement] = STATE(727), + [sym_while_statement] = STATE(727), + [sym_if_statement] = STATE(727), + [sym_case_statement] = STATE(727), + [sym_function_definition] = STATE(727), + [sym_subshell] = STATE(727), + [sym_pipeline] = STATE(727), + [sym_list] = STATE(727), + [sym_bracket_command] = STATE(727), + [sym_command] = STATE(727), [sym_command_name] = STATE(111), - [sym_environment_variable_assignment] = STATE(745), + [sym_environment_variable_assignment] = STATE(728), [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(114), @@ -15351,300 +15093,531 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [514] = { - [sym_file_descriptor] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_RPAREN] = ACTIONS(366), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(366), - [anon_sym_PIPE_PIPE] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(366), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(366), - [anon_sym_LT_AMP] = ACTIONS(366), - [anon_sym_GT_AMP] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_LT_LT_DASH] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(366), + [487] = { + [sym_concatenation] = STATE(383), + [sym_string] = STATE(377), + [sym_simple_expansion] = STATE(377), + [sym_expansion] = STATE(377), + [sym_command_substitution] = STATE(377), + [sym_process_substitution] = STATE(377), + [aux_sym_for_statement_repeat1] = STATE(729), + [anon_sym_DQUOTE] = ACTIONS(622), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(632), + [anon_sym_LT_LPAREN] = ACTIONS(634), + [anon_sym_GT_LPAREN] = ACTIONS(634), + [sym_word] = ACTIONS(636), [sym_comment] = ACTIONS(52), }, - [515] = { - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_PIPE_AMP] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(986), - [anon_sym_PIPE_PIPE] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_GT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(1404), - [anon_sym_AMP_GT_GT] = ACTIONS(986), - [anon_sym_LT_AMP] = ACTIONS(986), - [anon_sym_GT_AMP] = ACTIONS(986), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_LT_LT_DASH] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(986), + [488] = { + [sym__terminated_statement] = STATE(386), + [sym_for_statement] = STATE(387), + [sym_while_statement] = STATE(387), + [sym_if_statement] = STATE(387), + [sym_case_statement] = STATE(387), + [sym_function_definition] = STATE(387), + [sym_subshell] = STATE(387), + [sym_pipeline] = STATE(387), + [sym_list] = STATE(387), + [sym_bracket_command] = STATE(387), + [sym_command] = STATE(387), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(388), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(731), + [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(1378), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [516] = { - [sym_simple_expansion] = STATE(547), - [sym_expansion] = STATE(547), - [aux_sym_heredoc_repeat1] = STATE(747), - [sym__heredoc_middle] = ACTIONS(990), - [sym__heredoc_end] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(996), + [489] = { + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_RPAREN] = ACTIONS(1382), + [anon_sym_PIPE_AMP] = ACTIONS(1382), + [anon_sym_AMP_AMP] = ACTIONS(1382), + [anon_sym_PIPE_PIPE] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), [sym_comment] = ACTIONS(52), }, - [517] = { - [sym_file_descriptor] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(1408), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_PIPE_AMP] = ACTIONS(998), - [anon_sym_AMP_AMP] = ACTIONS(998), - [anon_sym_PIPE_PIPE] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1408), - [anon_sym_GT] = ACTIONS(1408), - [anon_sym_GT_GT] = ACTIONS(998), - [anon_sym_AMP_GT] = ACTIONS(1408), - [anon_sym_AMP_GT_GT] = ACTIONS(998), - [anon_sym_LT_AMP] = ACTIONS(998), - [anon_sym_GT_AMP] = ACTIONS(998), - [anon_sym_LT_LT] = ACTIONS(1408), - [anon_sym_LT_LT_DASH] = ACTIONS(998), - [anon_sym_BQUOTE] = ACTIONS(998), + [490] = { + [sym__terminated_statement] = STATE(393), + [sym_for_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_elif_clause] = STATE(395), + [sym_else_clause] = STATE(733), + [sym_case_statement] = STATE(394), + [sym_function_definition] = STATE(394), + [sym_subshell] = STATE(394), + [sym_pipeline] = STATE(394), + [sym_list] = STATE(394), + [sym_bracket_command] = STATE(394), + [sym_command] = STATE(394), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(397), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(734), + [aux_sym_if_statement_repeat1] = STATE(735), + [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(1384), + [anon_sym_elif] = ACTIONS(644), + [anon_sym_else] = ACTIONS(646), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [518] = { - [aux_sym_concatenation_repeat1] = STATE(276), - [sym_file_descriptor] = ACTIONS(720), - [sym__concat] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_PIPE_AMP] = ACTIONS(720), - [anon_sym_AMP_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(720), - [anon_sym_AMP_GT] = ACTIONS(718), - [anon_sym_AMP_GT_GT] = ACTIONS(720), - [anon_sym_LT_AMP] = ACTIONS(720), - [anon_sym_GT_AMP] = ACTIONS(720), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_LT_LT_DASH] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym_raw_string] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), - [anon_sym_BQUOTE] = ACTIONS(720), - [anon_sym_LT_LPAREN] = ACTIONS(720), - [anon_sym_GT_LPAREN] = ACTIONS(720), - [sym_word] = ACTIONS(722), + [491] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1386), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_LF] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + }, + [492] = { + [anon_sym_in] = ACTIONS(1388), [sym_comment] = ACTIONS(52), }, - [519] = { - [sym_file_descriptor] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_PIPE_AMP] = ACTIONS(720), - [anon_sym_AMP_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(720), - [anon_sym_AMP_GT] = ACTIONS(718), - [anon_sym_AMP_GT_GT] = ACTIONS(720), - [anon_sym_LT_AMP] = ACTIONS(720), - [anon_sym_GT_AMP] = ACTIONS(720), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_LT_LT_DASH] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym_raw_string] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), - [anon_sym_BQUOTE] = ACTIONS(720), - [anon_sym_LT_LPAREN] = ACTIONS(720), - [anon_sym_GT_LPAREN] = ACTIONS(720), - [sym_word] = ACTIONS(722), + [493] = { + [anon_sym_RPAREN] = ACTIONS(1390), [sym_comment] = ACTIONS(52), }, - [520] = { - [sym_file_redirect] = STATE(521), - [sym_heredoc_redirect] = STATE(521), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_PIPE_AMP] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE_PIPE] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), - [anon_sym_BQUOTE] = ACTIONS(1412), + [494] = { + [sym_file_redirect] = STATE(739), + [sym_file_descriptor] = ACTIONS(936), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_PIPE_AMP] = ACTIONS(1394), + [anon_sym_AMP_AMP] = ACTIONS(1394), + [anon_sym_PIPE_PIPE] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(944), + [anon_sym_LT_AMP] = ACTIONS(944), + [anon_sym_GT_AMP] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(1394), [sym_comment] = ACTIONS(52), }, - [521] = { - [sym_file_descriptor] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_PIPE_AMP] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1004), - [anon_sym_PIPE_PIPE] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_GT_GT] = ACTIONS(1004), - [anon_sym_AMP_GT] = ACTIONS(1414), - [anon_sym_AMP_GT_GT] = ACTIONS(1004), - [anon_sym_LT_AMP] = ACTIONS(1004), - [anon_sym_GT_AMP] = ACTIONS(1004), - [anon_sym_LT_LT] = ACTIONS(1414), - [anon_sym_LT_LT_DASH] = ACTIONS(1004), - [anon_sym_BQUOTE] = ACTIONS(1004), + [495] = { + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_PIPE_AMP] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_BQUOTE] = ACTIONS(1398), [sym_comment] = ACTIONS(52), }, - [522] = { - [sym_file_redirect] = STATE(297), - [sym_heredoc_redirect] = STATE(297), - [sym_concatenation] = STATE(519), - [sym_string] = STATE(518), - [sym_simple_expansion] = STATE(518), - [sym_expansion] = STATE(518), - [sym_command_substitution] = STATE(518), - [sym_process_substitution] = STATE(518), - [aux_sym_command_repeat2] = STATE(748), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_PIPE_AMP] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), + [496] = { + [sym_file_descriptor] = ACTIONS(530), + [sym_variable_name] = ACTIONS(530), + [anon_sym_for] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_function] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_AMP_GT] = ACTIONS(532), + [anon_sym_AMP_GT_GT] = ACTIONS(530), + [anon_sym_LT_AMP] = ACTIONS(530), + [anon_sym_GT_AMP] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [sym_raw_string] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_LT_LPAREN] = ACTIONS(530), + [anon_sym_GT_LPAREN] = ACTIONS(530), + [sym_word] = ACTIONS(534), + [sym_comment] = ACTIONS(52), + }, + [497] = { + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_SEMI_SEMI] = ACTIONS(1404), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_LF] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + }, + [498] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_SEMI_SEMI] = ACTIONS(1404), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_LF] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + }, + [499] = { + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1408), + [anon_sym_PIPE_AMP] = ACTIONS(1408), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [sym_comment] = ACTIONS(52), + }, + [500] = { + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1232), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_AMP_GT] = ACTIONS(1232), + [anon_sym_AMP_GT_GT] = ACTIONS(820), + [anon_sym_LT_AMP] = ACTIONS(820), + [anon_sym_GT_AMP] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(1232), + [anon_sym_LT_LT_DASH] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(820), + [sym_raw_string] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_LT_LPAREN] = ACTIONS(820), + [anon_sym_GT_LPAREN] = ACTIONS(820), + [sym_word] = ACTIONS(822), + [sym_comment] = ACTIONS(52), + }, + [501] = { + [sym_file_descriptor] = ACTIONS(828), + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(1234), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(1234), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(1234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), + [sym_word] = ACTIONS(830), + [sym_comment] = ACTIONS(52), + }, + [502] = { + [sym_string] = STATE(742), + [sym_simple_expansion] = STATE(742), + [sym_expansion] = STATE(742), + [sym_command_substitution] = STATE(742), + [sym_process_substitution] = STATE(742), [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(952), + [sym_raw_string] = ACTIONS(1410), [anon_sym_DOLLAR] = ACTIONS(186), [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), [anon_sym_BQUOTE] = ACTIONS(192), [anon_sym_LT_LPAREN] = ACTIONS(194), [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(954), + [sym_word] = ACTIONS(1412), [sym_comment] = ACTIONS(52), }, - [523] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_PIPE_AMP] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(1380), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [503] = { + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1416), [sym_comment] = ACTIONS(52), }, - [524] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_BQUOTE] = ACTIONS(1382), + [504] = { + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1420), [sym_comment] = ACTIONS(52), }, - [525] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [505] = { + [sym_file_descriptor] = ACTIONS(844), + [sym__concat] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1248), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(1248), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(1248), + [anon_sym_LT_LT_DASH] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_word] = ACTIONS(846), [sym_comment] = ACTIONS(52), }, - [526] = { - [sym_file_redirect] = STATE(297), - [sym_heredoc_redirect] = STATE(297), - [sym_concatenation] = STATE(519), - [sym_string] = STATE(518), - [sym_simple_expansion] = STATE(518), - [sym_expansion] = STATE(518), - [sym_command_substitution] = STATE(518), - [sym_process_substitution] = STATE(518), - [aux_sym_command_repeat2] = STATE(748), - [sym_file_descriptor] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), - [anon_sym_DQUOTE] = ACTIONS(182), - [sym_raw_string] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(1412), - [anon_sym_LT_LPAREN] = ACTIONS(194), - [anon_sym_GT_LPAREN] = ACTIONS(194), - [sym_word] = ACTIONS(954), + [506] = { + [anon_sym_AT] = ACTIONS(1422), [sym_comment] = ACTIONS(52), }, - [527] = { - [sym__terminated_statement] = STATE(22), + [507] = { + [sym_concatenation] = STATE(749), + [sym_string] = STATE(748), + [sym_simple_expansion] = STATE(748), + [sym_expansion] = STATE(748), + [sym_command_substitution] = STATE(748), + [sym_process_substitution] = STATE(748), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1426), + [sym_comment] = ACTIONS(52), + }, + [508] = { + [sym_file_descriptor] = ACTIONS(854), + [sym__concat] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_PIPE_AMP] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_AMP_GT_GT] = ACTIONS(854), + [anon_sym_LT_AMP] = ACTIONS(854), + [anon_sym_GT_AMP] = ACTIONS(854), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_LT_LT_DASH] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_raw_string] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [anon_sym_LT_LPAREN] = ACTIONS(854), + [anon_sym_GT_LPAREN] = ACTIONS(854), + [sym_word] = ACTIONS(856), + [sym_comment] = ACTIONS(52), + }, + [509] = { + [anon_sym_AT] = ACTIONS(1428), + [sym_comment] = ACTIONS(52), + }, + [510] = { + [sym_concatenation] = STATE(752), + [sym_string] = STATE(751), + [sym_simple_expansion] = STATE(751), + [sym_expansion] = STATE(751), + [sym_command_substitution] = STATE(751), + [sym_process_substitution] = STATE(751), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(1432), + [sym_comment] = ACTIONS(52), + }, + [511] = { + [sym_file_descriptor] = ACTIONS(946), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_PIPE_AMP] = ACTIONS(946), + [anon_sym_AMP_AMP] = ACTIONS(946), + [anon_sym_PIPE_PIPE] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1264), + [anon_sym_GT_GT] = ACTIONS(946), + [anon_sym_AMP_GT] = ACTIONS(1264), + [anon_sym_AMP_GT_GT] = ACTIONS(946), + [anon_sym_LT_AMP] = ACTIONS(946), + [anon_sym_GT_AMP] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(1264), + [anon_sym_LT_LT_DASH] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_raw_string] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(1264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), + [anon_sym_BQUOTE] = ACTIONS(946), + [anon_sym_LT_LPAREN] = ACTIONS(946), + [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_word] = ACTIONS(948), + [sym_comment] = ACTIONS(52), + }, + [512] = { + [sym_file_descriptor] = ACTIONS(984), + [sym__concat] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE_AMP] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(984), + [anon_sym_LT_AMP] = ACTIONS(984), + [anon_sym_GT_AMP] = ACTIONS(984), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym_raw_string] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(984), + [anon_sym_LT_LPAREN] = ACTIONS(984), + [anon_sym_GT_LPAREN] = ACTIONS(984), + [sym_word] = ACTIONS(986), + [sym_comment] = ACTIONS(52), + }, + [513] = { + [sym_compound_statement] = STATE(753), + [anon_sym_LBRACE] = ACTIONS(478), + [sym_comment] = ACTIONS(52), + }, + [514] = { + [sym_file_descriptor] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_PIPE_AMP] = ACTIONS(988), + [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_PIPE_PIPE] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_AMP_GT] = ACTIONS(1434), + [anon_sym_AMP_GT_GT] = ACTIONS(988), + [anon_sym_LT_AMP] = ACTIONS(988), + [anon_sym_GT_AMP] = ACTIONS(988), + [anon_sym_BQUOTE] = ACTIONS(988), + [sym_comment] = ACTIONS(52), + }, + [515] = { + [sym__terminated_statement] = STATE(136), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), [sym_if_statement] = STATE(23), @@ -15665,7 +15638,6 @@ 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(750), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -15675,7 +15647,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(1416), + [anon_sym_RBRACE] = ACTIONS(1436), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_LT] = ACTIONS(32), @@ -15696,142 +15668,1011 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [528] = { - [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(142), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), + [516] = { + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1440), + [anon_sym_AMP_GT] = ACTIONS(1438), + [anon_sym_AMP_GT_GT] = ACTIONS(1440), + [anon_sym_LT_AMP] = ACTIONS(1440), + [anon_sym_GT_AMP] = ACTIONS(1440), + [sym_comment] = ACTIONS(52), }, - [529] = { - [aux_sym_concatenation_repeat1] = STATE(534), - [sym_file_descriptor] = ACTIONS(566), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_SEMI_SEMI] = ACTIONS(1420), - [anon_sym_PIPE_AMP] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1420), - [anon_sym_AMP_GT] = ACTIONS(1420), - [anon_sym_AMP_GT_GT] = ACTIONS(1420), - [anon_sym_LT_AMP] = ACTIONS(1420), - [anon_sym_GT_AMP] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_LT_LT_DASH] = ACTIONS(1420), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), + [517] = { + [sym_concatenation] = STATE(763), + [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_DQUOTE] = ACTIONS(1442), + [sym_raw_string] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_word] = ACTIONS(1456), + [sym_comment] = ACTIONS(52), }, - [530] = { - [sym_file_descriptor] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_SEMI_SEMI] = ACTIONS(1420), - [anon_sym_PIPE_AMP] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1420), - [anon_sym_AMP_GT] = ACTIONS(1420), - [anon_sym_AMP_GT_GT] = ACTIONS(1420), - [anon_sym_LT_AMP] = ACTIONS(1420), - [anon_sym_GT_AMP] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_LT_LT_DASH] = ACTIONS(1420), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), + [518] = { + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_PIPE_AMP] = ACTIONS(1394), + [anon_sym_AMP_AMP] = ACTIONS(1394), + [anon_sym_PIPE_PIPE] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1394), + [sym_comment] = ACTIONS(52), }, - [531] = { - [sym_file_descriptor] = ACTIONS(382), - [sym__concat] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_SEMI_SEMI] = ACTIONS(384), - [anon_sym_PIPE_AMP] = ACTIONS(384), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(384), - [anon_sym_LT_AMP] = ACTIONS(384), - [anon_sym_GT_AMP] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_LT_LT_DASH] = ACTIONS(384), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LF] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(384), + [519] = { + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_PIPE_AMP] = ACTIONS(1460), + [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_PIPE_PIPE] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(1460), + [sym_comment] = ACTIONS(52), }, - [532] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(1422), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [520] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_PIPE_AMP] = ACTIONS(1460), + [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [521] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [sym_comment] = ACTIONS(52), + }, + [522] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [523] = { + [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(954), + [sym_raw_string] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(964), + [anon_sym_LT_LPAREN] = ACTIONS(966), + [anon_sym_GT_LPAREN] = ACTIONS(966), + [sym_word] = ACTIONS(1468), + [sym_comment] = ACTIONS(52), + }, + [524] = { + [sym_simple_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [aux_sym_string_repeat1] = STATE(767), + [anon_sym_DQUOTE] = ACTIONS(1470), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, + [525] = { + [aux_sym_concatenation_repeat1] = STATE(769), + [sym_file_descriptor] = ACTIONS(370), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_RPAREN] = ACTIONS(370), + [anon_sym_PIPE_AMP] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(370), + [anon_sym_PIPE_PIPE] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_AMP_GT] = ACTIONS(374), + [anon_sym_AMP_GT_GT] = ACTIONS(370), + [anon_sym_LT_AMP] = ACTIONS(370), + [anon_sym_GT_AMP] = ACTIONS(370), + [anon_sym_LT_LT] = ACTIONS(374), + [anon_sym_LT_LT_DASH] = ACTIONS(370), + [anon_sym_BQUOTE] = ACTIONS(370), + [sym_comment] = ACTIONS(52), + }, + [526] = { + [sym_special_variable_name] = STATE(772), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1474), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_0] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1478), + }, + [527] = { + [sym_special_variable_name] = STATE(775), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(156), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [528] = { + [sym_for_statement] = STATE(776), + [sym_while_statement] = STATE(776), + [sym_if_statement] = STATE(776), + [sym_case_statement] = STATE(776), + [sym_function_definition] = STATE(776), + [sym_subshell] = STATE(776), + [sym_pipeline] = STATE(776), + [sym_list] = STATE(776), + [sym_bracket_command] = STATE(776), + [sym_command] = STATE(776), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(777), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [529] = { + [sym_for_statement] = STATE(778), + [sym_while_statement] = STATE(778), + [sym_if_statement] = STATE(778), + [sym_case_statement] = STATE(778), + [sym_function_definition] = STATE(778), + [sym_subshell] = STATE(778), + [sym_pipeline] = STATE(778), + [sym_list] = STATE(778), + [sym_bracket_command] = STATE(778), + [sym_command] = STATE(778), + [sym_command_name] = STATE(117), + [sym_environment_variable_assignment] = STATE(779), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(119), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [530] = { + [sym_for_statement] = STATE(780), + [sym_while_statement] = STATE(780), + [sym_if_statement] = STATE(780), + [sym_case_statement] = STATE(780), + [sym_function_definition] = STATE(780), + [sym_subshell] = STATE(780), + [sym_pipeline] = STATE(780), + [sym_list] = STATE(780), + [sym_bracket_command] = STATE(780), + [sym_command] = STATE(780), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(781), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [531] = { + [sym_file_descriptor] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_RPAREN] = ACTIONS(370), + [anon_sym_PIPE_AMP] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(370), + [anon_sym_PIPE_PIPE] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_AMP_GT] = ACTIONS(374), + [anon_sym_AMP_GT_GT] = ACTIONS(370), + [anon_sym_LT_AMP] = ACTIONS(370), + [anon_sym_GT_AMP] = ACTIONS(370), + [anon_sym_LT_LT] = ACTIONS(374), + [anon_sym_LT_LT_DASH] = ACTIONS(370), + [anon_sym_BQUOTE] = ACTIONS(370), + [sym_comment] = ACTIONS(52), + }, + [532] = { + [sym_file_descriptor] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_PIPE_AMP] = ACTIONS(1038), + [anon_sym_AMP_AMP] = ACTIONS(1038), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1038), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1038), + [anon_sym_LT_AMP] = ACTIONS(1038), + [anon_sym_GT_AMP] = ACTIONS(1038), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1038), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_comment] = ACTIONS(52), + }, [533] = { - [sym_string] = STATE(752), - [sym_simple_expansion] = STATE(752), - [sym_expansion] = STATE(752), - [sym_command_substitution] = STATE(752), - [sym_process_substitution] = STATE(752), - [anon_sym_DQUOTE] = ACTIONS(526), - [sym_raw_string] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(534), - [anon_sym_BQUOTE] = ACTIONS(536), - [anon_sym_LT_LPAREN] = ACTIONS(538), - [anon_sym_GT_LPAREN] = ACTIONS(538), - [sym_word] = ACTIONS(1426), + [sym_simple_expansion] = STATE(573), + [sym_expansion] = STATE(573), + [aux_sym_heredoc_repeat1] = STATE(783), + [sym__heredoc_middle] = ACTIONS(1042), + [sym__heredoc_end] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), [sym_comment] = ACTIONS(52), }, [534] = { - [sym_file_descriptor] = ACTIONS(408), - [sym__concat] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(412), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_SEMI_SEMI] = ACTIONS(412), - [anon_sym_PIPE_AMP] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(412), - [anon_sym_GT] = ACTIONS(412), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(412), - [anon_sym_AMP_GT_GT] = ACTIONS(412), - [anon_sym_LT_AMP] = ACTIONS(412), - [anon_sym_GT_AMP] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_LT_LT_DASH] = ACTIONS(412), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(412), - [anon_sym_LF] = ACTIONS(412), - [anon_sym_AMP] = ACTIONS(412), + [sym_file_descriptor] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1488), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_comment] = ACTIONS(52), }, [535] = { - [sym_file_descriptor] = ACTIONS(414), - [sym__concat] = ACTIONS(414), + [aux_sym_concatenation_repeat1] = STATE(279), + [sym_file_descriptor] = ACTIONS(736), + [sym__concat] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_PIPE_AMP] = ACTIONS(736), + [anon_sym_AMP_AMP] = ACTIONS(736), + [anon_sym_PIPE_PIPE] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(734), + [anon_sym_GT_GT] = ACTIONS(736), + [anon_sym_AMP_GT] = ACTIONS(734), + [anon_sym_AMP_GT_GT] = ACTIONS(736), + [anon_sym_LT_AMP] = ACTIONS(736), + [anon_sym_GT_AMP] = ACTIONS(736), + [anon_sym_LT_LT] = ACTIONS(734), + [anon_sym_LT_LT_DASH] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_raw_string] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), + [anon_sym_BQUOTE] = ACTIONS(736), + [anon_sym_LT_LPAREN] = ACTIONS(736), + [anon_sym_GT_LPAREN] = ACTIONS(736), + [sym_word] = ACTIONS(738), + [sym_comment] = ACTIONS(52), + }, + [536] = { + [sym_file_descriptor] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_PIPE_AMP] = ACTIONS(736), + [anon_sym_AMP_AMP] = ACTIONS(736), + [anon_sym_PIPE_PIPE] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(734), + [anon_sym_GT_GT] = ACTIONS(736), + [anon_sym_AMP_GT] = ACTIONS(734), + [anon_sym_AMP_GT_GT] = ACTIONS(736), + [anon_sym_LT_AMP] = ACTIONS(736), + [anon_sym_GT_AMP] = ACTIONS(736), + [anon_sym_LT_LT] = ACTIONS(734), + [anon_sym_LT_LT_DASH] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_raw_string] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), + [anon_sym_BQUOTE] = ACTIONS(736), + [anon_sym_LT_LPAREN] = ACTIONS(736), + [anon_sym_GT_LPAREN] = ACTIONS(736), + [sym_word] = ACTIONS(738), + [sym_comment] = ACTIONS(52), + }, + [537] = { + [sym_file_redirect] = STATE(538), + [sym_heredoc_redirect] = STATE(538), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_PIPE_AMP] = ACTIONS(1492), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_BQUOTE] = ACTIONS(1492), + [sym_comment] = ACTIONS(52), + }, + [538] = { + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_PIPE_AMP] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1494), + [anon_sym_GT_GT] = ACTIONS(1056), + [anon_sym_AMP_GT] = ACTIONS(1494), + [anon_sym_AMP_GT_GT] = ACTIONS(1056), + [anon_sym_LT_AMP] = ACTIONS(1056), + [anon_sym_GT_AMP] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1494), + [anon_sym_LT_LT_DASH] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [sym_comment] = ACTIONS(52), + }, + [539] = { + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(535), + [sym_simple_expansion] = STATE(535), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), + [sym_process_substitution] = STATE(535), + [aux_sym_command_repeat2] = STATE(784), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_PIPE_AMP] = ACTIONS(1492), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(982), + [sym_comment] = ACTIONS(52), + }, + [540] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1460), + [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1460), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [541] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [sym_comment] = ACTIONS(52), + }, + [542] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [543] = { + [sym_file_redirect] = STATE(302), + [sym_heredoc_redirect] = STATE(302), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(535), + [sym_simple_expansion] = STATE(535), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), + [sym_process_substitution] = STATE(535), + [aux_sym_command_repeat2] = STATE(784), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_PIPE_AMP] = ACTIONS(1492), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(982), + [sym_comment] = ACTIONS(52), + }, + [544] = { + [sym_file_redirect] = STATE(785), + [sym_file_descriptor] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_AMP_GT] = ACTIONS(528), + [anon_sym_AMP_GT_GT] = ACTIONS(528), + [anon_sym_LT_AMP] = ACTIONS(528), + [anon_sym_GT_AMP] = ACTIONS(528), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + }, + [545] = { + [sym_file_descriptor] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_SEMI_SEMI] = ACTIONS(1498), + [anon_sym_PIPE_AMP] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1498), + [anon_sym_PIPE_PIPE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_AMP_GT] = ACTIONS(1498), + [anon_sym_AMP_GT_GT] = ACTIONS(1498), + [anon_sym_LT_AMP] = ACTIONS(1498), + [anon_sym_GT_AMP] = ACTIONS(1498), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_LF] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + }, + [546] = { + [sym_concatenation] = STATE(787), + [sym_string] = STATE(786), + [sym_simple_expansion] = STATE(786), + [sym_expansion] = STATE(786), + [sym_command_substitution] = STATE(786), + [sym_process_substitution] = STATE(786), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_LT_LPAREN] = ACTIONS(1010), + [anon_sym_GT_LPAREN] = ACTIONS(1010), + [sym_word] = ACTIONS(1502), + [sym_comment] = ACTIONS(52), + }, + [547] = { + [sym_simple_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [aux_sym_string_repeat1] = STATE(789), + [anon_sym_DQUOTE] = ACTIONS(1504), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [sym_comment] = ACTIONS(142), + }, + [548] = { + [aux_sym_concatenation_repeat1] = STATE(791), + [sym__concat] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_SEMI_SEMI] = ACTIONS(1026), + [anon_sym_PIPE_AMP] = ACTIONS(1026), + [anon_sym_AMP_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1026), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + }, + [549] = { + [sym_special_variable_name] = STATE(794), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_0] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + }, + [550] = { + [sym_special_variable_name] = STATE(797), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_AT] = ACTIONS(156), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [551] = { + [sym_for_statement] = STATE(798), + [sym_while_statement] = STATE(798), + [sym_if_statement] = STATE(798), + [sym_case_statement] = STATE(798), + [sym_function_definition] = STATE(798), + [sym_subshell] = STATE(798), + [sym_pipeline] = STATE(798), + [sym_list] = STATE(798), + [sym_bracket_command] = STATE(798), + [sym_command] = STATE(798), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(799), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [552] = { + [sym_for_statement] = STATE(800), + [sym_while_statement] = STATE(800), + [sym_if_statement] = STATE(800), + [sym_case_statement] = STATE(800), + [sym_function_definition] = STATE(800), + [sym_subshell] = STATE(800), + [sym_pipeline] = STATE(800), + [sym_list] = STATE(800), + [sym_bracket_command] = STATE(800), + [sym_command] = STATE(800), + [sym_command_name] = STATE(117), + [sym_environment_variable_assignment] = STATE(801), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(119), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [553] = { + [sym_for_statement] = STATE(802), + [sym_while_statement] = STATE(802), + [sym_if_statement] = STATE(802), + [sym_case_statement] = STATE(802), + [sym_function_definition] = STATE(802), + [sym_subshell] = STATE(802), + [sym_pipeline] = STATE(802), + [sym_list] = STATE(802), + [sym_bracket_command] = STATE(802), + [sym_command] = STATE(802), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(803), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [554] = { + [anon_sym_PIPE] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_SEMI_SEMI] = ACTIONS(1026), + [anon_sym_PIPE_AMP] = ACTIONS(1026), + [anon_sym_AMP_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1026), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + }, + [555] = { + [aux_sym_concatenation_repeat1] = STATE(560), + [sym_file_descriptor] = ACTIONS(580), + [sym__concat] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_SEMI_SEMI] = ACTIONS(1518), + [anon_sym_PIPE_AMP] = ACTIONS(1518), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_GT] = ACTIONS(1518), + [anon_sym_AMP_GT] = ACTIONS(1518), + [anon_sym_AMP_GT_GT] = ACTIONS(1518), + [anon_sym_LT_AMP] = ACTIONS(1518), + [anon_sym_GT_AMP] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1518), + [anon_sym_LT_LT_DASH] = ACTIONS(1518), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + }, + [556] = { + [sym_file_descriptor] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_SEMI_SEMI] = ACTIONS(1518), + [anon_sym_PIPE_AMP] = ACTIONS(1518), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_GT] = ACTIONS(1518), + [anon_sym_AMP_GT] = ACTIONS(1518), + [anon_sym_AMP_GT_GT] = ACTIONS(1518), + [anon_sym_LT_AMP] = ACTIONS(1518), + [anon_sym_GT_AMP] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1518), + [anon_sym_LT_LT_DASH] = ACTIONS(1518), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + }, + [557] = { + [sym_file_descriptor] = ACTIONS(386), + [sym__concat] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_SEMI_SEMI] = ACTIONS(388), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_AMP_GT] = ACTIONS(388), + [anon_sym_AMP_GT_GT] = ACTIONS(388), + [anon_sym_LT_AMP] = ACTIONS(388), + [anon_sym_GT_AMP] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_LT_LT_DASH] = ACTIONS(388), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(388), + }, + [558] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(1520), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [sym_comment] = ACTIONS(142), + }, + [559] = { + [sym_string] = STATE(805), + [sym_simple_expansion] = STATE(805), + [sym_expansion] = STATE(805), + [sym_command_substitution] = STATE(805), + [sym_process_substitution] = STATE(805), + [anon_sym_DQUOTE] = ACTIONS(540), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_LT_LPAREN] = ACTIONS(552), + [anon_sym_GT_LPAREN] = ACTIONS(552), + [sym_word] = ACTIONS(1524), + [sym_comment] = ACTIONS(52), + }, + [560] = { + [sym_file_descriptor] = ACTIONS(412), + [sym__concat] = ACTIONS(1526), [anon_sym_PIPE] = ACTIONS(416), [anon_sym_RPAREN] = ACTIONS(416), [anon_sym_SEMI_SEMI] = ACTIONS(416), @@ -15852,7 +16693,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(416), [anon_sym_AMP] = ACTIONS(416), }, - [536] = { + [561] = { [sym_file_descriptor] = ACTIONS(418), [sym__concat] = ACTIONS(418), [anon_sym_PIPE] = ACTIONS(420), @@ -15875,7 +16716,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(420), [anon_sym_AMP] = ACTIONS(420), }, - [537] = { + [562] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), [anon_sym_PIPE] = ACTIONS(424), @@ -15898,21 +16739,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(424), [anon_sym_AMP] = ACTIONS(424), }, - [538] = { - [sym_special_variable_name] = STATE(755), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [563] = { + [sym_file_descriptor] = ACTIONS(426), + [sym__concat] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_SEMI_SEMI] = ACTIONS(428), + [anon_sym_PIPE_AMP] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_AMP_GT] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(428), + [anon_sym_LT_AMP] = ACTIONS(428), + [anon_sym_GT_AMP] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_LT_LT_DASH] = ACTIONS(428), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_LF] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + }, + [564] = { + [sym_special_variable_name] = STATE(808), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1430), + [sym_simple_variable_name] = ACTIONS(1528), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -15920,179 +16784,179 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [539] = { - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1436), - [anon_sym_COLON] = ACTIONS(1438), - [anon_sym_COLON_QMARK] = ACTIONS(1436), - [anon_sym_COLON_DASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), + [565] = { + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_COLON] = ACTIONS(1536), + [anon_sym_COLON_QMARK] = ACTIONS(1534), + [anon_sym_COLON_DASH] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), [sym_comment] = ACTIONS(52), }, - [540] = { - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1444), - [anon_sym_COLON] = ACTIONS(1446), - [anon_sym_COLON_QMARK] = ACTIONS(1444), - [anon_sym_COLON_DASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(1444), + [566] = { + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_COLON] = ACTIONS(1544), + [anon_sym_COLON_QMARK] = ACTIONS(1542), + [anon_sym_COLON_DASH] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), [sym_comment] = ACTIONS(52), }, - [541] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [567] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [542] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [568] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [543] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(1448), + [569] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(1546), [sym_comment] = ACTIONS(52), }, - [544] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(1448), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [570] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [545] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [571] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [546] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), + [572] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, - [547] = { - [sym__heredoc_middle] = ACTIONS(1452), - [sym__heredoc_end] = ACTIONS(1452), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1452), + [573] = { + [sym__heredoc_middle] = ACTIONS(1550), + [sym__heredoc_end] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), [sym_comment] = ACTIONS(52), }, - [548] = { - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [574] = { + [sym_file_descriptor] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_SEMI_SEMI] = ACTIONS(1556), + [anon_sym_PIPE_AMP] = ACTIONS(1556), + [anon_sym_AMP_AMP] = ACTIONS(1556), + [anon_sym_PIPE_PIPE] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_GT_GT] = ACTIONS(1556), + [anon_sym_AMP_GT] = ACTIONS(1556), + [anon_sym_AMP_GT_GT] = ACTIONS(1556), + [anon_sym_LT_AMP] = ACTIONS(1556), + [anon_sym_GT_AMP] = ACTIONS(1556), + [anon_sym_LT_LT] = ACTIONS(1556), + [anon_sym_LT_LT_DASH] = ACTIONS(1556), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_LF] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_LF] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), }, - [549] = { - [sym_special_variable_name] = STATE(766), - [anon_sym_DOLLAR] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(1460), + [575] = { + [sym_special_variable_name] = STATE(819), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(1558), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_0] = ACTIONS(1464), - [anon_sym__] = ACTIONS(1464), + [sym_simple_variable_name] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_QMARK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_0] = ACTIONS(1562), + [anon_sym__] = ACTIONS(1562), }, - [550] = { - [sym_special_variable_name] = STATE(769), + [576] = { + [sym_special_variable_name] = STATE(822), [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1564), [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1468), + [sym_simple_variable_name] = ACTIONS(1566), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -16100,327 +16964,269 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [551] = { - [sym_simple_expansion] = STATE(770), - [sym_expansion] = STATE(770), - [sym__heredoc_middle] = ACTIONS(1470), - [sym__heredoc_end] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(996), + [577] = { + [sym_simple_expansion] = STATE(823), + [sym_expansion] = STATE(823), + [sym__heredoc_middle] = ACTIONS(1568), + [sym__heredoc_end] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), [sym_comment] = ACTIONS(52), }, - [552] = { - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(1306), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_DQUOTE] = ACTIONS(586), - [sym_raw_string] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(1306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(586), - [anon_sym_LT_LPAREN] = ACTIONS(586), - [anon_sym_GT_LPAREN] = ACTIONS(586), - [sym_word] = ACTIONS(1306), + [578] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_word] = ACTIONS(1360), [sym_comment] = ACTIONS(52), }, - [553] = { - [aux_sym_array_repeat1] = STATE(773), - [anon_sym_RPAREN] = ACTIONS(1474), - [sym_word] = ACTIONS(592), + [579] = { + [aux_sym_array_repeat1] = STATE(826), + [anon_sym_RPAREN] = ACTIONS(1572), + [sym_word] = ACTIONS(606), [sym_comment] = ACTIONS(52), }, - [554] = { - [aux_sym_concatenation_repeat1] = STATE(226), - [sym_file_descriptor] = ACTIONS(586), - [sym__concat] = ACTIONS(368), - [sym_variable_name] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(1306), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_DQUOTE] = ACTIONS(586), - [sym_raw_string] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(1306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(586), - [anon_sym_LT_LPAREN] = ACTIONS(586), - [anon_sym_GT_LPAREN] = ACTIONS(586), - [sym_word] = ACTIONS(1306), + [580] = { + [aux_sym_concatenation_repeat1] = STATE(229), + [sym_file_descriptor] = ACTIONS(600), + [sym__concat] = ACTIONS(372), + [sym_variable_name] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_word] = ACTIONS(1360), [sym_comment] = ACTIONS(52), }, - [555] = { - [sym_file_redirect] = STATE(327), - [sym_heredoc_redirect] = STATE(327), - [sym_file_descriptor] = ACTIONS(214), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_AMP_GT] = ACTIONS(218), - [anon_sym_AMP_GT_GT] = ACTIONS(218), - [anon_sym_LT_AMP] = ACTIONS(218), - [anon_sym_GT_AMP] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(220), - [anon_sym_LT_LT_DASH] = ACTIONS(220), + [581] = { + [sym_file_redirect] = STATE(337), + [sym_heredoc_redirect] = STATE(337), + [sym_file_descriptor] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_SEMI_SEMI] = ACTIONS(1574), + [anon_sym_PIPE_AMP] = ACTIONS(1574), + [anon_sym_AMP_AMP] = ACTIONS(1574), + [anon_sym_PIPE_PIPE] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_GT_GT] = ACTIONS(220), + [anon_sym_AMP_GT] = ACTIONS(220), + [anon_sym_AMP_GT_GT] = ACTIONS(220), + [anon_sym_LT_AMP] = ACTIONS(220), + [anon_sym_GT_AMP] = ACTIONS(220), + [anon_sym_LT_LT] = ACTIONS(222), + [anon_sym_LT_LT_DASH] = ACTIONS(222), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_LF] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_LF] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), }, - [556] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(804), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_RBRACK] = ACTIONS(804), + [582] = { + [sym__concat] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(820), [sym_comment] = ACTIONS(52), }, - [557] = { - [sym__concat] = ACTIONS(812), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(812), - [sym_comment] = ACTIONS(52), - }, - [558] = { - [sym_string] = STATE(774), - [sym_simple_expansion] = STATE(774), - [sym_expansion] = STATE(774), - [sym_command_substitution] = STATE(774), - [sym_process_substitution] = STATE(774), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1480), - [sym_comment] = ACTIONS(52), - }, - [559] = { - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1484), - [sym_comment] = ACTIONS(52), - }, - [560] = { - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1488), - [sym_comment] = ACTIONS(52), - }, - [561] = { + [583] = { [sym__concat] = ACTIONS(828), [anon_sym_PIPE] = ACTIONS(828), [anon_sym_RPAREN] = ACTIONS(828), [anon_sym_RBRACK] = ACTIONS(828), [sym_comment] = ACTIONS(52), }, - [562] = { - [anon_sym_AT] = ACTIONS(1490), + [584] = { + [sym_string] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1578), [sym_comment] = ACTIONS(52), }, - [563] = { - [sym_concatenation] = STATE(781), - [sym_string] = STATE(780), - [sym_simple_expansion] = STATE(780), - [sym_expansion] = STATE(780), - [sym_command_substitution] = STATE(780), - [sym_process_substitution] = STATE(780), + [585] = { + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [sym_comment] = ACTIONS(52), + }, + [586] = { + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [sym_comment] = ACTIONS(52), + }, + [587] = { + [sym__concat] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_RBRACK] = ACTIONS(844), + [sym_comment] = ACTIONS(52), + }, + [588] = { + [anon_sym_AT] = ACTIONS(1588), + [sym_comment] = ACTIONS(52), + }, + [589] = { + [sym_concatenation] = STATE(834), + [sym_string] = STATE(833), + [sym_simple_expansion] = STATE(833), + [sym_expansion] = STATE(833), + [sym_command_substitution] = STATE(833), + [sym_process_substitution] = STATE(833), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1492), + [sym_raw_string] = ACTIONS(1590), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1494), + [sym_word] = ACTIONS(1592), [sym_comment] = ACTIONS(52), }, - [564] = { - [sym__concat] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(838), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_RBRACK] = ACTIONS(838), + [590] = { + [sym__concat] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_RBRACK] = ACTIONS(854), [sym_comment] = ACTIONS(52), }, - [565] = { - [anon_sym_AT] = ACTIONS(1496), + [591] = { + [anon_sym_AT] = ACTIONS(1594), [sym_comment] = ACTIONS(52), }, - [566] = { - [sym_concatenation] = STATE(784), - [sym_string] = STATE(783), - [sym_simple_expansion] = STATE(783), - [sym_expansion] = STATE(783), - [sym_command_substitution] = STATE(783), - [sym_process_substitution] = STATE(783), + [592] = { + [sym_concatenation] = STATE(837), + [sym_string] = STATE(836), + [sym_simple_expansion] = STATE(836), + [sym_expansion] = STATE(836), + [sym_command_substitution] = STATE(836), + [sym_process_substitution] = STATE(836), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1498), + [sym_raw_string] = ACTIONS(1596), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1500), + [sym_word] = ACTIONS(1598), [sym_comment] = ACTIONS(52), }, - [567] = { - [sym__concat] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_RBRACK] = ACTIONS(918), + [593] = { + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_RBRACK] = ACTIONS(946), [sym_comment] = ACTIONS(52), }, - [568] = { - [sym__concat] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(956), + [594] = { + [sym__concat] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_RBRACK] = ACTIONS(984), [sym_comment] = ACTIONS(52), }, - [569] = { - [sym_file_descriptor] = ACTIONS(1502), - [sym_variable_name] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_SEMI_SEMI] = ACTIONS(1504), - [anon_sym_PIPE_AMP] = ACTIONS(1504), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_AMP_GT] = ACTIONS(1504), - [anon_sym_AMP_GT_GT] = ACTIONS(1504), - [anon_sym_LT_AMP] = ACTIONS(1504), - [anon_sym_GT_AMP] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1504), - [sym_raw_string] = ACTIONS(1504), - [anon_sym_DOLLAR] = ACTIONS(1504), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1504), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1504), - [anon_sym_BQUOTE] = ACTIONS(1504), - [anon_sym_LT_LPAREN] = ACTIONS(1504), - [anon_sym_GT_LPAREN] = ACTIONS(1504), - [sym_word] = ACTIONS(1504), + [595] = { + [sym_file_descriptor] = ACTIONS(1600), + [sym_variable_name] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_SEMI_SEMI] = ACTIONS(1602), + [anon_sym_PIPE_AMP] = ACTIONS(1602), + [anon_sym_AMP_AMP] = ACTIONS(1602), + [anon_sym_PIPE_PIPE] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_GT_GT] = ACTIONS(1602), + [anon_sym_AMP_GT] = ACTIONS(1602), + [anon_sym_AMP_GT_GT] = ACTIONS(1602), + [anon_sym_LT_AMP] = ACTIONS(1602), + [anon_sym_GT_AMP] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(1602), + [sym_raw_string] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1602), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(1602), + [anon_sym_LT_LPAREN] = ACTIONS(1602), + [anon_sym_GT_LPAREN] = ACTIONS(1602), + [sym_word] = ACTIONS(1602), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LF] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_LF] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), }, - [570] = { - [anon_sym_RPAREN] = ACTIONS(1506), - [sym_word] = ACTIONS(1508), + [596] = { + [anon_sym_RPAREN] = ACTIONS(1604), + [sym_word] = ACTIONS(1606), [sym_comment] = ACTIONS(52), }, - [571] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(806), - [anon_sym_LT_AMP] = ACTIONS(806), - [anon_sym_GT_AMP] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_word] = ACTIONS(806), + [597] = { + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(820), + [sym_variable_name] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_SEMI_SEMI] = ACTIONS(822), + [anon_sym_PIPE_AMP] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(822), + [anon_sym_PIPE_PIPE] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_AMP_GT] = ACTIONS(822), + [anon_sym_AMP_GT_GT] = ACTIONS(822), + [anon_sym_LT_AMP] = ACTIONS(822), + [anon_sym_GT_AMP] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_raw_string] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(822), + [anon_sym_LT_LPAREN] = ACTIONS(822), + [anon_sym_GT_LPAREN] = ACTIONS(822), + [sym_word] = ACTIONS(822), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(822), }, - [572] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [sym_variable_name] = ACTIONS(812), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_SEMI_SEMI] = ACTIONS(814), - [anon_sym_PIPE_AMP] = ACTIONS(814), - [anon_sym_AMP_AMP] = ACTIONS(814), - [anon_sym_PIPE_PIPE] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_AMP_GT] = ACTIONS(814), - [anon_sym_AMP_GT_GT] = ACTIONS(814), - [anon_sym_LT_AMP] = ACTIONS(814), - [anon_sym_GT_AMP] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(814), - [sym_raw_string] = ACTIONS(814), - [anon_sym_DOLLAR] = ACTIONS(814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), - [anon_sym_BQUOTE] = ACTIONS(814), - [anon_sym_LT_LPAREN] = ACTIONS(814), - [anon_sym_GT_LPAREN] = ACTIONS(814), - [sym_word] = ACTIONS(814), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), - }, - [573] = { - [sym_string] = STATE(785), - [sym_simple_expansion] = STATE(785), - [sym_expansion] = STATE(785), - [sym_command_substitution] = STATE(785), - [sym_process_substitution] = STATE(785), - [anon_sym_DQUOTE] = ACTIONS(272), - [sym_raw_string] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(280), - [anon_sym_BQUOTE] = ACTIONS(282), - [anon_sym_LT_LPAREN] = ACTIONS(284), - [anon_sym_GT_LPAREN] = ACTIONS(284), - [sym_word] = ACTIONS(1512), - [sym_comment] = ACTIONS(52), - }, - [574] = { - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [sym_comment] = ACTIONS(52), - }, - [575] = { - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [sym_comment] = ACTIONS(52), - }, - [576] = { + [598] = { [sym_file_descriptor] = ACTIONS(828), [sym__concat] = ACTIONS(828), [sym_variable_name] = ACTIONS(828), @@ -16451,208 +17257,249 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(830), [anon_sym_AMP] = ACTIONS(830), }, - [577] = { - [anon_sym_AT] = ACTIONS(1522), + [599] = { + [sym_string] = STATE(838), + [sym_simple_expansion] = STATE(838), + [sym_expansion] = STATE(838), + [sym_command_substitution] = STATE(838), + [sym_process_substitution] = STATE(838), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_word] = ACTIONS(1610), [sym_comment] = ACTIONS(52), }, - [578] = { - [sym_concatenation] = STATE(792), - [sym_string] = STATE(791), - [sym_simple_expansion] = STATE(791), - [sym_expansion] = STATE(791), - [sym_command_substitution] = STATE(791), - [sym_process_substitution] = STATE(791), + [600] = { + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1614), + [sym_comment] = ACTIONS(52), + }, + [601] = { + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1618), + [sym_comment] = ACTIONS(52), + }, + [602] = { + [sym_file_descriptor] = ACTIONS(844), + [sym__concat] = ACTIONS(844), + [sym_variable_name] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_SEMI_SEMI] = ACTIONS(846), + [anon_sym_PIPE_AMP] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(846), + [anon_sym_PIPE_PIPE] = ACTIONS(846), + [anon_sym_LT] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_GT_GT] = ACTIONS(846), + [anon_sym_AMP_GT] = ACTIONS(846), + [anon_sym_AMP_GT_GT] = ACTIONS(846), + [anon_sym_LT_AMP] = ACTIONS(846), + [anon_sym_GT_AMP] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym_raw_string] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(846), + [anon_sym_BQUOTE] = ACTIONS(846), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_word] = ACTIONS(846), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(846), + }, + [603] = { + [anon_sym_AT] = ACTIONS(1620), + [sym_comment] = ACTIONS(52), + }, + [604] = { + [sym_concatenation] = STATE(845), + [sym_string] = STATE(844), + [sym_simple_expansion] = STATE(844), + [sym_expansion] = STATE(844), + [sym_command_substitution] = STATE(844), + [sym_process_substitution] = STATE(844), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1524), + [sym_raw_string] = ACTIONS(1622), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1526), + [sym_word] = ACTIONS(1624), [sym_comment] = ACTIONS(52), }, - [579] = { - [sym_file_descriptor] = ACTIONS(838), - [sym__concat] = ACTIONS(838), - [sym_variable_name] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(840), - [anon_sym_RPAREN] = ACTIONS(840), - [anon_sym_SEMI_SEMI] = ACTIONS(840), - [anon_sym_PIPE_AMP] = ACTIONS(840), - [anon_sym_AMP_AMP] = ACTIONS(840), - [anon_sym_PIPE_PIPE] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(840), - [anon_sym_GT] = ACTIONS(840), - [anon_sym_GT_GT] = ACTIONS(840), - [anon_sym_AMP_GT] = ACTIONS(840), - [anon_sym_AMP_GT_GT] = ACTIONS(840), - [anon_sym_LT_AMP] = ACTIONS(840), - [anon_sym_GT_AMP] = ACTIONS(840), - [anon_sym_DQUOTE] = ACTIONS(840), - [sym_raw_string] = ACTIONS(840), - [anon_sym_DOLLAR] = ACTIONS(840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), - [anon_sym_BQUOTE] = ACTIONS(840), - [anon_sym_LT_LPAREN] = ACTIONS(840), - [anon_sym_GT_LPAREN] = ACTIONS(840), - [sym_word] = ACTIONS(840), + [605] = { + [sym_file_descriptor] = ACTIONS(854), + [sym__concat] = ACTIONS(854), + [sym_variable_name] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_PIPE_AMP] = ACTIONS(856), + [anon_sym_AMP_AMP] = ACTIONS(856), + [anon_sym_PIPE_PIPE] = ACTIONS(856), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_AMP_GT] = ACTIONS(856), + [anon_sym_AMP_GT_GT] = ACTIONS(856), + [anon_sym_LT_AMP] = ACTIONS(856), + [anon_sym_GT_AMP] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(856), + [sym_raw_string] = ACTIONS(856), + [anon_sym_DOLLAR] = ACTIONS(856), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(856), + [anon_sym_BQUOTE] = ACTIONS(856), + [anon_sym_LT_LPAREN] = ACTIONS(856), + [anon_sym_GT_LPAREN] = ACTIONS(856), + [sym_word] = ACTIONS(856), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(840), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), }, - [580] = { - [anon_sym_AT] = ACTIONS(1528), + [606] = { + [anon_sym_AT] = ACTIONS(1626), [sym_comment] = ACTIONS(52), }, - [581] = { - [sym_concatenation] = STATE(795), - [sym_string] = STATE(794), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), + [607] = { + [sym_concatenation] = STATE(848), + [sym_string] = STATE(847), + [sym_simple_expansion] = STATE(847), + [sym_expansion] = STATE(847), + [sym_command_substitution] = STATE(847), + [sym_process_substitution] = STATE(847), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1530), + [sym_raw_string] = ACTIONS(1628), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1532), + [sym_word] = ACTIONS(1630), [sym_comment] = ACTIONS(52), }, - [582] = { - [sym_file_descriptor] = ACTIONS(918), - [sym__concat] = ACTIONS(918), - [sym_variable_name] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_word] = ACTIONS(920), + [608] = { + [sym_file_descriptor] = ACTIONS(946), + [sym__concat] = ACTIONS(946), + [sym_variable_name] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_SEMI_SEMI] = ACTIONS(948), + [anon_sym_PIPE_AMP] = ACTIONS(948), + [anon_sym_AMP_AMP] = ACTIONS(948), + [anon_sym_PIPE_PIPE] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(948), + [anon_sym_GT] = ACTIONS(948), + [anon_sym_GT_GT] = ACTIONS(948), + [anon_sym_AMP_GT] = ACTIONS(948), + [anon_sym_AMP_GT_GT] = ACTIONS(948), + [anon_sym_LT_AMP] = ACTIONS(948), + [anon_sym_GT_AMP] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym_raw_string] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(948), + [anon_sym_BQUOTE] = ACTIONS(948), + [anon_sym_LT_LPAREN] = ACTIONS(948), + [anon_sym_GT_LPAREN] = ACTIONS(948), + [sym_word] = ACTIONS(948), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), }, - [583] = { - [sym_file_descriptor] = ACTIONS(956), - [sym__concat] = ACTIONS(956), - [sym_variable_name] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(958), - [anon_sym_RPAREN] = ACTIONS(958), - [anon_sym_SEMI_SEMI] = ACTIONS(958), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(958), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), - [anon_sym_GT_GT] = ACTIONS(958), - [anon_sym_AMP_GT] = ACTIONS(958), - [anon_sym_AMP_GT_GT] = ACTIONS(958), - [anon_sym_LT_AMP] = ACTIONS(958), - [anon_sym_GT_AMP] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_raw_string] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(958), - [anon_sym_LT_LPAREN] = ACTIONS(958), - [anon_sym_GT_LPAREN] = ACTIONS(958), - [sym_word] = ACTIONS(958), + [609] = { + [sym_file_descriptor] = ACTIONS(984), + [sym__concat] = ACTIONS(984), + [sym_variable_name] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_SEMI_SEMI] = ACTIONS(986), + [anon_sym_PIPE_AMP] = ACTIONS(986), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(986), + [anon_sym_GT_GT] = ACTIONS(986), + [anon_sym_AMP_GT] = ACTIONS(986), + [anon_sym_AMP_GT_GT] = ACTIONS(986), + [anon_sym_LT_AMP] = ACTIONS(986), + [anon_sym_GT_AMP] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_raw_string] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(986), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), + [anon_sym_BQUOTE] = ACTIONS(986), + [anon_sym_LT_LPAREN] = ACTIONS(986), + [anon_sym_GT_LPAREN] = ACTIONS(986), + [sym_word] = ACTIONS(986), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), }, - [584] = { - [sym__concat] = ACTIONS(382), - [anon_sym_SEMI_SEMI] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [sym_raw_string] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(384), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(384), - [anon_sym_BQUOTE] = ACTIONS(384), - [anon_sym_LT_LPAREN] = ACTIONS(384), - [anon_sym_GT_LPAREN] = ACTIONS(384), - [sym_word] = ACTIONS(384), + [610] = { + [sym__concat] = ACTIONS(386), + [anon_sym_SEMI_SEMI] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_word] = ACTIONS(388), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LF] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(388), }, - [585] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(1534), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [611] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(1632), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [586] = { - [sym_string] = STATE(797), - [sym_simple_expansion] = STATE(797), - [sym_expansion] = STATE(797), - [sym_command_substitution] = STATE(797), - [sym_process_substitution] = STATE(797), - [anon_sym_DQUOTE] = ACTIONS(608), - [sym_raw_string] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(616), - [anon_sym_BQUOTE] = ACTIONS(618), - [anon_sym_LT_LPAREN] = ACTIONS(620), - [anon_sym_GT_LPAREN] = ACTIONS(620), - [sym_word] = ACTIONS(1538), + [612] = { + [sym_string] = STATE(850), + [sym_simple_expansion] = STATE(850), + [sym_expansion] = STATE(850), + [sym_command_substitution] = STATE(850), + [sym_process_substitution] = STATE(850), + [anon_sym_DQUOTE] = ACTIONS(622), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(632), + [anon_sym_LT_LPAREN] = ACTIONS(634), + [anon_sym_GT_LPAREN] = ACTIONS(634), + [sym_word] = ACTIONS(1636), [sym_comment] = ACTIONS(52), }, - [587] = { - [sym__concat] = ACTIONS(1540), - [anon_sym_SEMI_SEMI] = ACTIONS(412), - [anon_sym_DQUOTE] = ACTIONS(412), - [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(412), - [anon_sym_GT_LPAREN] = ACTIONS(412), - [sym_word] = ACTIONS(412), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(412), - [anon_sym_LF] = ACTIONS(412), - [anon_sym_AMP] = ACTIONS(412), - }, - [588] = { - [sym__concat] = ACTIONS(414), + [613] = { + [sym__concat] = ACTIONS(1638), [anon_sym_SEMI_SEMI] = ACTIONS(416), [anon_sym_DQUOTE] = ACTIONS(416), [sym_raw_string] = ACTIONS(416), @@ -16668,7 +17515,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(416), [anon_sym_AMP] = ACTIONS(416), }, - [589] = { + [614] = { [sym__concat] = ACTIONS(418), [anon_sym_SEMI_SEMI] = ACTIONS(420), [anon_sym_DQUOTE] = ACTIONS(420), @@ -16685,7 +17532,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(420), [anon_sym_AMP] = ACTIONS(420), }, - [590] = { + [615] = { [sym__concat] = ACTIONS(422), [anon_sym_SEMI_SEMI] = ACTIONS(424), [anon_sym_DQUOTE] = ACTIONS(424), @@ -16702,21 +17549,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(424), [anon_sym_AMP] = ACTIONS(424), }, - [591] = { - [sym_special_variable_name] = STATE(800), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [616] = { + [sym__concat] = ACTIONS(426), + [anon_sym_SEMI_SEMI] = ACTIONS(428), + [anon_sym_DQUOTE] = ACTIONS(428), + [sym_raw_string] = ACTIONS(428), + [anon_sym_DOLLAR] = ACTIONS(428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), + [anon_sym_BQUOTE] = ACTIONS(428), + [anon_sym_LT_LPAREN] = ACTIONS(428), + [anon_sym_GT_LPAREN] = ACTIONS(428), + [sym_word] = ACTIONS(428), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_LF] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + }, + [617] = { + [sym_special_variable_name] = STATE(853), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1542), + [sym_simple_variable_name] = ACTIONS(1640), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -16724,328 +17588,328 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [592] = { - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1548), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_COLON_QMARK] = ACTIONS(1548), - [anon_sym_COLON_DASH] = ACTIONS(1548), - [anon_sym_PERCENT] = ACTIONS(1548), - [anon_sym_SLASH] = ACTIONS(1548), + [618] = { + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_EQ] = ACTIONS(1646), + [anon_sym_COLON] = ACTIONS(1648), + [anon_sym_COLON_QMARK] = ACTIONS(1646), + [anon_sym_COLON_DASH] = ACTIONS(1646), + [anon_sym_PERCENT] = ACTIONS(1646), + [anon_sym_SLASH] = ACTIONS(1646), [sym_comment] = ACTIONS(52), }, - [593] = { - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_COLON] = ACTIONS(1558), - [anon_sym_COLON_QMARK] = ACTIONS(1556), - [anon_sym_COLON_DASH] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), + [619] = { + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_COLON] = ACTIONS(1656), + [anon_sym_COLON_QMARK] = ACTIONS(1654), + [anon_sym_COLON_DASH] = ACTIONS(1654), + [anon_sym_PERCENT] = ACTIONS(1654), + [anon_sym_SLASH] = ACTIONS(1654), [sym_comment] = ACTIONS(52), }, - [594] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), + [620] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [595] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [596] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(1560), - [sym_comment] = ACTIONS(52), - }, - [597] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(1560), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [598] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [599] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [600] = { - [sym_do_group] = STATE(809), - [anon_sym_do] = ACTIONS(290), - [sym_comment] = ACTIONS(52), - }, - [601] = { - [aux_sym_concatenation_repeat1] = STATE(587), - [sym__concat] = ACTIONS(1092), - [anon_sym_SEMI_SEMI] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_raw_string] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), - [anon_sym_BQUOTE] = ACTIONS(722), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), - [sym_word] = ACTIONS(722), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_AMP] = ACTIONS(722), - }, - [602] = { - [anon_sym_SEMI_SEMI] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_raw_string] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), - [anon_sym_BQUOTE] = ACTIONS(722), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), - [sym_word] = ACTIONS(722), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_AMP] = ACTIONS(722), - }, - [603] = { - [sym_file_descriptor] = ACTIONS(516), - [sym_variable_name] = ACTIONS(516), - [anon_sym_for] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_done] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_function] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_AMP_GT] = ACTIONS(518), - [anon_sym_AMP_GT_GT] = ACTIONS(516), - [anon_sym_LT_AMP] = ACTIONS(516), - [anon_sym_GT_AMP] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR] = ACTIONS(518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), - [anon_sym_BQUOTE] = ACTIONS(516), - [anon_sym_LT_LPAREN] = ACTIONS(516), - [anon_sym_GT_LPAREN] = ACTIONS(516), - [sym_word] = ACTIONS(520), - [sym_comment] = ACTIONS(52), - }, - [604] = { - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_SEMI_SEMI] = ACTIONS(1564), - [anon_sym_PIPE_AMP] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1564), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1564), - }, - [605] = { - [sym_file_descriptor] = ACTIONS(554), - [sym_variable_name] = ACTIONS(554), - [anon_sym_for] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_done] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_case] = ACTIONS(556), - [anon_sym_function] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_AMP_GT] = ACTIONS(556), - [anon_sym_AMP_GT_GT] = ACTIONS(554), - [anon_sym_LT_AMP] = ACTIONS(554), - [anon_sym_GT_AMP] = ACTIONS(554), - [anon_sym_DQUOTE] = ACTIONS(554), - [sym_raw_string] = ACTIONS(554), - [anon_sym_DOLLAR] = ACTIONS(556), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(554), - [anon_sym_BQUOTE] = ACTIONS(554), - [anon_sym_LT_LPAREN] = ACTIONS(554), - [anon_sym_GT_LPAREN] = ACTIONS(554), - [sym_word] = ACTIONS(558), - [sym_comment] = ACTIONS(52), - }, - [606] = { - [anon_sym_then] = ACTIONS(1566), - [sym_comment] = ACTIONS(52), - }, - [607] = { - [sym_file_descriptor] = ACTIONS(202), - [sym_variable_name] = ACTIONS(202), - [anon_sym_for] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_fi] = ACTIONS(204), - [anon_sym_case] = ACTIONS(204), - [anon_sym_function] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_GT] = ACTIONS(204), - [anon_sym_GT_GT] = ACTIONS(202), - [anon_sym_AMP_GT] = ACTIONS(204), - [anon_sym_AMP_GT_GT] = ACTIONS(202), - [anon_sym_LT_AMP] = ACTIONS(202), - [anon_sym_GT_AMP] = ACTIONS(202), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(202), - [anon_sym_DOLLAR] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(202), - [anon_sym_BQUOTE] = ACTIONS(202), - [anon_sym_LT_LPAREN] = ACTIONS(202), - [anon_sym_GT_LPAREN] = ACTIONS(202), - [sym_word] = ACTIONS(206), - [sym_comment] = ACTIONS(52), - }, - [608] = { - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(1568), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_LF] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1568), - }, - [609] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(208), - [anon_sym_SEMI_SEMI] = ACTIONS(1568), - [anon_sym_PIPE_AMP] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), + [621] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), [anon_sym_AMP_GT_GT] = ACTIONS(238), [anon_sym_LT_AMP] = ACTIONS(238), [anon_sym_GT_AMP] = ACTIONS(238), [anon_sym_DQUOTE] = ACTIONS(238), [sym_raw_string] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), [anon_sym_BQUOTE] = ACTIONS(238), [anon_sym_LT_LPAREN] = ACTIONS(238), [anon_sym_GT_LPAREN] = ACTIONS(238), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_LF] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1568), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), }, - [610] = { - [sym__terminated_statement] = STATE(812), - [sym_for_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_function_definition] = STATE(608), - [sym_subshell] = STATE(608), - [sym_pipeline] = STATE(608), - [sym_list] = STATE(608), - [sym_bracket_command] = STATE(608), - [sym_command] = STATE(608), + [622] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(1658), + [sym_comment] = ACTIONS(52), + }, + [623] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1658), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [624] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1660), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [625] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1660), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [626] = { + [sym_do_group] = STATE(862), + [anon_sym_do] = ACTIONS(292), + [sym_comment] = ACTIONS(52), + }, + [627] = { + [aux_sym_concatenation_repeat1] = STATE(613), + [sym__concat] = ACTIONS(1144), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [sym_raw_string] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), + [sym_word] = ACTIONS(738), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + }, + [628] = { + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [sym_raw_string] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), + [sym_word] = ACTIONS(738), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + }, + [629] = { + [sym_file_descriptor] = ACTIONS(530), + [sym_variable_name] = ACTIONS(530), + [anon_sym_for] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_done] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_function] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_AMP_GT] = ACTIONS(532), + [anon_sym_AMP_GT_GT] = ACTIONS(530), + [anon_sym_LT_AMP] = ACTIONS(530), + [anon_sym_GT_AMP] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [sym_raw_string] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_LT_LPAREN] = ACTIONS(530), + [anon_sym_GT_LPAREN] = ACTIONS(530), + [sym_word] = ACTIONS(534), + [sym_comment] = ACTIONS(52), + }, + [630] = { + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_SEMI_SEMI] = ACTIONS(1662), + [anon_sym_PIPE_AMP] = ACTIONS(1662), + [anon_sym_AMP_AMP] = ACTIONS(1662), + [anon_sym_PIPE_PIPE] = ACTIONS(1662), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LF] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + }, + [631] = { + [sym_file_descriptor] = ACTIONS(568), + [sym_variable_name] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [anon_sym_done] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_case] = ACTIONS(570), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_AMP_GT] = ACTIONS(570), + [anon_sym_AMP_GT_GT] = ACTIONS(568), + [anon_sym_LT_AMP] = ACTIONS(568), + [anon_sym_GT_AMP] = ACTIONS(568), + [anon_sym_DQUOTE] = ACTIONS(568), + [sym_raw_string] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), + [anon_sym_BQUOTE] = ACTIONS(568), + [anon_sym_LT_LPAREN] = ACTIONS(568), + [anon_sym_GT_LPAREN] = ACTIONS(568), + [sym_word] = ACTIONS(572), + [sym_comment] = ACTIONS(52), + }, + [632] = { + [anon_sym_then] = ACTIONS(1664), + [sym_comment] = ACTIONS(52), + }, + [633] = { + [sym_file_descriptor] = ACTIONS(204), + [sym_variable_name] = ACTIONS(204), + [anon_sym_for] = ACTIONS(206), + [anon_sym_while] = ACTIONS(206), + [anon_sym_if] = ACTIONS(206), + [anon_sym_fi] = ACTIONS(206), + [anon_sym_case] = ACTIONS(206), + [anon_sym_function] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_GT_GT] = ACTIONS(204), + [anon_sym_AMP_GT] = ACTIONS(206), + [anon_sym_AMP_GT_GT] = ACTIONS(204), + [anon_sym_LT_AMP] = ACTIONS(204), + [anon_sym_GT_AMP] = ACTIONS(204), + [anon_sym_DQUOTE] = ACTIONS(204), + [sym_raw_string] = ACTIONS(204), + [anon_sym_DOLLAR] = ACTIONS(206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(204), + [anon_sym_LT_LPAREN] = ACTIONS(204), + [anon_sym_GT_LPAREN] = ACTIONS(204), + [sym_word] = ACTIONS(208), + [sym_comment] = ACTIONS(52), + }, + [634] = { + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(1666), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + }, + [635] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(210), + [anon_sym_SEMI_SEMI] = ACTIONS(1666), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_AMP_GT] = ACTIONS(240), + [anon_sym_AMP_GT_GT] = ACTIONS(240), + [anon_sym_LT_AMP] = ACTIONS(240), + [anon_sym_GT_AMP] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(240), + [sym_raw_string] = ACTIONS(240), + [anon_sym_DOLLAR] = ACTIONS(240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(240), + [anon_sym_BQUOTE] = ACTIONS(240), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + }, + [636] = { + [sym__terminated_statement] = STATE(865), + [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_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(609), + [sym_environment_variable_assignment] = STATE(635), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -17060,7 +17924,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1570), + [anon_sym_fi] = ACTIONS(1668), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -17084,822 +17948,804 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [611] = { - [sym_file_descriptor] = ACTIONS(516), - [sym_variable_name] = ACTIONS(516), - [anon_sym_for] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_fi] = ACTIONS(518), - [anon_sym_elif] = ACTIONS(518), - [anon_sym_else] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_function] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_AMP_GT] = ACTIONS(518), - [anon_sym_AMP_GT_GT] = ACTIONS(516), - [anon_sym_LT_AMP] = ACTIONS(516), - [anon_sym_GT_AMP] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR] = ACTIONS(518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), - [anon_sym_BQUOTE] = ACTIONS(516), - [anon_sym_LT_LPAREN] = ACTIONS(516), - [anon_sym_GT_LPAREN] = ACTIONS(516), - [sym_word] = ACTIONS(520), - [sym_comment] = ACTIONS(52), - }, - [612] = { - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - }, - [613] = { - [sym_file_descriptor] = ACTIONS(554), - [sym_variable_name] = ACTIONS(554), - [anon_sym_for] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_fi] = ACTIONS(556), - [anon_sym_elif] = ACTIONS(556), - [anon_sym_else] = ACTIONS(556), - [anon_sym_case] = ACTIONS(556), - [anon_sym_function] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_AMP_GT] = ACTIONS(556), - [anon_sym_AMP_GT_GT] = ACTIONS(554), - [anon_sym_LT_AMP] = ACTIONS(554), - [anon_sym_GT_AMP] = ACTIONS(554), - [anon_sym_DQUOTE] = ACTIONS(554), - [sym_raw_string] = ACTIONS(554), - [anon_sym_DOLLAR] = ACTIONS(556), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(554), - [anon_sym_BQUOTE] = ACTIONS(554), - [anon_sym_LT_LPAREN] = ACTIONS(554), - [anon_sym_GT_LPAREN] = ACTIONS(554), - [sym_word] = ACTIONS(558), - [sym_comment] = ACTIONS(52), - }, - [614] = { - [anon_sym_fi] = ACTIONS(1574), - [sym_comment] = ACTIONS(52), - }, - [615] = { - [sym_elif_clause] = STATE(616), - [sym_else_clause] = STATE(814), - [anon_sym_fi] = ACTIONS(1574), - [anon_sym_elif] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1140), - [sym_comment] = ACTIONS(52), - }, - [616] = { - [anon_sym_fi] = ACTIONS(1576), - [anon_sym_elif] = ACTIONS(1576), - [anon_sym_else] = ACTIONS(1576), - [sym_comment] = ACTIONS(52), - }, - [617] = { - [anon_sym_PIPE] = ACTIONS(1578), - [anon_sym_RPAREN] = ACTIONS(1578), - [anon_sym_SEMI_SEMI] = ACTIONS(1578), - [anon_sym_PIPE_AMP] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1578), - }, - [618] = { - [aux_sym_case_item_repeat1] = STATE(817), - [aux_sym_concatenation_repeat1] = STATE(334), - [sym__concat] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1582), - [sym_comment] = ACTIONS(52), - }, - [619] = { - [anon_sym_esac] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1586), - [sym_raw_string] = ACTIONS(1586), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1586), - [anon_sym_BQUOTE] = ACTIONS(1586), - [anon_sym_LT_LPAREN] = ACTIONS(1586), - [anon_sym_GT_LPAREN] = ACTIONS(1586), - [sym_word] = ACTIONS(1588), - [sym_comment] = ACTIONS(52), - }, - [620] = { - [aux_sym_case_item_repeat1] = STATE(817), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1582), - [sym_comment] = ACTIONS(52), - }, - [621] = { - [sym_case_item] = STATE(819), - [sym_concatenation] = STATE(620), - [sym_string] = STATE(618), - [sym_simple_expansion] = STATE(618), - [sym_expansion] = STATE(618), - [sym_command_substitution] = STATE(618), - [sym_process_substitution] = STATE(618), - [anon_sym_esac] = ACTIONS(1590), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1146), - [sym_comment] = ACTIONS(52), - }, - [622] = { - [sym_case_item] = STATE(619), - [sym_concatenation] = STATE(620), - [sym_string] = STATE(618), - [sym_simple_expansion] = STATE(618), - [sym_expansion] = STATE(618), - [sym_command_substitution] = STATE(618), - [sym_process_substitution] = STATE(618), - [aux_sym_case_statement_repeat1] = STATE(820), - [anon_sym_esac] = ACTIONS(1590), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1146), - [sym_comment] = ACTIONS(52), - }, - [623] = { - [sym__concat] = ACTIONS(1282), - [anon_sym_in] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - }, - [624] = { - [sym__concat] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1288), - [anon_sym_SEMI_SEMI] = ACTIONS(1288), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - }, - [625] = { - [anon_sym_AT] = ACTIONS(1592), - [sym_comment] = ACTIONS(52), - }, - [626] = { - [sym__concat] = ACTIONS(1292), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - }, - [627] = { - [anon_sym_AT] = ACTIONS(1594), - [sym_comment] = ACTIONS(52), - }, - [628] = { - [anon_sym_RBRACK] = ACTIONS(1596), - [sym_comment] = ACTIONS(52), - }, - [629] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1598), - [sym_comment] = ACTIONS(52), - }, - [630] = { - [anon_sym_RBRACE] = ACTIONS(1598), - [sym_comment] = ACTIONS(52), - }, - [631] = { - [anon_sym_RBRACK] = ACTIONS(1600), - [sym_comment] = ACTIONS(52), - }, - [632] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1602), - [sym_comment] = ACTIONS(52), - }, - [633] = { - [anon_sym_RBRACE] = ACTIONS(1602), - [sym_comment] = ACTIONS(52), - }, - [634] = { - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_RPAREN] = ACTIONS(1604), - [anon_sym_SEMI_SEMI] = ACTIONS(1604), - [anon_sym_PIPE_AMP] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1604), - [anon_sym_PIPE_PIPE] = ACTIONS(1604), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_LF] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - }, - [635] = { - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_RPAREN] = ACTIONS(1606), - [anon_sym_SEMI_SEMI] = ACTIONS(1606), - [anon_sym_PIPE_AMP] = ACTIONS(1606), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1606), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LF] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1606), - }, - [636] = { - [sym__concat] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_RBRACK] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_raw_string] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1282), - [anon_sym_BQUOTE] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(1282), - [anon_sym_GT_LPAREN] = ACTIONS(1282), - [sym_word] = ACTIONS(1284), - [sym_comment] = ACTIONS(52), - }, [637] = { - [sym__concat] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), - [sym_word] = ACTIONS(1288), + [sym_file_descriptor] = ACTIONS(530), + [sym_variable_name] = ACTIONS(530), + [anon_sym_for] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_fi] = ACTIONS(532), + [anon_sym_elif] = ACTIONS(532), + [anon_sym_else] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_function] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_AMP_GT] = ACTIONS(532), + [anon_sym_AMP_GT_GT] = ACTIONS(530), + [anon_sym_LT_AMP] = ACTIONS(530), + [anon_sym_GT_AMP] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [sym_raw_string] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_LT_LPAREN] = ACTIONS(530), + [anon_sym_GT_LPAREN] = ACTIONS(530), + [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, [638] = { - [anon_sym_AT] = ACTIONS(1612), - [sym_comment] = ACTIONS(52), - }, - [639] = { - [sym__concat] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_RBRACK] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_raw_string] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym_word] = ACTIONS(1294), - [sym_comment] = ACTIONS(52), - }, - [640] = { - [anon_sym_AT] = ACTIONS(1616), - [sym_comment] = ACTIONS(52), - }, - [641] = { - [anon_sym_RBRACK] = ACTIONS(1618), - [sym_comment] = ACTIONS(52), - }, - [642] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1620), - [sym_comment] = ACTIONS(52), - }, - [643] = { - [anon_sym_RBRACE] = ACTIONS(1620), - [sym_comment] = ACTIONS(52), - }, - [644] = { - [anon_sym_RBRACK] = ACTIONS(1622), - [sym_comment] = ACTIONS(52), - }, - [645] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1624), - [sym_comment] = ACTIONS(52), - }, - [646] = { - [anon_sym_RBRACE] = ACTIONS(1624), - [sym_comment] = ACTIONS(52), - }, - [647] = { - [sym__concat] = ACTIONS(1282), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_raw_string] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1282), - [anon_sym_BQUOTE] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(1282), - [anon_sym_GT_LPAREN] = ACTIONS(1282), - [sym_word] = ACTIONS(1284), - [sym_comment] = ACTIONS(52), - }, - [648] = { - [sym__concat] = ACTIONS(1286), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), - [sym_word] = ACTIONS(1288), - [sym_comment] = ACTIONS(52), - }, - [649] = { - [anon_sym_AT] = ACTIONS(1626), - [sym_comment] = ACTIONS(52), - }, - [650] = { - [sym__concat] = ACTIONS(1292), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_raw_string] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym_word] = ACTIONS(1294), - [sym_comment] = ACTIONS(52), - }, - [651] = { - [anon_sym_AT] = ACTIONS(1628), - [sym_comment] = ACTIONS(52), - }, - [652] = { - [anon_sym_RBRACK] = ACTIONS(1630), - [sym_comment] = ACTIONS(52), - }, - [653] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1632), - [sym_comment] = ACTIONS(52), - }, - [654] = { - [anon_sym_RBRACE] = ACTIONS(1632), - [sym_comment] = ACTIONS(52), - }, - [655] = { - [anon_sym_RBRACK] = ACTIONS(1634), - [sym_comment] = ACTIONS(52), - }, - [656] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1636), - [sym_comment] = ACTIONS(52), - }, - [657] = { - [anon_sym_RBRACE] = ACTIONS(1636), - [sym_comment] = ACTIONS(52), - }, - [658] = { - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym_variable_name] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_GT_GT] = ACTIONS(1282), - [anon_sym_AMP_GT] = ACTIONS(1608), - [anon_sym_AMP_GT_GT] = ACTIONS(1282), - [anon_sym_LT_AMP] = ACTIONS(1282), - [anon_sym_GT_AMP] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_raw_string] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1282), - [anon_sym_BQUOTE] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(1282), - [anon_sym_GT_LPAREN] = ACTIONS(1282), - [sym_word] = ACTIONS(1608), - [sym_comment] = ACTIONS(52), - }, - [659] = { - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym_variable_name] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1610), - [anon_sym_GT_GT] = ACTIONS(1286), - [anon_sym_AMP_GT] = ACTIONS(1610), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1286), - [anon_sym_GT_AMP] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), - [sym_word] = ACTIONS(1610), - [sym_comment] = ACTIONS(52), - }, - [660] = { - [anon_sym_AT] = ACTIONS(1638), - [sym_comment] = ACTIONS(52), - }, - [661] = { - [sym_file_descriptor] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [sym_variable_name] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1292), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_raw_string] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym_word] = ACTIONS(1614), - [sym_comment] = ACTIONS(52), - }, - [662] = { - [anon_sym_AT] = ACTIONS(1640), - [sym_comment] = ACTIONS(52), - }, - [663] = { - [anon_sym_RBRACK] = ACTIONS(1642), - [sym_comment] = ACTIONS(52), - }, - [664] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1644), - [sym_comment] = ACTIONS(52), - }, - [665] = { - [anon_sym_RBRACE] = ACTIONS(1644), - [sym_comment] = ACTIONS(52), - }, - [666] = { - [anon_sym_RBRACK] = ACTIONS(1646), - [sym_comment] = ACTIONS(52), - }, - [667] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1648), - [sym_comment] = ACTIONS(52), - }, - [668] = { - [anon_sym_RBRACE] = ACTIONS(1648), - [sym_comment] = ACTIONS(52), - }, - [669] = { - [anon_sym_DQUOTE] = ACTIONS(1288), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [sym_comment] = ACTIONS(142), - }, - [670] = { - [anon_sym_AT] = ACTIONS(1650), - [sym_comment] = ACTIONS(52), - }, - [671] = { - [anon_sym_DQUOTE] = ACTIONS(1294), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_comment] = ACTIONS(142), - }, - [672] = { - [anon_sym_AT] = ACTIONS(1652), - [sym_comment] = ACTIONS(52), - }, - [673] = { - [anon_sym_RBRACK] = ACTIONS(1654), - [sym_comment] = ACTIONS(52), - }, - [674] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1656), - [sym_comment] = ACTIONS(52), - }, - [675] = { - [anon_sym_RBRACE] = ACTIONS(1656), - [sym_comment] = ACTIONS(52), - }, - [676] = { - [anon_sym_RBRACK] = ACTIONS(1658), - [sym_comment] = ACTIONS(52), - }, - [677] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1660), - [sym_comment] = ACTIONS(52), - }, - [678] = { - [anon_sym_RBRACE] = ACTIONS(1660), - [sym_comment] = ACTIONS(52), - }, - [679] = { - [anon_sym_RBRACK] = ACTIONS(1662), - [sym_comment] = ACTIONS(52), - }, - [680] = { - [anon_sym_RBRACK] = ACTIONS(1664), - [sym_comment] = ACTIONS(52), - }, - [681] = { - [anon_sym_RBRACE] = ACTIONS(1666), - [sym_comment] = ACTIONS(52), - }, - [682] = { - [sym_file_descriptor] = ACTIONS(1668), - [sym__concat] = ACTIONS(1668), [anon_sym_PIPE] = ACTIONS(1670), [anon_sym_RPAREN] = ACTIONS(1670), [anon_sym_SEMI_SEMI] = ACTIONS(1670), [anon_sym_PIPE_AMP] = ACTIONS(1670), [anon_sym_AMP_AMP] = ACTIONS(1670), [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1670), - [anon_sym_AMP_GT] = ACTIONS(1670), - [anon_sym_AMP_GT_GT] = ACTIONS(1670), - [anon_sym_LT_AMP] = ACTIONS(1670), - [anon_sym_GT_AMP] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_LT_LT_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym_raw_string] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1670), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1670), - [anon_sym_BQUOTE] = ACTIONS(1670), - [anon_sym_LT_LPAREN] = ACTIONS(1670), - [anon_sym_GT_LPAREN] = ACTIONS(1670), - [sym_word] = ACTIONS(1670), [sym_comment] = ACTIONS(142), [anon_sym_SEMI] = ACTIONS(1670), [anon_sym_LF] = ACTIONS(1670), [anon_sym_AMP] = ACTIONS(1670), }, - [683] = { - [anon_sym_RBRACE] = ACTIONS(1672), + [639] = { + [sym_file_descriptor] = ACTIONS(568), + [sym_variable_name] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_fi] = ACTIONS(570), + [anon_sym_elif] = ACTIONS(570), + [anon_sym_else] = ACTIONS(570), + [anon_sym_case] = ACTIONS(570), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_AMP_GT] = ACTIONS(570), + [anon_sym_AMP_GT_GT] = ACTIONS(568), + [anon_sym_LT_AMP] = ACTIONS(568), + [anon_sym_GT_AMP] = ACTIONS(568), + [anon_sym_DQUOTE] = ACTIONS(568), + [sym_raw_string] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), + [anon_sym_BQUOTE] = ACTIONS(568), + [anon_sym_LT_LPAREN] = ACTIONS(568), + [anon_sym_GT_LPAREN] = ACTIONS(568), + [sym_word] = ACTIONS(572), [sym_comment] = ACTIONS(52), }, - [684] = { - [sym_file_descriptor] = ACTIONS(1674), - [sym__concat] = ACTIONS(1674), + [640] = { + [anon_sym_fi] = ACTIONS(1672), + [sym_comment] = ACTIONS(52), + }, + [641] = { + [sym_elif_clause] = STATE(642), + [sym_else_clause] = STATE(867), + [anon_sym_fi] = ACTIONS(1672), + [anon_sym_elif] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1192), + [sym_comment] = ACTIONS(52), + }, + [642] = { + [anon_sym_fi] = ACTIONS(1674), + [anon_sym_elif] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1674), + [sym_comment] = ACTIONS(52), + }, + [643] = { [anon_sym_PIPE] = ACTIONS(1676), [anon_sym_RPAREN] = ACTIONS(1676), [anon_sym_SEMI_SEMI] = ACTIONS(1676), [anon_sym_PIPE_AMP] = ACTIONS(1676), [anon_sym_AMP_AMP] = ACTIONS(1676), [anon_sym_PIPE_PIPE] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_GT] = ACTIONS(1676), - [anon_sym_GT_GT] = ACTIONS(1676), - [anon_sym_AMP_GT] = ACTIONS(1676), - [anon_sym_AMP_GT_GT] = ACTIONS(1676), - [anon_sym_LT_AMP] = ACTIONS(1676), - [anon_sym_GT_AMP] = ACTIONS(1676), - [anon_sym_LT_LT] = ACTIONS(1676), - [anon_sym_LT_LT_DASH] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1676), - [sym_raw_string] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1676), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1676), - [anon_sym_BQUOTE] = ACTIONS(1676), - [anon_sym_LT_LPAREN] = ACTIONS(1676), - [anon_sym_GT_LPAREN] = ACTIONS(1676), - [sym_word] = ACTIONS(1676), [sym_comment] = ACTIONS(142), [anon_sym_SEMI] = ACTIONS(1676), [anon_sym_LF] = ACTIONS(1676), [anon_sym_AMP] = ACTIONS(1676), }, - [685] = { - [sym_file_descriptor] = ACTIONS(1048), - [sym_variable_name] = ACTIONS(1048), + [644] = { + [aux_sym_case_item_repeat1] = STATE(870), + [aux_sym_concatenation_repeat1] = STATE(344), + [sym__concat] = ACTIONS(586), [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_PIPE_AMP] = ACTIONS(1048), - [anon_sym_AMP_AMP] = ACTIONS(1048), - [anon_sym_PIPE_PIPE] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1678), - [anon_sym_GT] = ACTIONS(1678), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_AMP_GT] = ACTIONS(1678), - [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(1678), - [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), + [anon_sym_RPAREN] = ACTIONS(1680), + [sym_comment] = ACTIONS(52), + }, + [645] = { + [anon_sym_esac] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1684), + [sym_raw_string] = ACTIONS(1684), + [anon_sym_DOLLAR] = ACTIONS(1682), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1684), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_LT_LPAREN] = ACTIONS(1684), + [anon_sym_GT_LPAREN] = ACTIONS(1684), + [sym_word] = ACTIONS(1686), + [sym_comment] = ACTIONS(52), + }, + [646] = { + [aux_sym_case_item_repeat1] = STATE(870), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1680), + [sym_comment] = ACTIONS(52), + }, + [647] = { + [sym_case_item] = STATE(872), + [sym_concatenation] = STATE(646), + [sym_string] = STATE(644), + [sym_simple_expansion] = STATE(644), + [sym_expansion] = STATE(644), + [sym_command_substitution] = STATE(644), + [sym_process_substitution] = STATE(644), + [anon_sym_esac] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1198), + [sym_comment] = ACTIONS(52), + }, + [648] = { + [sym_case_item] = STATE(645), + [sym_concatenation] = STATE(646), + [sym_string] = STATE(644), + [sym_simple_expansion] = STATE(644), + [sym_expansion] = STATE(644), + [sym_command_substitution] = STATE(644), + [sym_process_substitution] = STATE(644), + [aux_sym_case_statement_repeat1] = STATE(873), + [anon_sym_esac] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1198), + [sym_comment] = ACTIONS(52), + }, + [649] = { + [sym__concat] = ACTIONS(1336), + [anon_sym_in] = ACTIONS(1338), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + }, + [650] = { + [sym__concat] = ACTIONS(1340), + [anon_sym_in] = ACTIONS(1342), + [anon_sym_SEMI_SEMI] = ACTIONS(1342), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + }, + [651] = { + [anon_sym_AT] = ACTIONS(1690), + [sym_comment] = ACTIONS(52), + }, + [652] = { + [sym__concat] = ACTIONS(1346), + [anon_sym_in] = ACTIONS(1348), + [anon_sym_SEMI_SEMI] = ACTIONS(1348), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LF] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + }, + [653] = { + [anon_sym_AT] = ACTIONS(1692), + [sym_comment] = ACTIONS(52), + }, + [654] = { + [anon_sym_RBRACK] = ACTIONS(1694), + [sym_comment] = ACTIONS(52), + }, + [655] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1696), + [sym_comment] = ACTIONS(52), + }, + [656] = { + [anon_sym_RBRACE] = ACTIONS(1696), + [sym_comment] = ACTIONS(52), + }, + [657] = { + [anon_sym_RBRACK] = ACTIONS(1698), + [sym_comment] = ACTIONS(52), + }, + [658] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1700), + [sym_comment] = ACTIONS(52), + }, + [659] = { + [anon_sym_RBRACE] = ACTIONS(1700), + [sym_comment] = ACTIONS(52), + }, + [660] = { + [sym_file_redirect] = STATE(880), + [sym_file_descriptor] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_AMP_GT] = ACTIONS(528), + [anon_sym_AMP_GT_GT] = ACTIONS(528), + [anon_sym_LT_AMP] = ACTIONS(528), + [anon_sym_GT_AMP] = ACTIONS(528), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_LF] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + }, + [661] = { + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + }, + [662] = { + [sym__concat] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_RBRACK] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_raw_string] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_LT_LPAREN] = ACTIONS(1336), + [anon_sym_GT_LPAREN] = ACTIONS(1336), + [sym_word] = ACTIONS(1338), + [sym_comment] = ACTIONS(52), + }, + [663] = { + [sym__concat] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1708), + [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), + }, + [664] = { + [anon_sym_AT] = ACTIONS(1710), + [sym_comment] = ACTIONS(52), + }, + [665] = { + [sym__concat] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_RBRACK] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), + [sym_word] = ACTIONS(1348), + [sym_comment] = ACTIONS(52), + }, + [666] = { + [anon_sym_AT] = ACTIONS(1714), + [sym_comment] = ACTIONS(52), + }, + [667] = { + [anon_sym_RBRACK] = ACTIONS(1716), + [sym_comment] = ACTIONS(52), + }, + [668] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1718), + [sym_comment] = ACTIONS(52), + }, + [669] = { + [anon_sym_RBRACE] = ACTIONS(1718), + [sym_comment] = ACTIONS(52), + }, + [670] = { + [anon_sym_RBRACK] = ACTIONS(1720), + [sym_comment] = ACTIONS(52), + }, + [671] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1722), + [sym_comment] = ACTIONS(52), + }, + [672] = { + [anon_sym_RBRACE] = ACTIONS(1722), + [sym_comment] = ACTIONS(52), + }, + [673] = { + [sym__concat] = ACTIONS(1336), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_raw_string] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_LT_LPAREN] = ACTIONS(1336), + [anon_sym_GT_LPAREN] = ACTIONS(1336), + [sym_word] = ACTIONS(1338), + [sym_comment] = ACTIONS(52), + }, + [674] = { + [sym__concat] = ACTIONS(1340), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1708), + [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), + }, + [675] = { + [anon_sym_AT] = ACTIONS(1724), + [sym_comment] = ACTIONS(52), + }, + [676] = { + [sym__concat] = ACTIONS(1346), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), + [sym_word] = ACTIONS(1348), + [sym_comment] = ACTIONS(52), + }, + [677] = { + [anon_sym_AT] = ACTIONS(1726), + [sym_comment] = ACTIONS(52), + }, + [678] = { + [anon_sym_RBRACK] = ACTIONS(1728), + [sym_comment] = ACTIONS(52), + }, + [679] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1730), + [sym_comment] = ACTIONS(52), + }, + [680] = { + [anon_sym_RBRACE] = ACTIONS(1730), + [sym_comment] = ACTIONS(52), + }, + [681] = { + [anon_sym_RBRACK] = ACTIONS(1732), + [sym_comment] = ACTIONS(52), + }, + [682] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1734), + [sym_comment] = ACTIONS(52), + }, + [683] = { + [anon_sym_RBRACE] = ACTIONS(1734), + [sym_comment] = ACTIONS(52), + }, + [684] = { + [sym_file_descriptor] = ACTIONS(1336), + [sym__concat] = ACTIONS(1336), + [sym_variable_name] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1706), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_AMP_GT] = ACTIONS(1706), + [anon_sym_AMP_GT_GT] = ACTIONS(1336), + [anon_sym_LT_AMP] = ACTIONS(1336), + [anon_sym_GT_AMP] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_raw_string] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_LT_LPAREN] = ACTIONS(1336), + [anon_sym_GT_LPAREN] = ACTIONS(1336), + [sym_word] = ACTIONS(1706), + [sym_comment] = ACTIONS(52), + }, + [685] = { + [sym_file_descriptor] = ACTIONS(1340), + [sym__concat] = ACTIONS(1340), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(1708), + [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(1708), + [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(1708), [sym_comment] = ACTIONS(52), }, [686] = { - [anon_sym_RPAREN] = ACTIONS(1680), - [sym_word] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1736), [sym_comment] = ACTIONS(52), }, [687] = { - [sym_file_descriptor] = ACTIONS(382), - [sym__concat] = ACTIONS(382), - [sym_variable_name] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(382), - [anon_sym_PIPE_AMP] = ACTIONS(382), - [anon_sym_AMP_AMP] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_word] = ACTIONS(384), + [sym_file_descriptor] = ACTIONS(1346), + [sym__concat] = ACTIONS(1346), + [sym_variable_name] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1712), + [anon_sym_GT] = ACTIONS(1712), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1712), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), + [sym_word] = ACTIONS(1712), [sym_comment] = ACTIONS(52), }, [688] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(1682), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(1738), + [sym_comment] = ACTIONS(52), + }, + [689] = { + [anon_sym_RBRACK] = ACTIONS(1740), + [sym_comment] = ACTIONS(52), + }, + [690] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1742), + [sym_comment] = ACTIONS(52), + }, + [691] = { + [anon_sym_RBRACE] = ACTIONS(1742), + [sym_comment] = ACTIONS(52), + }, + [692] = { + [anon_sym_RBRACK] = ACTIONS(1744), + [sym_comment] = ACTIONS(52), + }, + [693] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1746), + [sym_comment] = ACTIONS(52), + }, + [694] = { + [anon_sym_RBRACE] = ACTIONS(1746), + [sym_comment] = ACTIONS(52), + }, + [695] = { + [anon_sym_DQUOTE] = ACTIONS(1342), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [sym_comment] = ACTIONS(142), + }, + [696] = { + [anon_sym_AT] = ACTIONS(1748), + [sym_comment] = ACTIONS(52), + }, + [697] = { + [anon_sym_DQUOTE] = ACTIONS(1348), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [sym_comment] = ACTIONS(142), + }, + [698] = { + [anon_sym_AT] = ACTIONS(1750), + [sym_comment] = ACTIONS(52), + }, + [699] = { + [anon_sym_RBRACK] = ACTIONS(1752), + [sym_comment] = ACTIONS(52), + }, + [700] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1754), + [sym_comment] = ACTIONS(52), + }, + [701] = { + [anon_sym_RBRACE] = ACTIONS(1754), + [sym_comment] = ACTIONS(52), + }, + [702] = { + [anon_sym_RBRACK] = ACTIONS(1756), + [sym_comment] = ACTIONS(52), + }, + [703] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1758), + [sym_comment] = ACTIONS(52), + }, + [704] = { + [anon_sym_RBRACE] = ACTIONS(1758), + [sym_comment] = ACTIONS(52), + }, + [705] = { + [anon_sym_RBRACK] = ACTIONS(1760), + [sym_comment] = ACTIONS(52), + }, + [706] = { + [anon_sym_RBRACK] = ACTIONS(1762), + [sym_comment] = ACTIONS(52), + }, + [707] = { + [anon_sym_RBRACE] = ACTIONS(1764), + [sym_comment] = ACTIONS(52), + }, + [708] = { + [sym_file_descriptor] = ACTIONS(1766), + [sym__concat] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_SEMI_SEMI] = ACTIONS(1768), + [anon_sym_PIPE_AMP] = ACTIONS(1768), + [anon_sym_AMP_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_AMP_GT] = ACTIONS(1768), + [anon_sym_AMP_GT_GT] = ACTIONS(1768), + [anon_sym_LT_AMP] = ACTIONS(1768), + [anon_sym_GT_AMP] = ACTIONS(1768), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LT_LT_DASH] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym_raw_string] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1768), + [anon_sym_LT_LPAREN] = ACTIONS(1768), + [anon_sym_GT_LPAREN] = ACTIONS(1768), + [sym_word] = ACTIONS(1768), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_LF] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + }, + [709] = { + [anon_sym_RBRACE] = ACTIONS(1770), + [sym_comment] = ACTIONS(52), + }, + [710] = { + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_AMP_GT] = ACTIONS(1774), + [anon_sym_AMP_GT_GT] = ACTIONS(1774), + [anon_sym_LT_AMP] = ACTIONS(1774), + [anon_sym_GT_AMP] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1774), + [anon_sym_LT_LT_DASH] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_word] = ACTIONS(1774), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + }, + [711] = { + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1100), + [anon_sym_PIPE_AMP] = ACTIONS(1100), + [anon_sym_AMP_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1776), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), + [sym_word] = ACTIONS(1102), + [sym_comment] = ACTIONS(52), + }, + [712] = { + [anon_sym_RPAREN] = ACTIONS(1778), + [sym_word] = ACTIONS(1110), + [sym_comment] = ACTIONS(52), + }, + [713] = { + [sym_file_descriptor] = ACTIONS(386), + [sym__concat] = ACTIONS(386), + [sym_variable_name] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(386), + [anon_sym_PIPE_AMP] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(386), + [anon_sym_LT_AMP] = ACTIONS(386), + [anon_sym_GT_AMP] = ACTIONS(386), + [anon_sym_DQUOTE] = ACTIONS(386), + [sym_raw_string] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(386), + [anon_sym_BQUOTE] = ACTIONS(386), + [anon_sym_LT_LPAREN] = ACTIONS(386), + [anon_sym_GT_LPAREN] = ACTIONS(386), + [sym_word] = ACTIONS(388), + [sym_comment] = ACTIONS(52), + }, + [714] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(1780), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [689] = { - [sym_string] = STATE(857), - [sym_simple_expansion] = STATE(857), - [sym_expansion] = STATE(857), - [sym_command_substitution] = STATE(857), - [sym_process_substitution] = STATE(857), - [anon_sym_DQUOTE] = ACTIONS(852), - [sym_raw_string] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_word] = ACTIONS(1686), + [715] = { + [sym_string] = STATE(911), + [sym_simple_expansion] = STATE(911), + [sym_expansion] = STATE(911), + [sym_command_substitution] = STATE(911), + [sym_process_substitution] = STATE(911), + [anon_sym_DQUOTE] = ACTIONS(868), + [sym_raw_string] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(872), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_word] = ACTIONS(1784), [sym_comment] = ACTIONS(52), }, - [690] = { - [sym_file_descriptor] = ACTIONS(408), - [sym__concat] = ACTIONS(1688), - [sym_variable_name] = ACTIONS(408), - [anon_sym_PIPE] = ACTIONS(688), - [anon_sym_RPAREN] = ACTIONS(408), - [anon_sym_PIPE_AMP] = ACTIONS(408), - [anon_sym_AMP_AMP] = ACTIONS(408), - [anon_sym_PIPE_PIPE] = ACTIONS(688), - [anon_sym_LT] = ACTIONS(688), - [anon_sym_GT] = ACTIONS(688), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_AMP_GT] = ACTIONS(688), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_DQUOTE] = ACTIONS(408), - [sym_raw_string] = ACTIONS(408), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), - [anon_sym_BQUOTE] = ACTIONS(408), - [anon_sym_LT_LPAREN] = ACTIONS(408), - [anon_sym_GT_LPAREN] = ACTIONS(408), - [sym_word] = ACTIONS(412), - [sym_comment] = ACTIONS(52), - }, - [691] = { - [sym_file_descriptor] = ACTIONS(414), - [sym__concat] = ACTIONS(414), - [sym_variable_name] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_PIPE_AMP] = ACTIONS(414), - [anon_sym_AMP_AMP] = ACTIONS(414), - [anon_sym_PIPE_PIPE] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(414), - [anon_sym_AMP_GT] = ACTIONS(426), - [anon_sym_AMP_GT_GT] = ACTIONS(414), - [anon_sym_LT_AMP] = ACTIONS(414), - [anon_sym_GT_AMP] = ACTIONS(414), - [anon_sym_DQUOTE] = ACTIONS(414), - [sym_raw_string] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), + [716] = { + [sym_file_descriptor] = ACTIONS(412), + [sym__concat] = ACTIONS(1786), + [sym_variable_name] = ACTIONS(412), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_PIPE_AMP] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(412), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(704), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_raw_string] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), [sym_word] = ACTIONS(416), [sym_comment] = ACTIONS(52), }, - [692] = { + [717] = { [sym_file_descriptor] = ACTIONS(418), [sym__concat] = ACTIONS(418), [sym_variable_name] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(430), [anon_sym_RPAREN] = ACTIONS(418), [anon_sym_PIPE_AMP] = ACTIONS(418), [anon_sym_AMP_AMP] = ACTIONS(418), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(430), [anon_sym_AMP_GT_GT] = ACTIONS(418), [anon_sym_LT_AMP] = ACTIONS(418), [anon_sym_GT_AMP] = ACTIONS(418), [anon_sym_DQUOTE] = ACTIONS(418), [sym_raw_string] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(430), [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), [anon_sym_BQUOTE] = ACTIONS(418), @@ -17908,25 +18754,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(420), [sym_comment] = ACTIONS(52), }, - [693] = { + [718] = { [sym_file_descriptor] = ACTIONS(422), [sym__concat] = ACTIONS(422), [sym_variable_name] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(706), [anon_sym_RPAREN] = ACTIONS(422), [anon_sym_PIPE_AMP] = ACTIONS(422), [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(706), [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(692), + [anon_sym_AMP_GT] = ACTIONS(706), [anon_sym_AMP_GT_GT] = ACTIONS(422), [anon_sym_LT_AMP] = ACTIONS(422), [anon_sym_GT_AMP] = ACTIONS(422), [anon_sym_DQUOTE] = ACTIONS(422), [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(706), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), [anon_sym_BQUOTE] = ACTIONS(422), @@ -17935,21 +18781,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(424), [sym_comment] = ACTIONS(52), }, - [694] = { - [sym_special_variable_name] = STATE(860), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [719] = { + [sym_file_descriptor] = ACTIONS(426), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_RPAREN] = ACTIONS(426), + [anon_sym_PIPE_AMP] = ACTIONS(426), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_PIPE_PIPE] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_AMP_GT] = ACTIONS(708), + [anon_sym_AMP_GT_GT] = ACTIONS(426), + [anon_sym_LT_AMP] = ACTIONS(426), + [anon_sym_GT_AMP] = ACTIONS(426), + [anon_sym_DQUOTE] = ACTIONS(426), + [sym_raw_string] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_word] = ACTIONS(428), + [sym_comment] = ACTIONS(52), + }, + [720] = { + [sym_special_variable_name] = STATE(914), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1690), + [sym_simple_variable_name] = ACTIONS(1788), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -17957,496 +18830,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [695] = { - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_COLON] = ACTIONS(1698), - [anon_sym_COLON_QMARK] = ACTIONS(1696), - [anon_sym_COLON_DASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [sym_comment] = ACTIONS(52), - }, - [696] = { - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1704), - [anon_sym_COLON] = ACTIONS(1706), - [anon_sym_COLON_QMARK] = ACTIONS(1704), - [anon_sym_COLON_DASH] = ACTIONS(1704), - [anon_sym_PERCENT] = ACTIONS(1704), - [anon_sym_SLASH] = ACTIONS(1704), - [sym_comment] = ACTIONS(52), - }, - [697] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [698] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [699] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(1708), - [sym_comment] = ACTIONS(52), - }, - [700] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [701] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [702] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [703] = { - [sym_concatenation] = STATE(602), - [sym_string] = STATE(601), - [sym_simple_expansion] = STATE(601), - [sym_expansion] = STATE(601), - [sym_command_substitution] = STATE(601), - [sym_process_substitution] = STATE(601), - [anon_sym_SEMI_SEMI] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_raw_string] = ACTIONS(1108), - [anon_sym_DOLLAR] = ACTIONS(1110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1114), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_LT_LPAREN] = ACTIONS(1118), - [anon_sym_GT_LPAREN] = ACTIONS(1118), - [sym_word] = ACTIONS(1108), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_LF] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1712), - }, - [704] = { - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_PIPE_AMP] = ACTIONS(1716), - [anon_sym_AMP_AMP] = ACTIONS(1716), - [anon_sym_PIPE_PIPE] = ACTIONS(1716), - [anon_sym_BQUOTE] = ACTIONS(1716), - [sym_comment] = ACTIONS(52), - }, - [705] = { - [sym__terminated_statement] = STATE(605), - [sym_for_statement] = STATE(377), - [sym_while_statement] = STATE(377), - [sym_if_statement] = STATE(377), - [sym_case_statement] = STATE(377), - [sym_function_definition] = STATE(377), - [sym_subshell] = STATE(377), - [sym_pipeline] = STATE(377), - [sym_list] = STATE(377), - [sym_bracket_command] = STATE(377), - [sym_command] = STATE(377), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(378), - [sym_subscript] = STATE(26), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [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(1718), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), - [sym_comment] = ACTIONS(52), - }, - [706] = { - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1722), - [anon_sym_PIPE_AMP] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1722), - [anon_sym_PIPE_PIPE] = ACTIONS(1722), - [anon_sym_BQUOTE] = ACTIONS(1722), - [sym_comment] = ACTIONS(52), - }, - [707] = { - [anon_sym_fi] = ACTIONS(1724), - [sym_comment] = ACTIONS(52), - }, - [708] = { - [sym__terminated_statement] = STATE(613), - [sym_for_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_elif_clause] = STATE(385), - [sym_else_clause] = STATE(872), - [sym_case_statement] = STATE(384), - [sym_function_definition] = STATE(384), - [sym_subshell] = STATE(384), - [sym_pipeline] = STATE(384), - [sym_list] = STATE(384), - [sym_bracket_command] = STATE(384), - [sym_command] = STATE(384), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(387), - [sym_subscript] = STATE(26), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [aux_sym_if_statement_repeat1] = STATE(873), - [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(1726), - [anon_sym_elif] = ACTIONS(630), - [anon_sym_else] = ACTIONS(632), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), - [sym_comment] = ACTIONS(52), - }, - [709] = { - [sym_elif_clause] = STATE(616), - [sym_else_clause] = STATE(872), - [anon_sym_fi] = ACTIONS(1724), - [anon_sym_elif] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1140), - [sym_comment] = ACTIONS(52), - }, - [710] = { - [sym_case_item] = STATE(619), - [sym_concatenation] = STATE(620), - [sym_string] = STATE(618), - [sym_simple_expansion] = STATE(618), - [sym_expansion] = STATE(618), - [sym_command_substitution] = STATE(618), - [sym_process_substitution] = STATE(618), - [aux_sym_case_statement_repeat1] = STATE(875), - [anon_sym_esac] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1146), - [sym_comment] = ACTIONS(52), - }, - [711] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1730), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_LF] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - }, - [712] = { - [sym_compound_statement] = STATE(877), - [anon_sym_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(52), - }, - [713] = { - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_PIPE_AMP] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1734), - [sym_comment] = ACTIONS(52), - }, - [714] = { - [sym_file_descriptor] = ACTIONS(516), - [sym_variable_name] = ACTIONS(516), - [anon_sym_for] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_function] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_AMP_GT] = ACTIONS(518), - [anon_sym_AMP_GT_GT] = ACTIONS(516), - [anon_sym_LT_AMP] = ACTIONS(516), - [anon_sym_GT_AMP] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR] = ACTIONS(518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), - [anon_sym_BQUOTE] = ACTIONS(516), - [anon_sym_LT_LPAREN] = ACTIONS(516), - [anon_sym_GT_LPAREN] = ACTIONS(516), - [sym_word] = ACTIONS(520), - [sym_comment] = ACTIONS(52), - }, - [715] = { - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_PIPE_AMP] = ACTIONS(1282), - [anon_sym_AMP_AMP] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_GT_GT] = ACTIONS(1282), - [anon_sym_AMP_GT] = ACTIONS(1608), - [anon_sym_AMP_GT_GT] = ACTIONS(1282), - [anon_sym_LT_AMP] = ACTIONS(1282), - [anon_sym_GT_AMP] = ACTIONS(1282), - [anon_sym_LT_LT] = ACTIONS(1608), - [anon_sym_LT_LT_DASH] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_raw_string] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1282), - [anon_sym_BQUOTE] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(1282), - [anon_sym_GT_LPAREN] = ACTIONS(1282), - [sym_word] = ACTIONS(1284), - [sym_comment] = ACTIONS(52), - }, - [716] = { - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1610), - [anon_sym_GT_GT] = ACTIONS(1286), - [anon_sym_AMP_GT] = ACTIONS(1610), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1286), - [anon_sym_GT_AMP] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1610), - [anon_sym_LT_LT_DASH] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), - [sym_word] = ACTIONS(1288), - [sym_comment] = ACTIONS(52), - }, - [717] = { - [anon_sym_AT] = ACTIONS(1738), - [sym_comment] = ACTIONS(52), - }, - [718] = { - [sym_file_descriptor] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1292), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_LT_LT] = ACTIONS(1614), - [anon_sym_LT_LT_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_raw_string] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym_word] = ACTIONS(1294), - [sym_comment] = ACTIONS(52), - }, - [719] = { - [anon_sym_AT] = ACTIONS(1740), - [sym_comment] = ACTIONS(52), - }, - [720] = { - [anon_sym_RBRACK] = ACTIONS(1742), - [sym_comment] = ACTIONS(52), - }, [721] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_EQ] = ACTIONS(1794), + [anon_sym_COLON] = ACTIONS(1796), + [anon_sym_COLON_QMARK] = ACTIONS(1794), + [anon_sym_COLON_DASH] = ACTIONS(1794), + [anon_sym_PERCENT] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), [sym_comment] = ACTIONS(52), }, [722] = { - [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1802), + [anon_sym_COLON_DASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), [sym_comment] = ACTIONS(52), }, [723] = { - [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, [724] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1748), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), [sym_comment] = ACTIONS(52), }, [725] = { - [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(1806), [sym_comment] = ACTIONS(52), }, [726] = { - [sym__terminated_statement] = STATE(22), - [sym_for_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_subshell] = STATE(23), - [sym_pipeline] = STATE(23), - [sym_list] = STATE(23), - [sym_bracket_command] = STATE(23), - [sym_command] = STATE(23), + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [727] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [728] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [729] = { + [sym_concatenation] = STATE(628), + [sym_string] = STATE(627), + [sym_simple_expansion] = STATE(627), + [sym_expansion] = STATE(627), + [sym_command_substitution] = STATE(627), + [sym_process_substitution] = STATE(627), + [anon_sym_SEMI_SEMI] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1158), + [sym_raw_string] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), + [anon_sym_BQUOTE] = ACTIONS(1168), + [anon_sym_LT_LPAREN] = ACTIONS(1170), + [anon_sym_GT_LPAREN] = ACTIONS(1170), + [sym_word] = ACTIONS(1160), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_LF] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + }, + [730] = { + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_RPAREN] = ACTIONS(1814), + [anon_sym_PIPE_AMP] = ACTIONS(1814), + [anon_sym_AMP_AMP] = ACTIONS(1814), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_BQUOTE] = ACTIONS(1814), + [sym_comment] = ACTIONS(52), + }, + [731] = { + [sym__terminated_statement] = STATE(631), + [sym_for_statement] = STATE(387), + [sym_while_statement] = STATE(387), + [sym_if_statement] = STATE(387), + [sym_case_statement] = STATE(387), + [sym_function_definition] = STATE(387), + [sym_subshell] = STATE(387), + [sym_pipeline] = STATE(387), + [sym_list] = STATE(387), + [sym_bracket_command] = STATE(387), + [sym_command] = STATE(387), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(25), + [sym_environment_variable_assignment] = STATE(388), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -18455,17 +19006,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(886), [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(1816), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1750), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_LT] = ACTIONS(32), @@ -18486,199 +19036,383 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [727] = { - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), + [732] = { + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_PIPE_AMP] = ACTIONS(1820), + [anon_sym_AMP_AMP] = ACTIONS(1820), + [anon_sym_PIPE_PIPE] = ACTIONS(1820), + [anon_sym_BQUOTE] = ACTIONS(1820), [sym_comment] = ACTIONS(52), }, - [728] = { - [aux_sym_concatenation_repeat1] = STATE(733), - [sym_file_descriptor] = ACTIONS(566), - [sym__concat] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_RPAREN] = ACTIONS(566), - [anon_sym_PIPE_AMP] = ACTIONS(566), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_AMP_GT] = ACTIONS(568), - [anon_sym_AMP_GT_GT] = ACTIONS(566), - [anon_sym_LT_AMP] = ACTIONS(566), - [anon_sym_GT_AMP] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_LT_LT_DASH] = ACTIONS(566), - [anon_sym_BQUOTE] = ACTIONS(566), + [733] = { + [anon_sym_fi] = ACTIONS(1822), [sym_comment] = ACTIONS(52), }, - [729] = { - [sym_file_descriptor] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_RPAREN] = ACTIONS(566), - [anon_sym_PIPE_AMP] = ACTIONS(566), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_AMP_GT] = ACTIONS(568), - [anon_sym_AMP_GT_GT] = ACTIONS(566), - [anon_sym_LT_AMP] = ACTIONS(566), - [anon_sym_GT_AMP] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_LT_LT_DASH] = ACTIONS(566), - [anon_sym_BQUOTE] = ACTIONS(566), + [734] = { + [sym__terminated_statement] = STATE(639), + [sym_for_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_elif_clause] = STATE(395), + [sym_else_clause] = STATE(926), + [sym_case_statement] = STATE(394), + [sym_function_definition] = STATE(394), + [sym_subshell] = STATE(394), + [sym_pipeline] = STATE(394), + [sym_list] = STATE(394), + [sym_bracket_command] = STATE(394), + [sym_command] = STATE(394), + [sym_command_name] = STATE(24), + [sym_environment_variable_assignment] = STATE(397), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_if_statement_repeat1] = STATE(927), + [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(1824), + [anon_sym_elif] = ACTIONS(644), + [anon_sym_else] = ACTIONS(646), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(36), + [sym_raw_string] = ACTIONS(38), + [anon_sym_DOLLAR] = ACTIONS(40), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), + [anon_sym_BQUOTE] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(48), + [anon_sym_GT_LPAREN] = ACTIONS(48), + [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [730] = { - [sym_file_descriptor] = ACTIONS(382), - [sym__concat] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(382), - [anon_sym_PIPE_AMP] = ACTIONS(382), - [anon_sym_AMP_AMP] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_LT_LT_DASH] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), + [735] = { + [sym_elif_clause] = STATE(642), + [sym_else_clause] = STATE(926), + [anon_sym_fi] = ACTIONS(1822), + [anon_sym_elif] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1192), [sym_comment] = ACTIONS(52), }, - [731] = { - [sym_simple_expansion] = STATE(250), - [sym_expansion] = STATE(250), - [sym_command_substitution] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(1756), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(402), + [736] = { + [sym_case_item] = STATE(645), + [sym_concatenation] = STATE(646), + [sym_string] = STATE(644), + [sym_simple_expansion] = STATE(644), + [sym_expansion] = STATE(644), + [sym_command_substitution] = STATE(644), + [sym_process_substitution] = STATE(644), + [aux_sym_case_statement_repeat1] = STATE(929), + [anon_sym_esac] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1198), + [sym_comment] = ACTIONS(52), + }, + [737] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1828), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_LF] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1828), + }, + [738] = { + [sym_compound_statement] = STATE(931), + [anon_sym_LBRACE] = ACTIONS(478), + [sym_comment] = ACTIONS(52), + }, + [739] = { + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [sym_comment] = ACTIONS(52), + }, + [740] = { + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_PIPE_AMP] = ACTIONS(1836), + [anon_sym_AMP_AMP] = ACTIONS(1836), + [anon_sym_PIPE_PIPE] = ACTIONS(1836), + [anon_sym_BQUOTE] = ACTIONS(1836), + [sym_comment] = ACTIONS(52), + }, + [741] = { + [sym_file_descriptor] = ACTIONS(530), + [sym_variable_name] = ACTIONS(530), + [anon_sym_for] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_function] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_AMP_GT] = ACTIONS(532), + [anon_sym_AMP_GT_GT] = ACTIONS(530), + [anon_sym_LT_AMP] = ACTIONS(530), + [anon_sym_GT_AMP] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [sym_raw_string] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_LT_LPAREN] = ACTIONS(530), + [anon_sym_GT_LPAREN] = ACTIONS(530), + [sym_word] = ACTIONS(534), + [sym_comment] = ACTIONS(52), + }, + [742] = { + [sym_file_descriptor] = ACTIONS(1336), + [sym__concat] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_PIPE_AMP] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1336), + [anon_sym_PIPE_PIPE] = ACTIONS(1706), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1706), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_AMP_GT] = ACTIONS(1706), + [anon_sym_AMP_GT_GT] = ACTIONS(1336), + [anon_sym_LT_AMP] = ACTIONS(1336), + [anon_sym_GT_AMP] = ACTIONS(1336), + [anon_sym_LT_LT] = ACTIONS(1706), + [anon_sym_LT_LT_DASH] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_raw_string] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_LT_LPAREN] = ACTIONS(1336), + [anon_sym_GT_LPAREN] = ACTIONS(1336), + [sym_word] = ACTIONS(1338), + [sym_comment] = ACTIONS(52), + }, + [743] = { + [sym_file_descriptor] = ACTIONS(1340), + [sym__concat] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1340), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1708), + [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), + }, + [744] = { + [anon_sym_AT] = ACTIONS(1840), + [sym_comment] = ACTIONS(52), + }, + [745] = { + [sym_file_descriptor] = ACTIONS(1346), + [sym__concat] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1346), + [anon_sym_PIPE_PIPE] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1712), + [anon_sym_GT] = ACTIONS(1712), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1712), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_LT_LT] = ACTIONS(1712), + [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), + [sym_word] = ACTIONS(1348), + [sym_comment] = ACTIONS(52), + }, + [746] = { + [anon_sym_AT] = ACTIONS(1842), + [sym_comment] = ACTIONS(52), + }, + [747] = { + [anon_sym_RBRACK] = ACTIONS(1844), + [sym_comment] = ACTIONS(52), + }, + [748] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1846), + [sym_comment] = ACTIONS(52), + }, + [749] = { + [anon_sym_RBRACE] = ACTIONS(1846), + [sym_comment] = ACTIONS(52), + }, + [750] = { + [anon_sym_RBRACK] = ACTIONS(1848), + [sym_comment] = ACTIONS(52), + }, + [751] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1850), + [sym_comment] = ACTIONS(52), + }, + [752] = { + [anon_sym_RBRACE] = ACTIONS(1850), + [sym_comment] = ACTIONS(52), + }, + [753] = { + [sym_file_redirect] = STATE(939), + [sym_file_descriptor] = ACTIONS(936), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(944), + [anon_sym_LT_AMP] = ACTIONS(944), + [anon_sym_GT_AMP] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(1832), + [sym_comment] = ACTIONS(52), + }, + [754] = { + [sym_file_descriptor] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_PIPE_AMP] = ACTIONS(1496), + [anon_sym_AMP_AMP] = ACTIONS(1496), + [anon_sym_PIPE_PIPE] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_GT] = ACTIONS(1852), + [anon_sym_GT_GT] = ACTIONS(1496), + [anon_sym_AMP_GT] = ACTIONS(1852), + [anon_sym_AMP_GT_GT] = ACTIONS(1496), + [anon_sym_LT_AMP] = ACTIONS(1496), + [anon_sym_GT_AMP] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [sym_comment] = ACTIONS(52), + }, + [755] = { + [sym_concatenation] = STATE(941), + [sym_string] = STATE(940), + [sym_simple_expansion] = STATE(940), + [sym_expansion] = STATE(940), + [sym_command_substitution] = STATE(940), + [sym_process_substitution] = STATE(940), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_raw_string] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_word] = ACTIONS(1856), + [sym_comment] = ACTIONS(52), + }, + [756] = { + [sym_simple_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [aux_sym_string_repeat1] = STATE(943), + [anon_sym_DQUOTE] = ACTIONS(1858), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(132), [anon_sym_DOLLAR] = ACTIONS(134), [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), }, - [732] = { - [sym_string] = STATE(888), - [sym_simple_expansion] = STATE(888), - [sym_expansion] = STATE(888), - [sym_command_substitution] = STATE(888), - [sym_process_substitution] = STATE(888), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_raw_string] = ACTIONS(1758), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(934), - [anon_sym_BQUOTE] = ACTIONS(936), - [anon_sym_LT_LPAREN] = ACTIONS(938), - [anon_sym_GT_LPAREN] = ACTIONS(938), - [sym_word] = ACTIONS(1760), + [757] = { + [aux_sym_concatenation_repeat1] = STATE(945), + [sym__concat] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_RPAREN] = ACTIONS(370), + [anon_sym_PIPE_AMP] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(370), + [anon_sym_PIPE_PIPE] = ACTIONS(370), + [anon_sym_BQUOTE] = ACTIONS(370), [sym_comment] = ACTIONS(52), }, - [733] = { - [sym_file_descriptor] = ACTIONS(408), - [sym__concat] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(688), - [anon_sym_RPAREN] = ACTIONS(408), - [anon_sym_PIPE_AMP] = ACTIONS(408), - [anon_sym_AMP_AMP] = ACTIONS(408), - [anon_sym_PIPE_PIPE] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(688), - [anon_sym_GT] = ACTIONS(688), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_AMP_GT] = ACTIONS(688), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_LT_LT] = ACTIONS(688), - [anon_sym_LT_LT_DASH] = ACTIONS(408), - [anon_sym_BQUOTE] = ACTIONS(408), - [sym_comment] = ACTIONS(52), - }, - [734] = { - [sym_file_descriptor] = ACTIONS(414), - [sym__concat] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_PIPE_AMP] = ACTIONS(414), - [anon_sym_AMP_AMP] = ACTIONS(414), - [anon_sym_PIPE_PIPE] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(414), - [anon_sym_AMP_GT] = ACTIONS(426), - [anon_sym_AMP_GT_GT] = ACTIONS(414), - [anon_sym_LT_AMP] = ACTIONS(414), - [anon_sym_GT_AMP] = ACTIONS(414), - [anon_sym_LT_LT] = ACTIONS(426), - [anon_sym_LT_LT_DASH] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [sym_comment] = ACTIONS(52), - }, - [735] = { - [sym_file_descriptor] = ACTIONS(418), - [sym__concat] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_PIPE_AMP] = ACTIONS(418), - [anon_sym_AMP_AMP] = ACTIONS(418), - [anon_sym_PIPE_PIPE] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_AMP_GT] = ACTIONS(690), - [anon_sym_AMP_GT_GT] = ACTIONS(418), - [anon_sym_LT_AMP] = ACTIONS(418), - [anon_sym_GT_AMP] = ACTIONS(418), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_LT_LT_DASH] = ACTIONS(418), - [anon_sym_BQUOTE] = ACTIONS(418), - [sym_comment] = ACTIONS(52), - }, - [736] = { - [sym_file_descriptor] = ACTIONS(422), - [sym__concat] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_PIPE_AMP] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(692), - [anon_sym_AMP_GT_GT] = ACTIONS(422), - [anon_sym_LT_AMP] = ACTIONS(422), - [anon_sym_GT_AMP] = ACTIONS(422), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_LT_LT_DASH] = ACTIONS(422), - [anon_sym_BQUOTE] = ACTIONS(422), - [sym_comment] = ACTIONS(52), - }, - [737] = { - [sym_special_variable_name] = STATE(891), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(156), - [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [758] = { + [sym_special_variable_name] = STATE(948), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1764), + [sym_simple_variable_name] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_QMARK] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_0] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), + }, + [759] = { + [sym_special_variable_name] = STATE(951), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_AT] = ACTIONS(156), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1870), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -18686,224 +19420,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [738] = { - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1772), - [anon_sym_COLON_QMARK] = ACTIONS(1770), - [anon_sym_COLON_DASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1770), - [sym_comment] = ACTIONS(52), - }, - [739] = { - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(1780), - [anon_sym_COLON_QMARK] = ACTIONS(1778), - [anon_sym_COLON_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1778), - [sym_comment] = ACTIONS(52), - }, - [740] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [741] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [742] = { - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(1782), - [sym_comment] = ACTIONS(52), - }, - [743] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_PIPE_AMP] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(1782), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [744] = { - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [745] = { - [sym_file_descriptor] = ACTIONS(236), - [sym_variable_name] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(240), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_word] = ACTIONS(238), - [sym_comment] = ACTIONS(52), - }, - [746] = { - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_PIPE_AMP] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE_PIPE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1786), - [anon_sym_GT_GT] = ACTIONS(1456), - [anon_sym_AMP_GT] = ACTIONS(1786), - [anon_sym_AMP_GT_GT] = ACTIONS(1456), - [anon_sym_LT_AMP] = ACTIONS(1456), - [anon_sym_GT_AMP] = ACTIONS(1456), - [anon_sym_LT_LT] = ACTIONS(1786), - [anon_sym_LT_LT_DASH] = ACTIONS(1456), - [anon_sym_BQUOTE] = ACTIONS(1456), - [sym_comment] = ACTIONS(52), - }, - [747] = { - [sym_simple_expansion] = STATE(770), - [sym_expansion] = STATE(770), - [sym__heredoc_middle] = ACTIONS(1470), - [sym__heredoc_end] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(996), - [sym_comment] = ACTIONS(52), - }, - [748] = { - [sym_file_redirect] = STATE(521), - [sym_heredoc_redirect] = STATE(521), - [sym_file_descriptor] = ACTIONS(482), - [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(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_AMP_GT] = ACTIONS(488), - [anon_sym_AMP_GT_GT] = ACTIONS(490), - [anon_sym_LT_AMP] = ACTIONS(490), - [anon_sym_GT_AMP] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_LT_LT_DASH] = ACTIONS(494), - [anon_sym_BQUOTE] = ACTIONS(1792), - [sym_comment] = ACTIONS(52), - }, - [749] = { - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_SEMI_SEMI] = ACTIONS(1794), - [anon_sym_PIPE_AMP] = ACTIONS(1794), - [anon_sym_AMP_AMP] = ACTIONS(1794), - [anon_sym_PIPE_PIPE] = ACTIONS(1794), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_LF] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - }, - [750] = { - [sym__terminated_statement] = STATE(134), - [sym_for_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_subshell] = STATE(23), - [sym_pipeline] = STATE(23), - [sym_list] = STATE(23), - [sym_bracket_command] = STATE(23), - [sym_command] = STATE(23), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(25), - [sym_subscript] = STATE(26), + [760] = { + [sym_for_statement] = STATE(952), + [sym_while_statement] = STATE(952), + [sym_if_statement] = STATE(952), + [sym_case_statement] = STATE(952), + [sym_function_definition] = STATE(952), + [sym_subshell] = STATE(952), + [sym_pipeline] = STATE(952), + [sym_list] = STATE(952), + [sym_bracket_command] = STATE(952), + [sym_command] = STATE(952), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(953), + [sym_subscript] = STATE(113), [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [aux_sym_command_repeat1] = STATE(30), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), [anon_sym_LT] = ACTIONS(32), [anon_sym_GT] = ACTIONS(32), [anon_sym_GT_GT] = ACTIONS(34), @@ -18911,91 +19459,790 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(34), [anon_sym_LT_AMP] = ACTIONS(34), [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), [sym_comment] = ACTIONS(52), }, - [751] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(806), - [anon_sym_LT_AMP] = ACTIONS(806), - [anon_sym_GT_AMP] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(806), - [anon_sym_LT_LT_DASH] = ACTIONS(806), + [761] = { + [sym_for_statement] = STATE(954), + [sym_while_statement] = STATE(954), + [sym_if_statement] = STATE(954), + [sym_case_statement] = STATE(954), + [sym_function_definition] = STATE(954), + [sym_subshell] = STATE(954), + [sym_pipeline] = STATE(954), + [sym_list] = STATE(954), + [sym_bracket_command] = STATE(954), + [sym_command] = STATE(954), + [sym_command_name] = STATE(117), + [sym_environment_variable_assignment] = STATE(955), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(119), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [762] = { + [sym_for_statement] = STATE(956), + [sym_while_statement] = STATE(956), + [sym_if_statement] = STATE(956), + [sym_case_statement] = STATE(956), + [sym_function_definition] = STATE(956), + [sym_subshell] = STATE(956), + [sym_pipeline] = STATE(956), + [sym_list] = STATE(956), + [sym_bracket_command] = STATE(956), + [sym_command] = STATE(956), + [sym_command_name] = STATE(111), + [sym_environment_variable_assignment] = STATE(957), + [sym_subscript] = STATE(113), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(103), + [sym_simple_expansion] = STATE(103), + [sym_expansion] = STATE(103), + [sym_command_substitution] = STATE(103), + [sym_process_substitution] = STATE(103), + [aux_sym_command_repeat1] = STATE(115), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_while] = ACTIONS(168), + [anon_sym_if] = ACTIONS(170), + [anon_sym_case] = ACTIONS(172), + [anon_sym_function] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(32), + [anon_sym_GT] = ACTIONS(32), + [anon_sym_GT_GT] = ACTIONS(34), + [anon_sym_AMP_GT] = ACTIONS(32), + [anon_sym_AMP_GT_GT] = ACTIONS(34), + [anon_sym_LT_AMP] = ACTIONS(34), + [anon_sym_GT_AMP] = ACTIONS(34), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(184), + [anon_sym_DOLLAR] = ACTIONS(186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(194), + [anon_sym_GT_LPAREN] = ACTIONS(194), + [sym_word] = ACTIONS(196), + [sym_comment] = ACTIONS(52), + }, + [763] = { + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_RPAREN] = ACTIONS(370), + [anon_sym_PIPE_AMP] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(370), + [anon_sym_PIPE_PIPE] = ACTIONS(370), + [anon_sym_BQUOTE] = ACTIONS(370), + [sym_comment] = ACTIONS(52), + }, + [764] = { + [aux_sym_concatenation_repeat1] = STATE(769), + [sym_file_descriptor] = ACTIONS(580), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_PIPE_AMP] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(580), + [anon_sym_LT_AMP] = ACTIONS(580), + [anon_sym_GT_AMP] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_LT_LT_DASH] = ACTIONS(580), + [anon_sym_BQUOTE] = ACTIONS(580), + [sym_comment] = ACTIONS(52), + }, + [765] = { + [sym_file_descriptor] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_PIPE_AMP] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(580), + [anon_sym_LT_AMP] = ACTIONS(580), + [anon_sym_GT_AMP] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_LT_LT_DASH] = ACTIONS(580), + [anon_sym_BQUOTE] = ACTIONS(580), + [sym_comment] = ACTIONS(52), + }, + [766] = { + [sym_file_descriptor] = ACTIONS(386), + [sym__concat] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(386), + [anon_sym_PIPE_AMP] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(386), + [anon_sym_LT_AMP] = ACTIONS(386), + [anon_sym_GT_AMP] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_LT_LT_DASH] = ACTIONS(386), + [anon_sym_BQUOTE] = ACTIONS(386), + [sym_comment] = ACTIONS(52), + }, + [767] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(1872), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), }, - [752] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_SEMI_SEMI] = ACTIONS(814), - [anon_sym_PIPE_AMP] = ACTIONS(814), - [anon_sym_AMP_AMP] = ACTIONS(814), - [anon_sym_PIPE_PIPE] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_AMP_GT] = ACTIONS(814), - [anon_sym_AMP_GT_GT] = ACTIONS(814), - [anon_sym_LT_AMP] = ACTIONS(814), - [anon_sym_GT_AMP] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(814), - [anon_sym_LT_LT_DASH] = ACTIONS(814), + [768] = { + [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_DQUOTE] = ACTIONS(954), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(964), + [anon_sym_LT_LPAREN] = ACTIONS(966), + [anon_sym_GT_LPAREN] = ACTIONS(966), + [sym_word] = ACTIONS(1876), + [sym_comment] = ACTIONS(52), + }, + [769] = { + [sym_file_descriptor] = ACTIONS(412), + [sym__concat] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_PIPE_AMP] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(412), + [anon_sym_PIPE_PIPE] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(704), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(704), + [anon_sym_LT_LT_DASH] = ACTIONS(412), + [anon_sym_BQUOTE] = ACTIONS(412), + [sym_comment] = ACTIONS(52), + }, + [770] = { + [sym_file_descriptor] = ACTIONS(418), + [sym__concat] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_PIPE_AMP] = ACTIONS(418), + [anon_sym_AMP_AMP] = ACTIONS(418), + [anon_sym_PIPE_PIPE] = ACTIONS(418), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(418), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(418), + [anon_sym_LT_AMP] = ACTIONS(418), + [anon_sym_GT_AMP] = ACTIONS(418), + [anon_sym_LT_LT] = ACTIONS(430), + [anon_sym_LT_LT_DASH] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(418), + [sym_comment] = ACTIONS(52), + }, + [771] = { + [sym_file_descriptor] = ACTIONS(422), + [sym__concat] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(422), + [anon_sym_PIPE_AMP] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(422), + [anon_sym_PIPE_PIPE] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_AMP_GT] = ACTIONS(706), + [anon_sym_AMP_GT_GT] = ACTIONS(422), + [anon_sym_LT_AMP] = ACTIONS(422), + [anon_sym_GT_AMP] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_LT_LT_DASH] = ACTIONS(422), + [anon_sym_BQUOTE] = ACTIONS(422), + [sym_comment] = ACTIONS(52), + }, + [772] = { + [sym_file_descriptor] = ACTIONS(426), + [sym__concat] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_RPAREN] = ACTIONS(426), + [anon_sym_PIPE_AMP] = ACTIONS(426), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_PIPE_PIPE] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_AMP_GT] = ACTIONS(708), + [anon_sym_AMP_GT_GT] = ACTIONS(426), + [anon_sym_LT_AMP] = ACTIONS(426), + [anon_sym_GT_AMP] = ACTIONS(426), + [anon_sym_LT_LT] = ACTIONS(708), + [anon_sym_LT_LT_DASH] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [sym_comment] = ACTIONS(52), + }, + [773] = { + [sym_special_variable_name] = STATE(962), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(156), + [anon_sym_AT] = ACTIONS(156), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), + [sym_simple_variable_name] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), }, - [753] = { - [sym_string] = STATE(902), - [sym_simple_expansion] = STATE(902), - [sym_expansion] = STATE(902), - [sym_command_substitution] = STATE(902), - [sym_process_substitution] = STATE(902), - [anon_sym_DQUOTE] = ACTIONS(526), - [sym_raw_string] = ACTIONS(1798), - [anon_sym_DOLLAR] = ACTIONS(530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(534), - [anon_sym_BQUOTE] = ACTIONS(536), - [anon_sym_LT_LPAREN] = ACTIONS(538), - [anon_sym_GT_LPAREN] = ACTIONS(538), - [sym_word] = ACTIONS(1800), + [774] = { + [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), }, - [754] = { - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1804), + [775] = { + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1896), + [anon_sym_COLON_QMARK] = ACTIONS(1894), + [anon_sym_COLON_DASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), [sym_comment] = ACTIONS(52), }, - [755] = { - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1808), + [776] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), [sym_comment] = ACTIONS(52), }, - [756] = { + [777] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [778] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(1898), + [sym_comment] = ACTIONS(52), + }, + [779] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1898), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [780] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [781] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [782] = { + [sym_file_descriptor] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_PIPE_AMP] = ACTIONS(1554), + [anon_sym_AMP_AMP] = ACTIONS(1554), + [anon_sym_PIPE_PIPE] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1902), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_AMP_GT] = ACTIONS(1902), + [anon_sym_AMP_GT_GT] = ACTIONS(1554), + [anon_sym_LT_AMP] = ACTIONS(1554), + [anon_sym_GT_AMP] = ACTIONS(1554), + [anon_sym_LT_LT] = ACTIONS(1902), + [anon_sym_LT_LT_DASH] = ACTIONS(1554), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_comment] = ACTIONS(52), + }, + [783] = { + [sym_simple_expansion] = STATE(823), + [sym_expansion] = STATE(823), + [sym__heredoc_middle] = ACTIONS(1568), + [sym__heredoc_end] = ACTIONS(1904), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [sym_comment] = ACTIONS(52), + }, + [784] = { + [sym_file_redirect] = STATE(538), + [sym_heredoc_redirect] = STATE(538), + [sym_file_descriptor] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_PIPE_AMP] = ACTIONS(1908), + [anon_sym_AMP_AMP] = ACTIONS(1908), + [anon_sym_PIPE_PIPE] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(496), + [anon_sym_AMP_GT] = ACTIONS(494), + [anon_sym_AMP_GT_GT] = ACTIONS(496), + [anon_sym_LT_AMP] = ACTIONS(496), + [anon_sym_GT_AMP] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_LT_LT_DASH] = ACTIONS(500), + [anon_sym_BQUOTE] = ACTIONS(1908), + [sym_comment] = ACTIONS(52), + }, + [785] = { + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_LF] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + }, + [786] = { + [aux_sym_concatenation_repeat1] = STATE(791), + [sym__concat] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_SEMI_SEMI] = ACTIONS(1518), + [anon_sym_PIPE_AMP] = ACTIONS(1518), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + }, + [787] = { + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_SEMI_SEMI] = ACTIONS(1518), + [anon_sym_PIPE_AMP] = ACTIONS(1518), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + }, + [788] = { + [sym__concat] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_SEMI_SEMI] = ACTIONS(388), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(388), + }, + [789] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(1910), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [sym_comment] = ACTIONS(142), + }, + [790] = { + [sym_string] = STATE(973), + [sym_simple_expansion] = STATE(973), + [sym_expansion] = STATE(973), + [sym_command_substitution] = STATE(973), + [sym_process_substitution] = STATE(973), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(1912), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_LT_LPAREN] = ACTIONS(1010), + [anon_sym_GT_LPAREN] = ACTIONS(1010), + [sym_word] = ACTIONS(1914), + [sym_comment] = ACTIONS(52), + }, + [791] = { + [sym__concat] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(416), + [anon_sym_RPAREN] = ACTIONS(416), + [anon_sym_SEMI_SEMI] = ACTIONS(416), + [anon_sym_PIPE_AMP] = ACTIONS(416), + [anon_sym_AMP_AMP] = ACTIONS(416), + [anon_sym_PIPE_PIPE] = ACTIONS(416), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_LF] = ACTIONS(416), + [anon_sym_AMP] = ACTIONS(416), + }, + [792] = { + [sym__concat] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(420), + [anon_sym_RPAREN] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(420), + [anon_sym_PIPE_AMP] = ACTIONS(420), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_LF] = ACTIONS(420), + [anon_sym_AMP] = ACTIONS(420), + }, + [793] = { + [sym__concat] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(424), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_SEMI_SEMI] = ACTIONS(424), + [anon_sym_PIPE_AMP] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LF] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(424), + }, + [794] = { + [sym__concat] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_SEMI_SEMI] = ACTIONS(428), + [anon_sym_PIPE_AMP] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_LF] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + }, + [795] = { + [sym_special_variable_name] = STATE(976), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(156), + [anon_sym_AT] = ACTIONS(156), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [796] = { + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1924), + [anon_sym_COLON] = ACTIONS(1926), + [anon_sym_COLON_QMARK] = ACTIONS(1924), + [anon_sym_COLON_DASH] = ACTIONS(1924), + [anon_sym_PERCENT] = ACTIONS(1924), + [anon_sym_SLASH] = ACTIONS(1924), + [sym_comment] = ACTIONS(52), + }, + [797] = { + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_EQ] = ACTIONS(1932), + [anon_sym_COLON] = ACTIONS(1934), + [anon_sym_COLON_QMARK] = ACTIONS(1932), + [anon_sym_COLON_DASH] = ACTIONS(1932), + [anon_sym_PERCENT] = ACTIONS(1932), + [anon_sym_SLASH] = ACTIONS(1932), + [sym_comment] = ACTIONS(52), + }, + [798] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [799] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [800] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(1936), + [sym_comment] = ACTIONS(52), + }, + [801] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [802] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [803] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [804] = { + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_SEMI_SEMI] = ACTIONS(822), + [anon_sym_PIPE_AMP] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(822), + [anon_sym_PIPE_PIPE] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_AMP_GT] = ACTIONS(822), + [anon_sym_AMP_GT_GT] = ACTIONS(822), + [anon_sym_LT_AMP] = ACTIONS(822), + [anon_sym_GT_AMP] = ACTIONS(822), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_LT_LT_DASH] = ACTIONS(822), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(822), + }, + [805] = { [sym_file_descriptor] = ACTIONS(828), [sym__concat] = ACTIONS(828), [anon_sym_PIPE] = ACTIONS(830), @@ -19018,155 +20265,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(830), [anon_sym_AMP] = ACTIONS(830), }, - [757] = { - [anon_sym_AT] = ACTIONS(1810), + [806] = { + [sym_string] = STATE(985), + [sym_simple_expansion] = STATE(985), + [sym_expansion] = STATE(985), + [sym_command_substitution] = STATE(985), + [sym_process_substitution] = STATE(985), + [anon_sym_DQUOTE] = ACTIONS(540), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_LT_LPAREN] = ACTIONS(552), + [anon_sym_GT_LPAREN] = ACTIONS(552), + [sym_word] = ACTIONS(1942), [sym_comment] = ACTIONS(52), }, - [758] = { - [sym_concatenation] = STATE(909), - [sym_string] = STATE(908), - [sym_simple_expansion] = STATE(908), - [sym_expansion] = STATE(908), - [sym_command_substitution] = STATE(908), - [sym_process_substitution] = STATE(908), + [807] = { + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1946), + [sym_comment] = ACTIONS(52), + }, + [808] = { + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1950), + [sym_comment] = ACTIONS(52), + }, + [809] = { + [sym_file_descriptor] = ACTIONS(844), + [sym__concat] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_SEMI_SEMI] = ACTIONS(846), + [anon_sym_PIPE_AMP] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(846), + [anon_sym_PIPE_PIPE] = ACTIONS(846), + [anon_sym_LT] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_GT_GT] = ACTIONS(846), + [anon_sym_AMP_GT] = ACTIONS(846), + [anon_sym_AMP_GT_GT] = ACTIONS(846), + [anon_sym_LT_AMP] = ACTIONS(846), + [anon_sym_GT_AMP] = ACTIONS(846), + [anon_sym_LT_LT] = ACTIONS(846), + [anon_sym_LT_LT_DASH] = ACTIONS(846), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(846), + }, + [810] = { + [anon_sym_AT] = ACTIONS(1952), + [sym_comment] = ACTIONS(52), + }, + [811] = { + [sym_concatenation] = STATE(992), + [sym_string] = STATE(991), + [sym_simple_expansion] = STATE(991), + [sym_expansion] = STATE(991), + [sym_command_substitution] = STATE(991), + [sym_process_substitution] = STATE(991), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1812), + [sym_raw_string] = ACTIONS(1954), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1814), + [sym_word] = ACTIONS(1956), [sym_comment] = ACTIONS(52), }, - [759] = { - [sym_file_descriptor] = ACTIONS(838), - [sym__concat] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(840), - [anon_sym_RPAREN] = ACTIONS(840), - [anon_sym_SEMI_SEMI] = ACTIONS(840), - [anon_sym_PIPE_AMP] = ACTIONS(840), - [anon_sym_AMP_AMP] = ACTIONS(840), - [anon_sym_PIPE_PIPE] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(840), - [anon_sym_GT] = ACTIONS(840), - [anon_sym_GT_GT] = ACTIONS(840), - [anon_sym_AMP_GT] = ACTIONS(840), - [anon_sym_AMP_GT_GT] = ACTIONS(840), - [anon_sym_LT_AMP] = ACTIONS(840), - [anon_sym_GT_AMP] = ACTIONS(840), - [anon_sym_LT_LT] = ACTIONS(840), - [anon_sym_LT_LT_DASH] = ACTIONS(840), + [812] = { + [sym_file_descriptor] = ACTIONS(854), + [sym__concat] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_PIPE_AMP] = ACTIONS(856), + [anon_sym_AMP_AMP] = ACTIONS(856), + [anon_sym_PIPE_PIPE] = ACTIONS(856), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_AMP_GT] = ACTIONS(856), + [anon_sym_AMP_GT_GT] = ACTIONS(856), + [anon_sym_LT_AMP] = ACTIONS(856), + [anon_sym_GT_AMP] = ACTIONS(856), + [anon_sym_LT_LT] = ACTIONS(856), + [anon_sym_LT_LT_DASH] = ACTIONS(856), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(840), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), }, - [760] = { - [anon_sym_AT] = ACTIONS(1816), + [813] = { + [anon_sym_AT] = ACTIONS(1958), [sym_comment] = ACTIONS(52), }, - [761] = { - [sym_concatenation] = STATE(912), - [sym_string] = STATE(911), - [sym_simple_expansion] = STATE(911), - [sym_expansion] = STATE(911), - [sym_command_substitution] = STATE(911), - [sym_process_substitution] = STATE(911), + [814] = { + [sym_concatenation] = STATE(995), + [sym_string] = STATE(994), + [sym_simple_expansion] = STATE(994), + [sym_expansion] = STATE(994), + [sym_command_substitution] = STATE(994), + [sym_process_substitution] = STATE(994), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1960), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1820), + [sym_word] = ACTIONS(1962), [sym_comment] = ACTIONS(52), }, - [762] = { - [sym_file_descriptor] = ACTIONS(918), - [sym__concat] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), + [815] = { + [sym_file_descriptor] = ACTIONS(946), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_SEMI_SEMI] = ACTIONS(948), + [anon_sym_PIPE_AMP] = ACTIONS(948), + [anon_sym_AMP_AMP] = ACTIONS(948), + [anon_sym_PIPE_PIPE] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(948), + [anon_sym_GT] = ACTIONS(948), + [anon_sym_GT_GT] = ACTIONS(948), + [anon_sym_AMP_GT] = ACTIONS(948), + [anon_sym_AMP_GT_GT] = ACTIONS(948), + [anon_sym_LT_AMP] = ACTIONS(948), + [anon_sym_GT_AMP] = ACTIONS(948), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_LT_LT_DASH] = ACTIONS(948), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), }, - [763] = { - [sym_file_descriptor] = ACTIONS(956), - [sym__concat] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(958), - [anon_sym_RPAREN] = ACTIONS(958), - [anon_sym_SEMI_SEMI] = ACTIONS(958), - [anon_sym_PIPE_AMP] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(958), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), - [anon_sym_GT_GT] = ACTIONS(958), - [anon_sym_AMP_GT] = ACTIONS(958), - [anon_sym_AMP_GT_GT] = ACTIONS(958), - [anon_sym_LT_AMP] = ACTIONS(958), - [anon_sym_GT_AMP] = ACTIONS(958), - [anon_sym_LT_LT] = ACTIONS(958), - [anon_sym_LT_LT_DASH] = ACTIONS(958), + [816] = { + [sym_file_descriptor] = ACTIONS(984), + [sym__concat] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_SEMI_SEMI] = ACTIONS(986), + [anon_sym_PIPE_AMP] = ACTIONS(986), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(986), + [anon_sym_GT_GT] = ACTIONS(986), + [anon_sym_AMP_GT] = ACTIONS(986), + [anon_sym_AMP_GT_GT] = ACTIONS(986), + [anon_sym_LT_AMP] = ACTIONS(986), + [anon_sym_GT_AMP] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(986), + [anon_sym_LT_LT_DASH] = ACTIONS(986), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), }, - [764] = { - [sym__heredoc_middle] = ACTIONS(414), - [sym__heredoc_end] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(52), - }, - [765] = { + [817] = { [sym__heredoc_middle] = ACTIONS(418), [sym__heredoc_end] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(430), [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), [sym_comment] = ACTIONS(52), }, - [766] = { + [818] = { [sym__heredoc_middle] = ACTIONS(422), [sym__heredoc_end] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(706), [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), [sym_comment] = ACTIONS(52), }, - [767] = { - [sym_special_variable_name] = STATE(914), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(414), + [819] = { + [sym__heredoc_middle] = ACTIONS(426), + [sym__heredoc_end] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(426), + [sym_comment] = ACTIONS(52), + }, + [820] = { + [sym_special_variable_name] = STATE(997), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), [anon_sym_DOLLAR] = ACTIONS(156), [anon_sym_POUND] = ACTIONS(156), [anon_sym_AT] = ACTIONS(156), - [anon_sym_COLON] = ACTIONS(426), - [anon_sym_COLON_QMARK] = ACTIONS(414), - [anon_sym_COLON_DASH] = ACTIONS(414), - [anon_sym_PERCENT] = ACTIONS(414), - [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), [sym_comment] = ACTIONS(142), - [sym_simple_variable_name] = ACTIONS(1822), + [sym_simple_variable_name] = ACTIONS(1964), [anon_sym_STAR] = ACTIONS(156), [anon_sym_QMARK] = ACTIONS(156), [anon_sym_DASH] = ACTIONS(156), @@ -19174,331 +20471,287 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(162), [anon_sym__] = ACTIONS(162), }, - [768] = { - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_COLON] = ACTIONS(1830), - [anon_sym_COLON_QMARK] = ACTIONS(1828), - [anon_sym_COLON_DASH] = ACTIONS(1828), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1828), + [821] = { + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_COLON] = ACTIONS(1972), + [anon_sym_COLON_QMARK] = ACTIONS(1970), + [anon_sym_COLON_DASH] = ACTIONS(1970), + [anon_sym_PERCENT] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1970), [sym_comment] = ACTIONS(52), }, - [769] = { - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1836), - [anon_sym_COLON] = ACTIONS(1838), - [anon_sym_COLON_QMARK] = ACTIONS(1836), - [anon_sym_COLON_DASH] = ACTIONS(1836), - [anon_sym_PERCENT] = ACTIONS(1836), - [anon_sym_SLASH] = ACTIONS(1836), + [822] = { + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_EQ] = ACTIONS(1978), + [anon_sym_COLON] = ACTIONS(1980), + [anon_sym_COLON_QMARK] = ACTIONS(1978), + [anon_sym_COLON_DASH] = ACTIONS(1978), + [anon_sym_PERCENT] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(1978), [sym_comment] = ACTIONS(52), }, - [770] = { - [sym__heredoc_middle] = ACTIONS(1840), - [sym__heredoc_end] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [823] = { + [sym__heredoc_middle] = ACTIONS(1982), + [sym__heredoc_end] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1982), [sym_comment] = ACTIONS(52), }, - [771] = { - [sym_file_descriptor] = ACTIONS(1844), - [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), + [824] = { + [sym_file_descriptor] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(1988), + [anon_sym_SEMI_SEMI] = ACTIONS(1988), + [anon_sym_PIPE_AMP] = ACTIONS(1988), + [anon_sym_AMP_AMP] = ACTIONS(1988), + [anon_sym_PIPE_PIPE] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1988), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1988), + [anon_sym_LT_AMP] = ACTIONS(1988), + [anon_sym_GT_AMP] = ACTIONS(1988), + [anon_sym_LT_LT] = ACTIONS(1988), + [anon_sym_LT_LT_DASH] = ACTIONS(1988), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_LF] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1988), }, - [772] = { - [sym_file_descriptor] = ACTIONS(1048), - [sym_variable_name] = ACTIONS(1048), - [anon_sym_LT] = ACTIONS(1678), - [anon_sym_GT] = ACTIONS(1678), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_AMP_GT] = ACTIONS(1678), - [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(1678), - [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(1678), + [825] = { + [sym_file_descriptor] = ACTIONS(1100), + [sym_variable_name] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1776), + [anon_sym_AMP_GT_GT] = ACTIONS(1100), + [anon_sym_LT_AMP] = ACTIONS(1100), + [anon_sym_GT_AMP] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_raw_string] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_LT_LPAREN] = ACTIONS(1100), + [anon_sym_GT_LPAREN] = ACTIONS(1100), + [sym_word] = ACTIONS(1776), [sym_comment] = ACTIONS(52), }, - [773] = { - [anon_sym_RPAREN] = ACTIONS(1848), - [sym_word] = ACTIONS(1058), + [826] = { + [anon_sym_RPAREN] = ACTIONS(1990), + [sym_word] = ACTIONS(1110), [sym_comment] = ACTIONS(52), }, - [774] = { - [sym__concat] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_RBRACK] = ACTIONS(1282), + [827] = { + [sym__concat] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_RBRACK] = ACTIONS(1336), [sym_comment] = ACTIONS(52), }, - [775] = { - [sym__concat] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), + [828] = { + [sym__concat] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1340), [sym_comment] = ACTIONS(52), }, - [776] = { - [anon_sym_AT] = ACTIONS(1850), + [829] = { + [anon_sym_AT] = ACTIONS(1992), [sym_comment] = ACTIONS(52), }, - [777] = { - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_RBRACK] = ACTIONS(1292), + [830] = { + [sym__concat] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_RBRACK] = ACTIONS(1346), [sym_comment] = ACTIONS(52), }, - [778] = { - [anon_sym_AT] = ACTIONS(1852), + [831] = { + [anon_sym_AT] = ACTIONS(1994), [sym_comment] = ACTIONS(52), }, - [779] = { - [anon_sym_RBRACK] = ACTIONS(1854), + [832] = { + [anon_sym_RBRACK] = ACTIONS(1996), [sym_comment] = ACTIONS(52), }, - [780] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1856), + [833] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1998), [sym_comment] = ACTIONS(52), }, - [781] = { - [anon_sym_RBRACE] = ACTIONS(1856), + [834] = { + [anon_sym_RBRACE] = ACTIONS(1998), [sym_comment] = ACTIONS(52), }, - [782] = { - [anon_sym_RBRACK] = ACTIONS(1858), + [835] = { + [anon_sym_RBRACK] = ACTIONS(2000), [sym_comment] = ACTIONS(52), }, - [783] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1860), + [836] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2002), [sym_comment] = ACTIONS(52), }, - [784] = { - [anon_sym_RBRACE] = ACTIONS(1860), + [837] = { + [anon_sym_RBRACE] = ACTIONS(2002), [sym_comment] = ACTIONS(52), }, - [785] = { - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym_variable_name] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), - [sym_word] = ACTIONS(1284), + [838] = { + [sym_file_descriptor] = ACTIONS(1336), + [sym__concat] = ACTIONS(1336), + [sym_variable_name] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1338), + [anon_sym_GT_GT] = ACTIONS(1338), + [anon_sym_AMP_GT] = ACTIONS(1338), + [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(1338), + [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(1338), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), }, - [786] = { - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym_variable_name] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_SEMI_SEMI] = ACTIONS(1288), - [anon_sym_PIPE_AMP] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1288), - [anon_sym_LT_AMP] = ACTIONS(1288), - [anon_sym_GT_AMP] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_raw_string] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_LT_LPAREN] = ACTIONS(1288), - [anon_sym_GT_LPAREN] = ACTIONS(1288), - [sym_word] = ACTIONS(1288), + [839] = { + [sym_file_descriptor] = ACTIONS(1340), + [sym__concat] = 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(142), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), }, - [787] = { - [anon_sym_AT] = ACTIONS(1862), + [840] = { + [anon_sym_AT] = ACTIONS(2004), [sym_comment] = ACTIONS(52), }, - [788] = { - [sym_file_descriptor] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [sym_variable_name] = ACTIONS(1292), - [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(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_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), + [841] = { + [sym_file_descriptor] = ACTIONS(1346), + [sym__concat] = ACTIONS(1346), + [sym_variable_name] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_SEMI_SEMI] = ACTIONS(1348), + [anon_sym_PIPE_AMP] = ACTIONS(1348), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_GT_GT] = ACTIONS(1348), + [anon_sym_AMP_GT] = ACTIONS(1348), + [anon_sym_AMP_GT_GT] = ACTIONS(1348), + [anon_sym_LT_AMP] = ACTIONS(1348), + [anon_sym_GT_AMP] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_raw_string] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_LT_LPAREN] = ACTIONS(1348), + [anon_sym_GT_LPAREN] = ACTIONS(1348), + [sym_word] = ACTIONS(1348), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LF] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), }, - [789] = { - [anon_sym_AT] = ACTIONS(1864), + [842] = { + [anon_sym_AT] = ACTIONS(2006), [sym_comment] = ACTIONS(52), }, - [790] = { - [anon_sym_RBRACK] = ACTIONS(1866), + [843] = { + [anon_sym_RBRACK] = ACTIONS(2008), [sym_comment] = ACTIONS(52), }, - [791] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1868), + [844] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2010), [sym_comment] = ACTIONS(52), }, - [792] = { - [anon_sym_RBRACE] = ACTIONS(1868), + [845] = { + [anon_sym_RBRACE] = ACTIONS(2010), [sym_comment] = ACTIONS(52), }, - [793] = { - [anon_sym_RBRACK] = ACTIONS(1870), + [846] = { + [anon_sym_RBRACK] = ACTIONS(2012), [sym_comment] = ACTIONS(52), }, - [794] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(1872), + [847] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2014), [sym_comment] = ACTIONS(52), }, - [795] = { - [anon_sym_RBRACE] = ACTIONS(1872), + [848] = { + [anon_sym_RBRACE] = ACTIONS(2014), [sym_comment] = ACTIONS(52), }, - [796] = { - [sym__concat] = ACTIONS(804), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_word] = ACTIONS(806), + [849] = { + [sym__concat] = ACTIONS(820), + [anon_sym_SEMI_SEMI] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_raw_string] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(822), + [anon_sym_LT_LPAREN] = ACTIONS(822), + [anon_sym_GT_LPAREN] = ACTIONS(822), + [sym_word] = ACTIONS(822), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(822), }, - [797] = { - [sym__concat] = ACTIONS(812), - [anon_sym_SEMI_SEMI] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(814), - [sym_raw_string] = ACTIONS(814), - [anon_sym_DOLLAR] = ACTIONS(814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), - [anon_sym_BQUOTE] = ACTIONS(814), - [anon_sym_LT_LPAREN] = ACTIONS(814), - [anon_sym_GT_LPAREN] = ACTIONS(814), - [sym_word] = ACTIONS(814), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LF] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(814), - }, - [798] = { - [sym_string] = STATE(934), - [sym_simple_expansion] = STATE(934), - [sym_expansion] = STATE(934), - [sym_command_substitution] = STATE(934), - [sym_process_substitution] = STATE(934), - [anon_sym_DQUOTE] = ACTIONS(608), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(616), - [anon_sym_BQUOTE] = ACTIONS(618), - [anon_sym_LT_LPAREN] = ACTIONS(620), - [anon_sym_GT_LPAREN] = ACTIONS(620), - [sym_word] = ACTIONS(1876), - [sym_comment] = ACTIONS(52), - }, - [799] = { - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1880), - [sym_comment] = ACTIONS(52), - }, - [800] = { - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1884), - [sym_comment] = ACTIONS(52), - }, - [801] = { + [850] = { [sym__concat] = ACTIONS(828), [anon_sym_SEMI_SEMI] = ACTIONS(830), [anon_sym_DQUOTE] = ACTIONS(830), @@ -19515,127 +20768,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(830), [anon_sym_AMP] = ACTIONS(830), }, - [802] = { - [anon_sym_AT] = ACTIONS(1886), + [851] = { + [sym_string] = STATE(1017), + [sym_simple_expansion] = STATE(1017), + [sym_expansion] = STATE(1017), + [sym_command_substitution] = STATE(1017), + [sym_process_substitution] = STATE(1017), + [anon_sym_DQUOTE] = ACTIONS(622), + [sym_raw_string] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(632), + [anon_sym_LT_LPAREN] = ACTIONS(634), + [anon_sym_GT_LPAREN] = ACTIONS(634), + [sym_word] = ACTIONS(2018), [sym_comment] = ACTIONS(52), }, - [803] = { - [sym_concatenation] = STATE(941), - [sym_string] = STATE(940), - [sym_simple_expansion] = STATE(940), - [sym_expansion] = STATE(940), - [sym_command_substitution] = STATE(940), - [sym_process_substitution] = STATE(940), + [852] = { + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2022), + [sym_comment] = ACTIONS(52), + }, + [853] = { + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [sym_comment] = ACTIONS(52), + }, + [854] = { + [sym__concat] = ACTIONS(844), + [anon_sym_SEMI_SEMI] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym_raw_string] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(846), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(846), + [anon_sym_BQUOTE] = ACTIONS(846), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_word] = ACTIONS(846), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(846), + }, + [855] = { + [anon_sym_AT] = ACTIONS(2028), + [sym_comment] = ACTIONS(52), + }, + [856] = { + [sym_concatenation] = STATE(1024), + [sym_string] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(2030), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1890), + [sym_word] = ACTIONS(2032), [sym_comment] = ACTIONS(52), }, - [804] = { - [sym__concat] = ACTIONS(838), - [anon_sym_SEMI_SEMI] = ACTIONS(840), - [anon_sym_DQUOTE] = ACTIONS(840), - [sym_raw_string] = ACTIONS(840), - [anon_sym_DOLLAR] = ACTIONS(840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), - [anon_sym_BQUOTE] = ACTIONS(840), - [anon_sym_LT_LPAREN] = ACTIONS(840), - [anon_sym_GT_LPAREN] = ACTIONS(840), - [sym_word] = ACTIONS(840), + [857] = { + [sym__concat] = ACTIONS(854), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(856), + [sym_raw_string] = ACTIONS(856), + [anon_sym_DOLLAR] = ACTIONS(856), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(856), + [anon_sym_BQUOTE] = ACTIONS(856), + [anon_sym_LT_LPAREN] = ACTIONS(856), + [anon_sym_GT_LPAREN] = ACTIONS(856), + [sym_word] = ACTIONS(856), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(840), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), }, - [805] = { - [anon_sym_AT] = ACTIONS(1892), + [858] = { + [anon_sym_AT] = ACTIONS(2034), [sym_comment] = ACTIONS(52), }, - [806] = { - [sym_concatenation] = STATE(944), - [sym_string] = STATE(943), - [sym_simple_expansion] = STATE(943), - [sym_expansion] = STATE(943), - [sym_command_substitution] = STATE(943), - [sym_process_substitution] = STATE(943), + [859] = { + [sym_concatenation] = STATE(1027), + [sym_string] = STATE(1026), + [sym_simple_expansion] = STATE(1026), + [sym_expansion] = STATE(1026), + [sym_command_substitution] = STATE(1026), + [sym_process_substitution] = STATE(1026), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(2036), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(1896), + [sym_word] = ACTIONS(2038), [sym_comment] = ACTIONS(52), }, - [807] = { - [sym__concat] = ACTIONS(918), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_word] = ACTIONS(920), + [860] = { + [sym__concat] = ACTIONS(946), + [anon_sym_SEMI_SEMI] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym_raw_string] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(948), + [anon_sym_BQUOTE] = ACTIONS(948), + [anon_sym_LT_LPAREN] = ACTIONS(948), + [anon_sym_GT_LPAREN] = ACTIONS(948), + [sym_word] = ACTIONS(948), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), }, - [808] = { - [sym__concat] = ACTIONS(956), - [anon_sym_SEMI_SEMI] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_raw_string] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(958), - [anon_sym_LT_LPAREN] = ACTIONS(958), - [anon_sym_GT_LPAREN] = ACTIONS(958), - [sym_word] = ACTIONS(958), + [861] = { + [sym__concat] = ACTIONS(984), + [anon_sym_SEMI_SEMI] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_raw_string] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(986), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), + [anon_sym_BQUOTE] = ACTIONS(986), + [anon_sym_LT_LPAREN] = ACTIONS(986), + [anon_sym_GT_LPAREN] = ACTIONS(986), + [sym_word] = ACTIONS(986), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), }, - [809] = { - [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), + [862] = { + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_SEMI_SEMI] = ACTIONS(2040), + [anon_sym_PIPE_AMP] = ACTIONS(2040), + [anon_sym_AMP_AMP] = ACTIONS(2040), + [anon_sym_PIPE_PIPE] = ACTIONS(2040), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_LF] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_LF] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2040), }, - [810] = { - [sym__terminated_statement] = STATE(383), - [sym_for_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_case_statement] = STATE(384), - [sym_function_definition] = STATE(384), - [sym_subshell] = STATE(384), - [sym_pipeline] = STATE(384), - [sym_list] = STATE(384), - [sym_bracket_command] = STATE(384), - [sym_command] = STATE(384), + [863] = { + [sym__terminated_statement] = STATE(393), + [sym_for_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_case_statement] = STATE(394), + [sym_function_definition] = STATE(394), + [sym_subshell] = STATE(394), + [sym_pipeline] = STATE(394), + [sym_list] = STATE(394), + [sym_bracket_command] = STATE(394), + [sym_command] = STATE(394), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(387), + [sym_environment_variable_assignment] = STATE(397), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -19644,16 +20941,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(945), + [aux_sym_program_repeat1] = STATE(1028), [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(1900), - [anon_sym_elif] = ACTIONS(1900), - [anon_sym_else] = ACTIONS(1900), + [anon_sym_fi] = ACTIONS(2042), + [anon_sym_elif] = ACTIONS(2042), + [anon_sym_else] = ACTIONS(2042), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -19677,101 +20974,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [811] = { - [sym_file_descriptor] = ACTIONS(516), - [sym_variable_name] = ACTIONS(516), - [anon_sym_for] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_fi] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_function] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_AMP_GT] = ACTIONS(518), - [anon_sym_AMP_GT_GT] = ACTIONS(516), - [anon_sym_LT_AMP] = ACTIONS(516), - [anon_sym_GT_AMP] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR] = ACTIONS(518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), - [anon_sym_BQUOTE] = ACTIONS(516), - [anon_sym_LT_LPAREN] = ACTIONS(516), - [anon_sym_GT_LPAREN] = ACTIONS(516), - [sym_word] = ACTIONS(520), + [864] = { + [sym_file_descriptor] = ACTIONS(530), + [sym_variable_name] = ACTIONS(530), + [anon_sym_for] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_fi] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_function] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_AMP_GT] = ACTIONS(532), + [anon_sym_AMP_GT_GT] = ACTIONS(530), + [anon_sym_LT_AMP] = ACTIONS(530), + [anon_sym_GT_AMP] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [sym_raw_string] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_LT_LPAREN] = ACTIONS(530), + [anon_sym_GT_LPAREN] = ACTIONS(530), + [sym_word] = ACTIONS(534), [sym_comment] = ACTIONS(52), }, - [812] = { - [sym_file_descriptor] = ACTIONS(554), - [sym_variable_name] = ACTIONS(554), - [anon_sym_for] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_fi] = ACTIONS(556), - [anon_sym_case] = ACTIONS(556), - [anon_sym_function] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_AMP_GT] = ACTIONS(556), - [anon_sym_AMP_GT_GT] = ACTIONS(554), - [anon_sym_LT_AMP] = ACTIONS(554), - [anon_sym_GT_AMP] = ACTIONS(554), - [anon_sym_DQUOTE] = ACTIONS(554), - [sym_raw_string] = ACTIONS(554), - [anon_sym_DOLLAR] = ACTIONS(556), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(554), - [anon_sym_BQUOTE] = ACTIONS(554), - [anon_sym_LT_LPAREN] = ACTIONS(554), - [anon_sym_GT_LPAREN] = ACTIONS(554), - [sym_word] = ACTIONS(558), + [865] = { + [sym_file_descriptor] = ACTIONS(568), + [sym_variable_name] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_fi] = ACTIONS(570), + [anon_sym_case] = ACTIONS(570), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_AMP_GT] = ACTIONS(570), + [anon_sym_AMP_GT_GT] = ACTIONS(568), + [anon_sym_LT_AMP] = ACTIONS(568), + [anon_sym_GT_AMP] = ACTIONS(568), + [anon_sym_DQUOTE] = ACTIONS(568), + [sym_raw_string] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), + [anon_sym_BQUOTE] = ACTIONS(568), + [anon_sym_LT_LPAREN] = ACTIONS(568), + [anon_sym_GT_LPAREN] = ACTIONS(568), + [sym_word] = ACTIONS(572), [sym_comment] = ACTIONS(52), }, - [813] = { - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_RPAREN] = ACTIONS(1902), - [anon_sym_SEMI_SEMI] = ACTIONS(1902), - [anon_sym_PIPE_AMP] = ACTIONS(1902), - [anon_sym_AMP_AMP] = ACTIONS(1902), - [anon_sym_PIPE_PIPE] = ACTIONS(1902), + [866] = { + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_SEMI_SEMI] = ACTIONS(2044), + [anon_sym_PIPE_AMP] = ACTIONS(2044), + [anon_sym_AMP_AMP] = ACTIONS(2044), + [anon_sym_PIPE_PIPE] = ACTIONS(2044), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_LF] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_LF] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2044), }, - [814] = { - [anon_sym_fi] = ACTIONS(1904), + [867] = { + [anon_sym_fi] = ACTIONS(2046), [sym_comment] = ACTIONS(52), }, - [815] = { - [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(252), - [sym_raw_string] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1908), + [868] = { + [sym_concatenation] = STATE(1031), + [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(254), + [sym_raw_string] = ACTIONS(2048), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(2050), [sym_comment] = ACTIONS(52), }, - [816] = { + [869] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -19793,7 +21090,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(950), + [aux_sym_program_repeat1] = STATE(1033), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -19801,7 +21098,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(1910), + [anon_sym_SEMI_SEMI] = ACTIONS(2052), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -19824,472 +21121,430 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [817] = { - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1914), + [870] = { + [anon_sym_PIPE] = ACTIONS(2054), + [anon_sym_RPAREN] = ACTIONS(2056), [sym_comment] = ACTIONS(52), }, - [818] = { - [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), + [871] = { + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_SEMI_SEMI] = ACTIONS(2058), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2058), }, - [819] = { - [anon_sym_esac] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_raw_string] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1920), - [anon_sym_BQUOTE] = ACTIONS(1920), - [anon_sym_LT_LPAREN] = ACTIONS(1920), - [anon_sym_GT_LPAREN] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), + [872] = { + [anon_sym_esac] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(2062), + [sym_raw_string] = ACTIONS(2062), + [anon_sym_DOLLAR] = ACTIONS(2060), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2062), + [anon_sym_BQUOTE] = ACTIONS(2062), + [anon_sym_LT_LPAREN] = ACTIONS(2062), + [anon_sym_GT_LPAREN] = ACTIONS(2062), + [sym_word] = ACTIONS(2064), [sym_comment] = ACTIONS(52), }, - [820] = { - [sym_case_item] = STATE(819), - [sym_concatenation] = STATE(620), - [sym_string] = STATE(618), - [sym_simple_expansion] = STATE(618), - [sym_expansion] = STATE(618), - [sym_command_substitution] = STATE(618), - [sym_process_substitution] = STATE(618), - [anon_sym_esac] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1146), + [873] = { + [sym_case_item] = STATE(872), + [sym_concatenation] = STATE(646), + [sym_string] = STATE(644), + [sym_simple_expansion] = STATE(644), + [sym_expansion] = STATE(644), + [sym_command_substitution] = STATE(644), + [sym_process_substitution] = STATE(644), + [anon_sym_esac] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1198), [sym_comment] = ACTIONS(52), }, - [821] = { - [anon_sym_RBRACK] = ACTIONS(1926), + [874] = { + [anon_sym_RBRACK] = ACTIONS(2068), [sym_comment] = ACTIONS(52), }, - [822] = { - [anon_sym_RBRACK] = ACTIONS(1928), + [875] = { + [anon_sym_RBRACK] = ACTIONS(2070), [sym_comment] = ACTIONS(52), }, - [823] = { - [anon_sym_RBRACE] = ACTIONS(1930), + [876] = { + [anon_sym_RBRACE] = ACTIONS(2072), [sym_comment] = ACTIONS(52), }, - [824] = { - [sym__concat] = ACTIONS(1668), - [anon_sym_in] = ACTIONS(1670), - [anon_sym_SEMI_SEMI] = ACTIONS(1670), + [877] = { + [sym__concat] = ACTIONS(1766), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_SEMI_SEMI] = ACTIONS(1768), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_LF] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), }, - [825] = { - [anon_sym_RBRACE] = ACTIONS(1932), + [878] = { + [anon_sym_RBRACE] = ACTIONS(2074), [sym_comment] = ACTIONS(52), }, - [826] = { - [sym__concat] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_SEMI_SEMI] = ACTIONS(1676), + [879] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_LF] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), }, - [827] = { - [anon_sym_RBRACK] = ACTIONS(1934), + [880] = { + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_SEMI_SEMI] = ACTIONS(2076), + [anon_sym_PIPE_AMP] = ACTIONS(2076), + [anon_sym_AMP_AMP] = ACTIONS(2076), + [anon_sym_PIPE_PIPE] = ACTIONS(2076), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_LF] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2076), + }, + [881] = { + [anon_sym_RBRACK] = ACTIONS(2078), [sym_comment] = ACTIONS(52), }, - [828] = { - [anon_sym_RBRACK] = ACTIONS(1936), + [882] = { + [anon_sym_RBRACK] = ACTIONS(2080), [sym_comment] = ACTIONS(52), }, - [829] = { - [anon_sym_RBRACE] = ACTIONS(1938), + [883] = { + [anon_sym_RBRACE] = ACTIONS(2082), [sym_comment] = ACTIONS(52), }, - [830] = { - [sym__concat] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_RBRACK] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym_raw_string] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1668), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1668), - [anon_sym_BQUOTE] = ACTIONS(1668), - [anon_sym_LT_LPAREN] = ACTIONS(1668), - [anon_sym_GT_LPAREN] = ACTIONS(1668), - [sym_word] = ACTIONS(1670), + [884] = { + [sym__concat] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_word] = ACTIONS(1768), [sym_comment] = ACTIONS(52), }, - [831] = { - [anon_sym_RBRACE] = ACTIONS(1942), + [885] = { + [anon_sym_RBRACE] = ACTIONS(2086), [sym_comment] = ACTIONS(52), }, - [832] = { - [sym__concat] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_RBRACK] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_word] = ACTIONS(1676), + [886] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [anon_sym_LT_LPAREN] = ACTIONS(1772), + [anon_sym_GT_LPAREN] = ACTIONS(1772), + [sym_word] = ACTIONS(1774), [sym_comment] = ACTIONS(52), }, - [833] = { - [anon_sym_RBRACK] = ACTIONS(1946), + [887] = { + [anon_sym_RBRACK] = ACTIONS(2090), [sym_comment] = ACTIONS(52), }, - [834] = { - [anon_sym_RBRACK] = ACTIONS(1948), + [888] = { + [anon_sym_RBRACK] = ACTIONS(2092), [sym_comment] = ACTIONS(52), }, - [835] = { - [anon_sym_RBRACE] = ACTIONS(1950), + [889] = { + [anon_sym_RBRACE] = ACTIONS(2094), [sym_comment] = ACTIONS(52), }, - [836] = { - [sym__concat] = ACTIONS(1668), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym_raw_string] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1668), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1668), - [anon_sym_BQUOTE] = ACTIONS(1668), - [anon_sym_LT_LPAREN] = ACTIONS(1668), - [anon_sym_GT_LPAREN] = ACTIONS(1668), - [sym_word] = ACTIONS(1670), + [890] = { + [sym__concat] = ACTIONS(1766), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_word] = ACTIONS(1768), [sym_comment] = ACTIONS(52), }, - [837] = { - [anon_sym_RBRACE] = ACTIONS(1952), + [891] = { + [anon_sym_RBRACE] = ACTIONS(2096), [sym_comment] = ACTIONS(52), }, - [838] = { - [sym__concat] = ACTIONS(1674), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_word] = ACTIONS(1676), + [892] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [anon_sym_LT_LPAREN] = ACTIONS(1772), + [anon_sym_GT_LPAREN] = ACTIONS(1772), + [sym_word] = ACTIONS(1774), [sym_comment] = ACTIONS(52), }, - [839] = { - [anon_sym_RBRACK] = ACTIONS(1954), + [893] = { + [anon_sym_RBRACK] = ACTIONS(2098), [sym_comment] = ACTIONS(52), }, - [840] = { - [anon_sym_RBRACK] = ACTIONS(1956), + [894] = { + [anon_sym_RBRACK] = ACTIONS(2100), [sym_comment] = ACTIONS(52), }, - [841] = { - [anon_sym_RBRACE] = ACTIONS(1958), + [895] = { + [anon_sym_RBRACE] = ACTIONS(2102), [sym_comment] = ACTIONS(52), }, - [842] = { - [sym_file_descriptor] = ACTIONS(1668), - [sym__concat] = ACTIONS(1668), - [sym_variable_name] = ACTIONS(1668), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_GT_GT] = ACTIONS(1668), - [anon_sym_AMP_GT] = ACTIONS(1940), - [anon_sym_AMP_GT_GT] = ACTIONS(1668), - [anon_sym_LT_AMP] = ACTIONS(1668), - [anon_sym_GT_AMP] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym_raw_string] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1668), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1668), - [anon_sym_BQUOTE] = ACTIONS(1668), - [anon_sym_LT_LPAREN] = ACTIONS(1668), - [anon_sym_GT_LPAREN] = ACTIONS(1668), - [sym_word] = ACTIONS(1940), + [896] = { + [sym_file_descriptor] = ACTIONS(1766), + [sym__concat] = ACTIONS(1766), + [sym_variable_name] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1766), + [anon_sym_LT_AMP] = ACTIONS(1766), + [anon_sym_GT_AMP] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_word] = ACTIONS(2084), [sym_comment] = ACTIONS(52), }, - [843] = { - [anon_sym_RBRACE] = ACTIONS(1960), + [897] = { + [anon_sym_RBRACE] = ACTIONS(2104), [sym_comment] = ACTIONS(52), }, - [844] = { - [sym_file_descriptor] = ACTIONS(1674), - [sym__concat] = ACTIONS(1674), - [sym_variable_name] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1944), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_word] = ACTIONS(1944), + [898] = { + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [sym_variable_name] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(1772), + [anon_sym_AMP_GT] = ACTIONS(2088), + [anon_sym_AMP_GT_GT] = ACTIONS(1772), + [anon_sym_LT_AMP] = ACTIONS(1772), + [anon_sym_GT_AMP] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [anon_sym_LT_LPAREN] = ACTIONS(1772), + [anon_sym_GT_LPAREN] = ACTIONS(1772), + [sym_word] = ACTIONS(2088), [sym_comment] = ACTIONS(52), }, - [845] = { - [anon_sym_RBRACK] = ACTIONS(1962), + [899] = { + [anon_sym_RBRACK] = ACTIONS(2106), [sym_comment] = ACTIONS(52), }, - [846] = { - [anon_sym_RBRACK] = ACTIONS(1964), + [900] = { + [anon_sym_RBRACK] = ACTIONS(2108), [sym_comment] = ACTIONS(52), }, - [847] = { - [anon_sym_RBRACE] = ACTIONS(1966), + [901] = { + [anon_sym_RBRACE] = ACTIONS(2110), [sym_comment] = ACTIONS(52), }, - [848] = { - [anon_sym_DQUOTE] = ACTIONS(1670), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1670), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1670), - [anon_sym_BQUOTE] = ACTIONS(1670), + [902] = { + [anon_sym_DQUOTE] = ACTIONS(1768), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1768), [sym_comment] = ACTIONS(142), }, - [849] = { - [anon_sym_RBRACE] = ACTIONS(1968), + [903] = { + [anon_sym_RBRACE] = ACTIONS(2112), [sym_comment] = ACTIONS(52), }, - [850] = { - [anon_sym_DQUOTE] = ACTIONS(1676), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1676), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1676), - [anon_sym_BQUOTE] = ACTIONS(1676), + [904] = { + [anon_sym_DQUOTE] = ACTIONS(1774), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2088), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), [sym_comment] = ACTIONS(142), }, - [851] = { - [anon_sym_RBRACE] = ACTIONS(1970), + [905] = { + [anon_sym_RBRACE] = ACTIONS(2114), [sym_comment] = ACTIONS(52), }, - [852] = { - [anon_sym_RBRACE] = ACTIONS(1972), + [906] = { + [anon_sym_RBRACE] = ACTIONS(2116), [sym_comment] = ACTIONS(52), }, - [853] = { - [sym_file_descriptor] = ACTIONS(1974), - [sym__concat] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1976), - [anon_sym_GT] = ACTIONS(1976), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1976), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1976), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym_raw_string] = ACTIONS(1976), - [anon_sym_DOLLAR] = ACTIONS(1976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [anon_sym_LT_LPAREN] = ACTIONS(1976), - [anon_sym_GT_LPAREN] = ACTIONS(1976), - [sym_word] = ACTIONS(1976), + [907] = { + [sym_file_descriptor] = ACTIONS(2118), + [sym__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(2120), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(2120), + [anon_sym_LT_AMP] = ACTIONS(2120), + [anon_sym_GT_AMP] = ACTIONS(2120), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_LT_LT_DASH] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [sym_raw_string] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), + [anon_sym_BQUOTE] = ACTIONS(2120), + [anon_sym_LT_LPAREN] = ACTIONS(2120), + [anon_sym_GT_LPAREN] = ACTIONS(2120), + [sym_word] = ACTIONS(2120), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), }, - [854] = { - [sym_file_descriptor] = ACTIONS(1978), - [sym__concat] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_GT_GT] = ACTIONS(1980), - [anon_sym_AMP_GT] = ACTIONS(1980), - [anon_sym_AMP_GT_GT] = ACTIONS(1980), - [anon_sym_LT_AMP] = ACTIONS(1980), - [anon_sym_GT_AMP] = ACTIONS(1980), - [anon_sym_LT_LT] = ACTIONS(1980), - [anon_sym_LT_LT_DASH] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), - [sym_word] = ACTIONS(1980), + [908] = { + [sym_file_descriptor] = ACTIONS(2122), + [sym__concat] = ACTIONS(2122), + [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), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2124), + [anon_sym_GT_GT] = ACTIONS(2124), + [anon_sym_AMP_GT] = ACTIONS(2124), + [anon_sym_AMP_GT_GT] = ACTIONS(2124), + [anon_sym_LT_AMP] = ACTIONS(2124), + [anon_sym_GT_AMP] = ACTIONS(2124), + [anon_sym_LT_LT] = ACTIONS(2124), + [anon_sym_LT_LT_DASH] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_raw_string] = ACTIONS(2124), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2124), + [anon_sym_LT_LPAREN] = ACTIONS(2124), + [anon_sym_GT_LPAREN] = ACTIONS(2124), + [sym_word] = ACTIONS(2124), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), }, - [855] = { - [sym_file_descriptor] = ACTIONS(1502), - [sym_variable_name] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_PIPE_AMP] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_AMP_GT] = ACTIONS(1982), - [anon_sym_AMP_GT_GT] = ACTIONS(1502), - [anon_sym_LT_AMP] = ACTIONS(1502), - [anon_sym_GT_AMP] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_raw_string] = ACTIONS(1502), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1502), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [anon_sym_LT_LPAREN] = ACTIONS(1502), - [anon_sym_GT_LPAREN] = ACTIONS(1502), - [sym_word] = ACTIONS(1504), + [909] = { + [sym_file_descriptor] = ACTIONS(1600), + [sym_variable_name] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_PIPE_AMP] = ACTIONS(1600), + [anon_sym_AMP_AMP] = ACTIONS(1600), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(1600), + [anon_sym_AMP_GT] = ACTIONS(2126), + [anon_sym_AMP_GT_GT] = ACTIONS(1600), + [anon_sym_LT_AMP] = ACTIONS(1600), + [anon_sym_GT_AMP] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [sym_raw_string] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_LT_LPAREN] = ACTIONS(1600), + [anon_sym_GT_LPAREN] = ACTIONS(1600), + [sym_word] = ACTIONS(1602), [sym_comment] = ACTIONS(52), }, - [856] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1178), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(804), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_word] = ACTIONS(806), + [910] = { + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(820), + [sym_variable_name] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1232), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_AMP_GT] = ACTIONS(1232), + [anon_sym_AMP_GT_GT] = ACTIONS(820), + [anon_sym_LT_AMP] = ACTIONS(820), + [anon_sym_GT_AMP] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(820), + [sym_raw_string] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_LT_LPAREN] = ACTIONS(820), + [anon_sym_GT_LPAREN] = ACTIONS(820), + [sym_word] = ACTIONS(822), [sym_comment] = ACTIONS(52), }, - [857] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [sym_variable_name] = ACTIONS(812), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_PIPE_AMP] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(812), - [anon_sym_PIPE_PIPE] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(812), - [anon_sym_LT_AMP] = ACTIONS(812), - [anon_sym_GT_AMP] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(812), - [sym_raw_string] = ACTIONS(812), - [anon_sym_DOLLAR] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), - [anon_sym_BQUOTE] = ACTIONS(812), - [anon_sym_LT_LPAREN] = ACTIONS(812), - [anon_sym_GT_LPAREN] = ACTIONS(812), - [sym_word] = ACTIONS(814), - [sym_comment] = ACTIONS(52), - }, - [858] = { - [sym_string] = STATE(976), - [sym_simple_expansion] = STATE(976), - [sym_expansion] = STATE(976), - [sym_command_substitution] = STATE(976), - [sym_process_substitution] = STATE(976), - [anon_sym_DQUOTE] = ACTIONS(852), - [sym_raw_string] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(858), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_word] = ACTIONS(1986), - [sym_comment] = ACTIONS(52), - }, - [859] = { - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1990), - [sym_comment] = ACTIONS(52), - }, - [860] = { - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), - [sym_comment] = ACTIONS(52), - }, - [861] = { + [911] = { [sym_file_descriptor] = ACTIONS(828), [sym__concat] = ACTIONS(828), [sym_variable_name] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1234), [anon_sym_RPAREN] = ACTIONS(828), [anon_sym_PIPE_AMP] = ACTIONS(828), [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1194), + [anon_sym_AMP_GT] = ACTIONS(1234), [anon_sym_AMP_GT_GT] = ACTIONS(828), [anon_sym_LT_AMP] = ACTIONS(828), [anon_sym_GT_AMP] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(828), [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), [anon_sym_BQUOTE] = ACTIONS(828), @@ -20298,992 +21553,1384 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(830), [sym_comment] = ACTIONS(52), }, - [862] = { - [anon_sym_AT] = ACTIONS(1996), + [912] = { + [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(868), + [sym_raw_string] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(872), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_word] = ACTIONS(2130), [sym_comment] = ACTIONS(52), }, - [863] = { - [sym_concatenation] = STATE(983), - [sym_string] = STATE(982), - [sym_simple_expansion] = STATE(982), - [sym_expansion] = STATE(982), - [sym_command_substitution] = STATE(982), - [sym_process_substitution] = STATE(982), + [913] = { + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2134), + [sym_comment] = ACTIONS(52), + }, + [914] = { + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2138), + [sym_comment] = ACTIONS(52), + }, + [915] = { + [sym_file_descriptor] = ACTIONS(844), + [sym__concat] = ACTIONS(844), + [sym_variable_name] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1248), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(1248), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_word] = ACTIONS(846), + [sym_comment] = ACTIONS(52), + }, + [916] = { + [anon_sym_AT] = ACTIONS(2140), + [sym_comment] = ACTIONS(52), + }, + [917] = { + [sym_concatenation] = STATE(1066), + [sym_string] = STATE(1065), + [sym_simple_expansion] = STATE(1065), + [sym_expansion] = STATE(1065), + [sym_command_substitution] = STATE(1065), + [sym_process_substitution] = STATE(1065), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(1998), + [sym_raw_string] = ACTIONS(2142), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2000), + [sym_word] = ACTIONS(2144), [sym_comment] = ACTIONS(52), }, - [864] = { - [sym_file_descriptor] = ACTIONS(838), - [sym__concat] = ACTIONS(838), - [sym_variable_name] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_PIPE_AMP] = ACTIONS(838), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_GT] = ACTIONS(1202), - [anon_sym_GT_GT] = ACTIONS(838), - [anon_sym_AMP_GT] = ACTIONS(1202), - [anon_sym_AMP_GT_GT] = ACTIONS(838), - [anon_sym_LT_AMP] = ACTIONS(838), - [anon_sym_GT_AMP] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(838), - [sym_raw_string] = ACTIONS(838), - [anon_sym_DOLLAR] = ACTIONS(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), - [anon_sym_BQUOTE] = ACTIONS(838), - [anon_sym_LT_LPAREN] = ACTIONS(838), - [anon_sym_GT_LPAREN] = ACTIONS(838), - [sym_word] = ACTIONS(840), + [918] = { + [sym_file_descriptor] = ACTIONS(854), + [sym__concat] = ACTIONS(854), + [sym_variable_name] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_PIPE_AMP] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_AMP_GT_GT] = ACTIONS(854), + [anon_sym_LT_AMP] = ACTIONS(854), + [anon_sym_GT_AMP] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_raw_string] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [anon_sym_LT_LPAREN] = ACTIONS(854), + [anon_sym_GT_LPAREN] = ACTIONS(854), + [sym_word] = ACTIONS(856), [sym_comment] = ACTIONS(52), }, - [865] = { - [anon_sym_AT] = ACTIONS(2002), + [919] = { + [anon_sym_AT] = ACTIONS(2146), [sym_comment] = ACTIONS(52), }, - [866] = { - [sym_concatenation] = STATE(986), - [sym_string] = STATE(985), - [sym_simple_expansion] = STATE(985), - [sym_expansion] = STATE(985), - [sym_command_substitution] = STATE(985), - [sym_process_substitution] = STATE(985), + [920] = { + [sym_concatenation] = STATE(1069), + [sym_string] = STATE(1068), + [sym_simple_expansion] = STATE(1068), + [sym_expansion] = STATE(1068), + [sym_command_substitution] = STATE(1068), + [sym_process_substitution] = STATE(1068), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2004), + [sym_raw_string] = ACTIONS(2148), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2006), + [sym_word] = ACTIONS(2150), [sym_comment] = ACTIONS(52), }, - [867] = { - [sym_file_descriptor] = ACTIONS(918), - [sym__concat] = ACTIONS(918), - [sym_variable_name] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_PIPE_AMP] = ACTIONS(918), - [anon_sym_AMP_AMP] = ACTIONS(918), - [anon_sym_PIPE_PIPE] = ACTIONS(1210), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(918), - [anon_sym_AMP_GT] = ACTIONS(1210), - [anon_sym_AMP_GT_GT] = ACTIONS(918), - [anon_sym_LT_AMP] = ACTIONS(918), - [anon_sym_GT_AMP] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym_raw_string] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(1210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(918), - [anon_sym_LT_LPAREN] = ACTIONS(918), - [anon_sym_GT_LPAREN] = ACTIONS(918), - [sym_word] = ACTIONS(920), + [921] = { + [sym_file_descriptor] = ACTIONS(946), + [sym__concat] = ACTIONS(946), + [sym_variable_name] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_PIPE_AMP] = ACTIONS(946), + [anon_sym_AMP_AMP] = ACTIONS(946), + [anon_sym_PIPE_PIPE] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1264), + [anon_sym_GT_GT] = ACTIONS(946), + [anon_sym_AMP_GT] = ACTIONS(1264), + [anon_sym_AMP_GT_GT] = ACTIONS(946), + [anon_sym_LT_AMP] = ACTIONS(946), + [anon_sym_GT_AMP] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_raw_string] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(1264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), + [anon_sym_BQUOTE] = ACTIONS(946), + [anon_sym_LT_LPAREN] = ACTIONS(946), + [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_word] = ACTIONS(948), [sym_comment] = ACTIONS(52), }, - [868] = { - [sym_file_descriptor] = ACTIONS(956), - [sym__concat] = ACTIONS(956), - [sym_variable_name] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_PIPE_AMP] = ACTIONS(956), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_GT] = ACTIONS(1212), - [anon_sym_GT_GT] = ACTIONS(956), - [anon_sym_AMP_GT] = ACTIONS(1212), - [anon_sym_AMP_GT_GT] = ACTIONS(956), - [anon_sym_LT_AMP] = ACTIONS(956), - [anon_sym_GT_AMP] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_raw_string] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(1212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_BQUOTE] = ACTIONS(956), - [anon_sym_LT_LPAREN] = ACTIONS(956), - [anon_sym_GT_LPAREN] = ACTIONS(956), - [sym_word] = ACTIONS(958), + [922] = { + [sym_file_descriptor] = ACTIONS(984), + [sym__concat] = ACTIONS(984), + [sym_variable_name] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE_AMP] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(984), + [anon_sym_LT_AMP] = ACTIONS(984), + [anon_sym_GT_AMP] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym_raw_string] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(984), + [anon_sym_LT_LPAREN] = ACTIONS(984), + [anon_sym_GT_LPAREN] = ACTIONS(984), + [sym_word] = ACTIONS(986), [sym_comment] = ACTIONS(52), }, - [869] = { - [sym_do_group] = STATE(987), - [anon_sym_do] = ACTIONS(870), + [923] = { + [sym_do_group] = STATE(1070), + [anon_sym_do] = ACTIONS(886), [sym_comment] = ACTIONS(52), }, - [870] = { - [anon_sym_PIPE] = ACTIONS(2008), - [anon_sym_RPAREN] = ACTIONS(2010), - [anon_sym_PIPE_AMP] = ACTIONS(2010), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [anon_sym_PIPE_PIPE] = ACTIONS(2010), - [anon_sym_BQUOTE] = ACTIONS(2010), + [924] = { + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_PIPE_AMP] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_PIPE_PIPE] = ACTIONS(2154), + [anon_sym_BQUOTE] = ACTIONS(2154), [sym_comment] = ACTIONS(52), }, - [871] = { - [anon_sym_PIPE] = ACTIONS(2012), - [anon_sym_RPAREN] = ACTIONS(2014), - [anon_sym_PIPE_AMP] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2014), - [anon_sym_BQUOTE] = ACTIONS(2014), + [925] = { + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), [sym_comment] = ACTIONS(52), }, - [872] = { - [anon_sym_fi] = ACTIONS(2016), + [926] = { + [anon_sym_fi] = ACTIONS(2160), [sym_comment] = ACTIONS(52), }, - [873] = { - [sym_elif_clause] = STATE(616), - [sym_else_clause] = STATE(989), - [anon_sym_fi] = ACTIONS(2016), - [anon_sym_elif] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1140), + [927] = { + [sym_elif_clause] = STATE(642), + [sym_else_clause] = STATE(1072), + [anon_sym_fi] = ACTIONS(2160), + [anon_sym_elif] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1192), [sym_comment] = ACTIONS(52), }, - [874] = { - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_RPAREN] = ACTIONS(2020), - [anon_sym_PIPE_AMP] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_BQUOTE] = ACTIONS(2020), + [928] = { + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_PIPE_AMP] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_BQUOTE] = ACTIONS(2164), [sym_comment] = ACTIONS(52), }, - [875] = { - [sym_case_item] = STATE(819), - [sym_concatenation] = STATE(620), - [sym_string] = STATE(618), - [sym_simple_expansion] = STATE(618), - [sym_expansion] = STATE(618), - [sym_command_substitution] = STATE(618), - [sym_process_substitution] = STATE(618), - [anon_sym_esac] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1146), + [929] = { + [sym_case_item] = STATE(872), + [sym_concatenation] = STATE(646), + [sym_string] = STATE(644), + [sym_simple_expansion] = STATE(644), + [sym_expansion] = STATE(644), + [sym_command_substitution] = STATE(644), + [sym_process_substitution] = STATE(644), + [anon_sym_esac] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1198), [sym_comment] = ACTIONS(52), }, - [876] = { - [sym_case_item] = STATE(619), - [sym_concatenation] = STATE(620), - [sym_string] = STATE(618), - [sym_simple_expansion] = STATE(618), - [sym_expansion] = STATE(618), - [sym_command_substitution] = STATE(618), - [sym_process_substitution] = STATE(618), - [aux_sym_case_statement_repeat1] = STATE(991), - [anon_sym_esac] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1146), + [930] = { + [sym_case_item] = STATE(645), + [sym_concatenation] = STATE(646), + [sym_string] = STATE(644), + [sym_simple_expansion] = STATE(644), + [sym_expansion] = STATE(644), + [sym_command_substitution] = STATE(644), + [sym_process_substitution] = STATE(644), + [aux_sym_case_statement_repeat1] = STATE(1074), + [anon_sym_esac] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1198), [sym_comment] = ACTIONS(52), }, - [877] = { - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), + [931] = { + [sym_file_redirect] = STATE(1075), + [sym_file_descriptor] = ACTIONS(936), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2170), + [anon_sym_PIPE_AMP] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_PIPE_PIPE] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(944), + [anon_sym_LT_AMP] = ACTIONS(944), + [anon_sym_GT_AMP] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(52), }, - [878] = { - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2030), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), + [932] = { + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2174), + [anon_sym_PIPE_AMP] = ACTIONS(2174), + [anon_sym_AMP_AMP] = ACTIONS(2174), + [anon_sym_PIPE_PIPE] = ACTIONS(2174), + [anon_sym_BQUOTE] = ACTIONS(2174), [sym_comment] = ACTIONS(52), }, - [879] = { - [anon_sym_RBRACK] = ACTIONS(2032), + [933] = { + [anon_sym_RBRACK] = ACTIONS(2176), [sym_comment] = ACTIONS(52), }, - [880] = { - [anon_sym_RBRACK] = ACTIONS(2034), + [934] = { + [anon_sym_RBRACK] = ACTIONS(2178), [sym_comment] = ACTIONS(52), }, - [881] = { - [anon_sym_RBRACE] = ACTIONS(2036), + [935] = { + [anon_sym_RBRACE] = ACTIONS(2180), [sym_comment] = ACTIONS(52), }, - [882] = { - [sym_file_descriptor] = ACTIONS(1668), - [sym__concat] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_PIPE_AMP] = ACTIONS(1668), - [anon_sym_AMP_AMP] = ACTIONS(1668), - [anon_sym_PIPE_PIPE] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_GT_GT] = ACTIONS(1668), - [anon_sym_AMP_GT] = ACTIONS(1940), - [anon_sym_AMP_GT_GT] = ACTIONS(1668), - [anon_sym_LT_AMP] = ACTIONS(1668), - [anon_sym_GT_AMP] = ACTIONS(1668), - [anon_sym_LT_LT] = ACTIONS(1940), - [anon_sym_LT_LT_DASH] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym_raw_string] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1668), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1668), - [anon_sym_BQUOTE] = ACTIONS(1668), - [anon_sym_LT_LPAREN] = ACTIONS(1668), - [anon_sym_GT_LPAREN] = ACTIONS(1668), - [sym_word] = ACTIONS(1670), + [936] = { + [sym_file_descriptor] = ACTIONS(1766), + [sym__concat] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1766), + [anon_sym_LT_AMP] = ACTIONS(1766), + [anon_sym_GT_AMP] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(2084), + [anon_sym_LT_LT_DASH] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_word] = ACTIONS(1768), [sym_comment] = ACTIONS(52), }, - [883] = { - [anon_sym_RBRACE] = ACTIONS(2038), + [937] = { + [anon_sym_RBRACE] = ACTIONS(2182), [sym_comment] = ACTIONS(52), }, - [884] = { - [sym_file_descriptor] = ACTIONS(1674), - [sym__concat] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1944), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_word] = ACTIONS(1676), + [938] = { + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_PIPE_AMP] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1772), + [anon_sym_PIPE_PIPE] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(1772), + [anon_sym_AMP_GT] = ACTIONS(2088), + [anon_sym_AMP_GT_GT] = ACTIONS(1772), + [anon_sym_LT_AMP] = ACTIONS(1772), + [anon_sym_GT_AMP] = ACTIONS(1772), + [anon_sym_LT_LT] = ACTIONS(2088), + [anon_sym_LT_LT_DASH] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [anon_sym_LT_LPAREN] = ACTIONS(1772), + [anon_sym_GT_LPAREN] = ACTIONS(1772), + [sym_word] = ACTIONS(1774), [sym_comment] = ACTIONS(52), }, - [885] = { - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_RPAREN] = ACTIONS(2042), - [anon_sym_PIPE_AMP] = ACTIONS(2042), - [anon_sym_AMP_AMP] = ACTIONS(2042), - [anon_sym_PIPE_PIPE] = ACTIONS(2042), - [anon_sym_BQUOTE] = ACTIONS(2042), + [939] = { + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2170), + [anon_sym_PIPE_AMP] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_PIPE_PIPE] = ACTIONS(2170), + [anon_sym_BQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(52), }, - [886] = { - [sym__terminated_statement] = STATE(134), - [sym_for_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_subshell] = STATE(23), - [sym_pipeline] = STATE(23), - [sym_list] = STATE(23), - [sym_bracket_command] = STATE(23), - [sym_command] = STATE(23), - [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(25), - [sym_subscript] = STATE(26), - [sym_file_redirect] = STATE(27), - [sym_concatenation] = STATE(28), - [sym_string] = STATE(14), - [sym_simple_expansion] = STATE(14), - [sym_expansion] = STATE(14), - [sym_command_substitution] = STATE(14), - [sym_process_substitution] = STATE(14), - [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_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_LT] = ACTIONS(32), - [anon_sym_GT] = ACTIONS(32), - [anon_sym_GT_GT] = ACTIONS(34), - [anon_sym_AMP_GT] = ACTIONS(32), - [anon_sym_AMP_GT_GT] = ACTIONS(34), - [anon_sym_LT_AMP] = ACTIONS(34), - [anon_sym_GT_AMP] = ACTIONS(34), - [anon_sym_DQUOTE] = ACTIONS(36), - [sym_raw_string] = ACTIONS(38), - [anon_sym_DOLLAR] = ACTIONS(40), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(42), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(44), - [anon_sym_BQUOTE] = ACTIONS(46), - [anon_sym_LT_LPAREN] = ACTIONS(48), - [anon_sym_GT_LPAREN] = ACTIONS(48), - [sym_word] = ACTIONS(50), + [940] = { + [aux_sym_concatenation_repeat1] = STATE(945), + [sym__concat] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_PIPE_AMP] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [anon_sym_BQUOTE] = ACTIONS(580), [sym_comment] = ACTIONS(52), }, - [887] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1178), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_LT_LT_DASH] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), + [941] = { + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_PIPE_AMP] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [anon_sym_BQUOTE] = ACTIONS(580), [sym_comment] = ACTIONS(52), }, - [888] = { - [sym_file_descriptor] = ACTIONS(812), - [sym__concat] = ACTIONS(812), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_PIPE_AMP] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(812), - [anon_sym_PIPE_PIPE] = ACTIONS(812), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(812), - [anon_sym_LT_AMP] = ACTIONS(812), - [anon_sym_GT_AMP] = ACTIONS(812), - [anon_sym_LT_LT] = ACTIONS(1180), - [anon_sym_LT_LT_DASH] = ACTIONS(812), - [anon_sym_BQUOTE] = ACTIONS(812), + [942] = { + [sym__concat] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(386), + [anon_sym_PIPE_AMP] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_BQUOTE] = ACTIONS(386), [sym_comment] = ACTIONS(52), }, - [889] = { - [sym_string] = STATE(997), - [sym_simple_expansion] = STATE(997), - [sym_expansion] = STATE(997), - [sym_command_substitution] = STATE(997), - [sym_process_substitution] = STATE(997), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_raw_string] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(934), - [anon_sym_BQUOTE] = ACTIONS(936), - [anon_sym_LT_LPAREN] = ACTIONS(938), - [anon_sym_GT_LPAREN] = ACTIONS(938), - [sym_word] = ACTIONS(2048), + [943] = { + [sym_simple_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [anon_sym_DQUOTE] = ACTIONS(2184), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [sym_comment] = ACTIONS(142), + }, + [944] = { + [sym_string] = STATE(1081), + [sym_simple_expansion] = STATE(1081), + [sym_expansion] = STATE(1081), + [sym_command_substitution] = STATE(1081), + [sym_process_substitution] = STATE(1081), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_raw_string] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_word] = ACTIONS(2188), [sym_comment] = ACTIONS(52), }, - [890] = { - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2052), + [945] = { + [sym__concat] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_PIPE_AMP] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(412), + [anon_sym_PIPE_PIPE] = ACTIONS(412), + [anon_sym_BQUOTE] = ACTIONS(412), [sym_comment] = ACTIONS(52), }, - [891] = { - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2056), + [946] = { + [sym__concat] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_PIPE_AMP] = ACTIONS(418), + [anon_sym_AMP_AMP] = ACTIONS(418), + [anon_sym_PIPE_PIPE] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(418), [sym_comment] = ACTIONS(52), }, - [892] = { + [947] = { + [sym__concat] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(422), + [anon_sym_PIPE_AMP] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(422), + [anon_sym_PIPE_PIPE] = ACTIONS(422), + [anon_sym_BQUOTE] = ACTIONS(422), + [sym_comment] = ACTIONS(52), + }, + [948] = { + [sym__concat] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_RPAREN] = ACTIONS(426), + [anon_sym_PIPE_AMP] = ACTIONS(426), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_PIPE_PIPE] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [sym_comment] = ACTIONS(52), + }, + [949] = { + [sym_special_variable_name] = STATE(1084), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(418), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(156), + [anon_sym_AT] = ACTIONS(156), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_COLON_QMARK] = ACTIONS(418), + [anon_sym_COLON_DASH] = ACTIONS(418), + [anon_sym_PERCENT] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(418), + [sym_comment] = ACTIONS(142), + [sym_simple_variable_name] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(162), + [anon_sym__] = ACTIONS(162), + }, + [950] = { + [anon_sym_RBRACE] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_EQ] = ACTIONS(2198), + [anon_sym_COLON] = ACTIONS(2200), + [anon_sym_COLON_QMARK] = ACTIONS(2198), + [anon_sym_COLON_DASH] = ACTIONS(2198), + [anon_sym_PERCENT] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [sym_comment] = ACTIONS(52), + }, + [951] = { + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_COLON] = ACTIONS(2208), + [anon_sym_COLON_QMARK] = ACTIONS(2206), + [anon_sym_COLON_DASH] = ACTIONS(2206), + [anon_sym_PERCENT] = ACTIONS(2206), + [anon_sym_SLASH] = ACTIONS(2206), + [sym_comment] = ACTIONS(52), + }, + [952] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [953] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [954] = { + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(2210), + [sym_comment] = ACTIONS(52), + }, + [955] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(2210), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [956] = { + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [sym_comment] = ACTIONS(52), + }, + [957] = { + [sym_file_descriptor] = ACTIONS(238), + [sym_variable_name] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_word] = ACTIONS(240), + [sym_comment] = ACTIONS(52), + }, + [958] = { + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1232), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_AMP_GT] = ACTIONS(1232), + [anon_sym_AMP_GT_GT] = ACTIONS(820), + [anon_sym_LT_AMP] = ACTIONS(820), + [anon_sym_GT_AMP] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(1232), + [anon_sym_LT_LT_DASH] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_comment] = ACTIONS(52), + }, + [959] = { [sym_file_descriptor] = ACTIONS(828), [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1234), [anon_sym_RPAREN] = ACTIONS(828), [anon_sym_PIPE_AMP] = ACTIONS(828), [anon_sym_AMP_AMP] = ACTIONS(828), [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1194), + [anon_sym_AMP_GT] = ACTIONS(1234), [anon_sym_AMP_GT_GT] = ACTIONS(828), [anon_sym_LT_AMP] = ACTIONS(828), [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1234), [anon_sym_LT_LT_DASH] = ACTIONS(828), [anon_sym_BQUOTE] = ACTIONS(828), [sym_comment] = ACTIONS(52), }, - [893] = { - [anon_sym_AT] = ACTIONS(2058), + [960] = { + [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(954), + [sym_raw_string] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(964), + [anon_sym_LT_LPAREN] = ACTIONS(966), + [anon_sym_GT_LPAREN] = ACTIONS(966), + [sym_word] = ACTIONS(2216), [sym_comment] = ACTIONS(52), }, - [894] = { - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(1003), - [sym_simple_expansion] = STATE(1003), - [sym_expansion] = STATE(1003), - [sym_command_substitution] = STATE(1003), - [sym_process_substitution] = STATE(1003), + [961] = { + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2220), + [sym_comment] = ACTIONS(52), + }, + [962] = { + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2224), + [sym_comment] = ACTIONS(52), + }, + [963] = { + [sym_file_descriptor] = ACTIONS(844), + [sym__concat] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1248), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(1248), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(1248), + [anon_sym_LT_LT_DASH] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [sym_comment] = ACTIONS(52), + }, + [964] = { + [anon_sym_AT] = ACTIONS(2226), + [sym_comment] = ACTIONS(52), + }, + [965] = { + [sym_concatenation] = STATE(1100), + [sym_string] = STATE(1099), + [sym_simple_expansion] = STATE(1099), + [sym_expansion] = STATE(1099), + [sym_command_substitution] = STATE(1099), + [sym_process_substitution] = STATE(1099), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2060), + [sym_raw_string] = ACTIONS(2228), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2062), + [sym_word] = ACTIONS(2230), [sym_comment] = ACTIONS(52), }, - [895] = { - [sym_file_descriptor] = ACTIONS(838), - [sym__concat] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_PIPE_AMP] = ACTIONS(838), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_GT] = ACTIONS(1202), - [anon_sym_GT_GT] = ACTIONS(838), - [anon_sym_AMP_GT] = ACTIONS(1202), - [anon_sym_AMP_GT_GT] = ACTIONS(838), - [anon_sym_LT_AMP] = ACTIONS(838), - [anon_sym_GT_AMP] = ACTIONS(838), - [anon_sym_LT_LT] = ACTIONS(1202), - [anon_sym_LT_LT_DASH] = ACTIONS(838), - [anon_sym_BQUOTE] = ACTIONS(838), + [966] = { + [sym_file_descriptor] = ACTIONS(854), + [sym__concat] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_PIPE_AMP] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_AMP_GT_GT] = ACTIONS(854), + [anon_sym_LT_AMP] = ACTIONS(854), + [anon_sym_GT_AMP] = ACTIONS(854), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_LT_LT_DASH] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), [sym_comment] = ACTIONS(52), }, - [896] = { - [anon_sym_AT] = ACTIONS(2064), + [967] = { + [anon_sym_AT] = ACTIONS(2232), [sym_comment] = ACTIONS(52), }, - [897] = { - [sym_concatenation] = STATE(1007), - [sym_string] = STATE(1006), - [sym_simple_expansion] = STATE(1006), - [sym_expansion] = STATE(1006), - [sym_command_substitution] = STATE(1006), - [sym_process_substitution] = STATE(1006), + [968] = { + [sym_concatenation] = STATE(1103), + [sym_string] = STATE(1102), + [sym_simple_expansion] = STATE(1102), + [sym_expansion] = STATE(1102), + [sym_command_substitution] = STATE(1102), + [sym_process_substitution] = STATE(1102), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2066), + [sym_raw_string] = ACTIONS(2234), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2068), + [sym_word] = ACTIONS(2236), [sym_comment] = ACTIONS(52), }, - [898] = { - [sym_file_descriptor] = ACTIONS(918), - [sym__concat] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_PIPE_AMP] = ACTIONS(918), - [anon_sym_AMP_AMP] = ACTIONS(918), - [anon_sym_PIPE_PIPE] = ACTIONS(918), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(918), - [anon_sym_AMP_GT] = ACTIONS(1210), - [anon_sym_AMP_GT_GT] = ACTIONS(918), - [anon_sym_LT_AMP] = ACTIONS(918), - [anon_sym_GT_AMP] = ACTIONS(918), - [anon_sym_LT_LT] = ACTIONS(1210), - [anon_sym_LT_LT_DASH] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(918), + [969] = { + [sym_file_descriptor] = ACTIONS(946), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_PIPE_AMP] = ACTIONS(946), + [anon_sym_AMP_AMP] = ACTIONS(946), + [anon_sym_PIPE_PIPE] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1264), + [anon_sym_GT_GT] = ACTIONS(946), + [anon_sym_AMP_GT] = ACTIONS(1264), + [anon_sym_AMP_GT_GT] = ACTIONS(946), + [anon_sym_LT_AMP] = ACTIONS(946), + [anon_sym_GT_AMP] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(1264), + [anon_sym_LT_LT_DASH] = ACTIONS(946), + [anon_sym_BQUOTE] = ACTIONS(946), [sym_comment] = ACTIONS(52), }, - [899] = { - [sym_file_descriptor] = ACTIONS(956), - [sym__concat] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_PIPE_AMP] = ACTIONS(956), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(956), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_GT] = ACTIONS(1212), - [anon_sym_GT_GT] = ACTIONS(956), - [anon_sym_AMP_GT] = ACTIONS(1212), - [anon_sym_AMP_GT_GT] = ACTIONS(956), - [anon_sym_LT_AMP] = ACTIONS(956), - [anon_sym_GT_AMP] = ACTIONS(956), - [anon_sym_LT_LT] = ACTIONS(1212), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_BQUOTE] = ACTIONS(956), + [970] = { + [sym_file_descriptor] = ACTIONS(984), + [sym__concat] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE_AMP] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(984), + [anon_sym_LT_AMP] = ACTIONS(984), + [anon_sym_GT_AMP] = ACTIONS(984), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(984), [sym_comment] = ACTIONS(52), }, - [900] = { - [sym_file_descriptor] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_RPAREN] = ACTIONS(1844), - [anon_sym_PIPE_AMP] = ACTIONS(1844), - [anon_sym_AMP_AMP] = ACTIONS(1844), - [anon_sym_PIPE_PIPE] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(2070), - [anon_sym_GT_GT] = ACTIONS(1844), - [anon_sym_AMP_GT] = ACTIONS(2070), - [anon_sym_AMP_GT_GT] = ACTIONS(1844), - [anon_sym_LT_AMP] = ACTIONS(1844), - [anon_sym_GT_AMP] = ACTIONS(1844), - [anon_sym_LT_LT] = ACTIONS(2070), - [anon_sym_LT_LT_DASH] = ACTIONS(1844), - [anon_sym_BQUOTE] = ACTIONS(1844), + [971] = { + [sym_file_descriptor] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_RPAREN] = ACTIONS(1986), + [anon_sym_PIPE_AMP] = ACTIONS(1986), + [anon_sym_AMP_AMP] = ACTIONS(1986), + [anon_sym_PIPE_PIPE] = ACTIONS(1986), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(1986), + [anon_sym_AMP_GT] = ACTIONS(2238), + [anon_sym_AMP_GT_GT] = ACTIONS(1986), + [anon_sym_LT_AMP] = ACTIONS(1986), + [anon_sym_GT_AMP] = ACTIONS(1986), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_LT_LT_DASH] = ACTIONS(1986), + [anon_sym_BQUOTE] = ACTIONS(1986), [sym_comment] = ACTIONS(52), }, - [901] = { - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_SEMI_SEMI] = ACTIONS(2072), - [anon_sym_PIPE_AMP] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), + [972] = { + [sym__concat] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_SEMI_SEMI] = ACTIONS(822), + [anon_sym_PIPE_AMP] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(822), + [anon_sym_PIPE_PIPE] = ACTIONS(822), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LF] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(822), }, - [902] = { - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), + [973] = { + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), }, - [903] = { - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_SEMI_SEMI] = ACTIONS(1288), - [anon_sym_PIPE_AMP] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1288), - [anon_sym_LT_AMP] = ACTIONS(1288), - [anon_sym_GT_AMP] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_LT_LT_DASH] = ACTIONS(1288), + [974] = { + [sym_string] = STATE(1104), + [sym_simple_expansion] = STATE(1104), + [sym_expansion] = STATE(1104), + [sym_command_substitution] = STATE(1104), + [sym_process_substitution] = STATE(1104), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_LT_LPAREN] = ACTIONS(1010), + [anon_sym_GT_LPAREN] = ACTIONS(1010), + [sym_word] = ACTIONS(2242), + [sym_comment] = ACTIONS(52), + }, + [975] = { + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [sym_comment] = ACTIONS(52), + }, + [976] = { + [anon_sym_RBRACE] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2250), + [sym_comment] = ACTIONS(52), + }, + [977] = { + [sym__concat] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_SEMI_SEMI] = ACTIONS(846), + [anon_sym_PIPE_AMP] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(846), + [anon_sym_PIPE_PIPE] = ACTIONS(846), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(846), }, - [904] = { - [anon_sym_AT] = ACTIONS(2074), + [978] = { + [anon_sym_AT] = ACTIONS(2252), [sym_comment] = ACTIONS(52), }, - [905] = { - [sym_file_descriptor] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [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(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(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - }, - [906] = { - [anon_sym_AT] = ACTIONS(2076), - [sym_comment] = ACTIONS(52), - }, - [907] = { - [anon_sym_RBRACK] = ACTIONS(2078), - [sym_comment] = ACTIONS(52), - }, - [908] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2080), - [sym_comment] = ACTIONS(52), - }, - [909] = { - [anon_sym_RBRACE] = ACTIONS(2080), - [sym_comment] = ACTIONS(52), - }, - [910] = { - [anon_sym_RBRACK] = ACTIONS(2082), - [sym_comment] = ACTIONS(52), - }, - [911] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2084), - [sym_comment] = ACTIONS(52), - }, - [912] = { - [anon_sym_RBRACE] = ACTIONS(2084), - [sym_comment] = ACTIONS(52), - }, - [913] = { - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2088), - [sym_comment] = ACTIONS(52), - }, - [914] = { - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2092), - [sym_comment] = ACTIONS(52), - }, - [915] = { - [sym__heredoc_middle] = ACTIONS(828), - [sym__heredoc_end] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [sym_comment] = ACTIONS(52), - }, - [916] = { - [anon_sym_AT] = ACTIONS(2094), - [sym_comment] = ACTIONS(52), - }, - [917] = { - [sym_concatenation] = STATE(1020), - [sym_string] = STATE(1019), - [sym_simple_expansion] = STATE(1019), - [sym_expansion] = STATE(1019), - [sym_command_substitution] = STATE(1019), - [sym_process_substitution] = STATE(1019), + [979] = { + [sym_concatenation] = STATE(1111), + [sym_string] = STATE(1110), + [sym_simple_expansion] = STATE(1110), + [sym_expansion] = STATE(1110), + [sym_command_substitution] = STATE(1110), + [sym_process_substitution] = STATE(1110), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2096), + [sym_raw_string] = ACTIONS(2254), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2098), + [sym_word] = ACTIONS(2256), [sym_comment] = ACTIONS(52), }, - [918] = { - [sym__heredoc_middle] = ACTIONS(838), - [sym__heredoc_end] = ACTIONS(838), - [anon_sym_DOLLAR] = ACTIONS(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [980] = { + [sym__concat] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_PIPE_AMP] = ACTIONS(856), + [anon_sym_AMP_AMP] = ACTIONS(856), + [anon_sym_PIPE_PIPE] = ACTIONS(856), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), + }, + [981] = { + [anon_sym_AT] = ACTIONS(2258), [sym_comment] = ACTIONS(52), }, - [919] = { - [anon_sym_AT] = ACTIONS(2100), - [sym_comment] = ACTIONS(52), - }, - [920] = { - [sym_concatenation] = STATE(1023), - [sym_string] = STATE(1022), - [sym_simple_expansion] = STATE(1022), - [sym_expansion] = STATE(1022), - [sym_command_substitution] = STATE(1022), - [sym_process_substitution] = STATE(1022), + [982] = { + [sym_concatenation] = STATE(1114), + [sym_string] = STATE(1113), + [sym_simple_expansion] = STATE(1113), + [sym_expansion] = STATE(1113), + [sym_command_substitution] = STATE(1113), + [sym_process_substitution] = STATE(1113), [anon_sym_DQUOTE] = ACTIONS(82), - [sym_raw_string] = ACTIONS(2102), + [sym_raw_string] = ACTIONS(2260), [anon_sym_DOLLAR] = ACTIONS(86), [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), [anon_sym_BQUOTE] = ACTIONS(92), [anon_sym_LT_LPAREN] = ACTIONS(94), [anon_sym_GT_LPAREN] = ACTIONS(94), - [sym_word] = ACTIONS(2104), + [sym_word] = ACTIONS(2262), [sym_comment] = ACTIONS(52), }, - [921] = { - [sym_file_descriptor] = ACTIONS(1502), - [sym_variable_name] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_AMP_GT] = ACTIONS(1982), - [anon_sym_AMP_GT_GT] = ACTIONS(1502), - [anon_sym_LT_AMP] = ACTIONS(1502), - [anon_sym_GT_AMP] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_raw_string] = ACTIONS(1502), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1502), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [anon_sym_LT_LPAREN] = ACTIONS(1502), - [anon_sym_GT_LPAREN] = ACTIONS(1502), - [sym_word] = ACTIONS(1982), - [sym_comment] = ACTIONS(52), - }, - [922] = { - [anon_sym_RBRACK] = ACTIONS(2106), - [sym_comment] = ACTIONS(52), - }, - [923] = { - [anon_sym_RBRACK] = ACTIONS(2108), - [sym_comment] = ACTIONS(52), - }, - [924] = { - [anon_sym_RBRACE] = ACTIONS(2110), - [sym_comment] = ACTIONS(52), - }, - [925] = { - [sym__concat] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_RBRACK] = ACTIONS(1668), - [sym_comment] = ACTIONS(52), - }, - [926] = { - [anon_sym_RBRACE] = ACTIONS(2112), - [sym_comment] = ACTIONS(52), - }, - [927] = { - [sym__concat] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_RBRACK] = ACTIONS(1674), - [sym_comment] = ACTIONS(52), - }, - [928] = { - [anon_sym_RBRACK] = ACTIONS(2114), - [sym_comment] = ACTIONS(52), - }, - [929] = { - [anon_sym_RBRACK] = ACTIONS(2116), - [sym_comment] = ACTIONS(52), - }, - [930] = { - [anon_sym_RBRACE] = ACTIONS(2118), - [sym_comment] = ACTIONS(52), - }, - [931] = { - [sym_file_descriptor] = ACTIONS(1668), - [sym__concat] = ACTIONS(1668), - [sym_variable_name] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_RPAREN] = ACTIONS(1670), - [anon_sym_SEMI_SEMI] = ACTIONS(1670), - [anon_sym_PIPE_AMP] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1670), - [anon_sym_AMP_GT] = ACTIONS(1670), - [anon_sym_AMP_GT_GT] = ACTIONS(1670), - [anon_sym_LT_AMP] = ACTIONS(1670), - [anon_sym_GT_AMP] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym_raw_string] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1670), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1670), - [anon_sym_BQUOTE] = ACTIONS(1670), - [anon_sym_LT_LPAREN] = ACTIONS(1670), - [anon_sym_GT_LPAREN] = ACTIONS(1670), - [sym_word] = ACTIONS(1670), + [983] = { + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_SEMI_SEMI] = ACTIONS(948), + [anon_sym_PIPE_AMP] = ACTIONS(948), + [anon_sym_AMP_AMP] = ACTIONS(948), + [anon_sym_PIPE_PIPE] = ACTIONS(948), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), }, - [932] = { - [anon_sym_RBRACE] = ACTIONS(2120), - [sym_comment] = ACTIONS(52), - }, - [933] = { - [sym_file_descriptor] = ACTIONS(1674), - [sym__concat] = ACTIONS(1674), - [sym_variable_name] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_RPAREN] = ACTIONS(1676), - [anon_sym_SEMI_SEMI] = ACTIONS(1676), - [anon_sym_PIPE_AMP] = ACTIONS(1676), - [anon_sym_AMP_AMP] = ACTIONS(1676), - [anon_sym_PIPE_PIPE] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_GT] = ACTIONS(1676), - [anon_sym_GT_GT] = ACTIONS(1676), - [anon_sym_AMP_GT] = ACTIONS(1676), - [anon_sym_AMP_GT_GT] = ACTIONS(1676), - [anon_sym_LT_AMP] = ACTIONS(1676), - [anon_sym_GT_AMP] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1676), - [sym_raw_string] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1676), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1676), - [anon_sym_BQUOTE] = ACTIONS(1676), - [anon_sym_LT_LPAREN] = ACTIONS(1676), - [anon_sym_GT_LPAREN] = ACTIONS(1676), - [sym_word] = ACTIONS(1676), + [984] = { + [sym__concat] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_SEMI_SEMI] = ACTIONS(986), + [anon_sym_PIPE_AMP] = ACTIONS(986), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_LF] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), }, - [934] = { - [sym__concat] = ACTIONS(1282), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), - [sym_word] = ACTIONS(1284), + [985] = { + [sym_file_descriptor] = ACTIONS(1336), + [sym__concat] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1338), + [anon_sym_GT_GT] = ACTIONS(1338), + [anon_sym_AMP_GT] = ACTIONS(1338), + [anon_sym_AMP_GT_GT] = ACTIONS(1338), + [anon_sym_LT_AMP] = ACTIONS(1338), + [anon_sym_GT_AMP] = ACTIONS(1338), + [anon_sym_LT_LT] = ACTIONS(1338), + [anon_sym_LT_LT_DASH] = ACTIONS(1338), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), }, - [935] = { - [sym__concat] = ACTIONS(1286), - [anon_sym_SEMI_SEMI] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_raw_string] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_LT_LPAREN] = ACTIONS(1288), - [anon_sym_GT_LPAREN] = ACTIONS(1288), - [sym_word] = ACTIONS(1288), + [986] = { + [sym_file_descriptor] = ACTIONS(1340), + [sym__concat] = 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_LT_LT] = ACTIONS(1342), + [anon_sym_LT_LT_DASH] = ACTIONS(1342), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), }, - [936] = { - [anon_sym_AT] = ACTIONS(2122), + [987] = { + [anon_sym_AT] = ACTIONS(2264), [sym_comment] = ACTIONS(52), }, - [937] = { - [sym__concat] = ACTIONS(1292), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), + [988] = { + [sym_file_descriptor] = ACTIONS(1346), + [sym__concat] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_SEMI_SEMI] = ACTIONS(1348), + [anon_sym_PIPE_AMP] = ACTIONS(1348), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_GT_GT] = ACTIONS(1348), + [anon_sym_AMP_GT] = ACTIONS(1348), + [anon_sym_AMP_GT_GT] = ACTIONS(1348), + [anon_sym_LT_AMP] = ACTIONS(1348), + [anon_sym_GT_AMP] = ACTIONS(1348), + [anon_sym_LT_LT] = ACTIONS(1348), + [anon_sym_LT_LT_DASH] = ACTIONS(1348), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LF] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), }, - [938] = { - [anon_sym_AT] = ACTIONS(2124), + [989] = { + [anon_sym_AT] = ACTIONS(2266), [sym_comment] = ACTIONS(52), }, - [939] = { - [anon_sym_RBRACK] = ACTIONS(2126), + [990] = { + [anon_sym_RBRACK] = ACTIONS(2268), [sym_comment] = ACTIONS(52), }, - [940] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2128), + [991] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2270), [sym_comment] = ACTIONS(52), }, - [941] = { - [anon_sym_RBRACE] = ACTIONS(2128), + [992] = { + [anon_sym_RBRACE] = ACTIONS(2270), [sym_comment] = ACTIONS(52), }, - [942] = { - [anon_sym_RBRACK] = ACTIONS(2130), + [993] = { + [anon_sym_RBRACK] = ACTIONS(2272), [sym_comment] = ACTIONS(52), }, - [943] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2132), + [994] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2274), [sym_comment] = ACTIONS(52), }, - [944] = { - [anon_sym_RBRACE] = ACTIONS(2132), + [995] = { + [anon_sym_RBRACE] = ACTIONS(2274), [sym_comment] = ACTIONS(52), }, - [945] = { - [sym__terminated_statement] = STATE(613), - [sym_for_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_case_statement] = STATE(384), - [sym_function_definition] = STATE(384), - [sym_subshell] = STATE(384), - [sym_pipeline] = STATE(384), - [sym_list] = STATE(384), - [sym_bracket_command] = STATE(384), - [sym_command] = STATE(384), + [996] = { + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2278), + [sym_comment] = ACTIONS(52), + }, + [997] = { + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2282), + [sym_comment] = ACTIONS(52), + }, + [998] = { + [sym__heredoc_middle] = ACTIONS(844), + [sym__heredoc_end] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [sym_comment] = ACTIONS(52), + }, + [999] = { + [anon_sym_AT] = ACTIONS(2284), + [sym_comment] = ACTIONS(52), + }, + [1000] = { + [sym_concatenation] = STATE(1127), + [sym_string] = STATE(1126), + [sym_simple_expansion] = STATE(1126), + [sym_expansion] = STATE(1126), + [sym_command_substitution] = STATE(1126), + [sym_process_substitution] = STATE(1126), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2288), + [sym_comment] = ACTIONS(52), + }, + [1001] = { + [sym__heredoc_middle] = ACTIONS(854), + [sym__heredoc_end] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [sym_comment] = ACTIONS(52), + }, + [1002] = { + [anon_sym_AT] = ACTIONS(2290), + [sym_comment] = ACTIONS(52), + }, + [1003] = { + [sym_concatenation] = STATE(1130), + [sym_string] = STATE(1129), + [sym_simple_expansion] = STATE(1129), + [sym_expansion] = STATE(1129), + [sym_command_substitution] = STATE(1129), + [sym_process_substitution] = STATE(1129), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2294), + [sym_comment] = ACTIONS(52), + }, + [1004] = { + [sym_file_descriptor] = ACTIONS(1600), + [sym_variable_name] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(1600), + [anon_sym_AMP_GT] = ACTIONS(2126), + [anon_sym_AMP_GT_GT] = ACTIONS(1600), + [anon_sym_LT_AMP] = ACTIONS(1600), + [anon_sym_GT_AMP] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [sym_raw_string] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(2126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_LT_LPAREN] = ACTIONS(1600), + [anon_sym_GT_LPAREN] = ACTIONS(1600), + [sym_word] = ACTIONS(2126), + [sym_comment] = ACTIONS(52), + }, + [1005] = { + [anon_sym_RBRACK] = ACTIONS(2296), + [sym_comment] = ACTIONS(52), + }, + [1006] = { + [anon_sym_RBRACK] = ACTIONS(2298), + [sym_comment] = ACTIONS(52), + }, + [1007] = { + [anon_sym_RBRACE] = ACTIONS(2300), + [sym_comment] = ACTIONS(52), + }, + [1008] = { + [sym__concat] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(1766), + [sym_comment] = ACTIONS(52), + }, + [1009] = { + [anon_sym_RBRACE] = ACTIONS(2302), + [sym_comment] = ACTIONS(52), + }, + [1010] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [sym_comment] = ACTIONS(52), + }, + [1011] = { + [anon_sym_RBRACK] = ACTIONS(2304), + [sym_comment] = ACTIONS(52), + }, + [1012] = { + [anon_sym_RBRACK] = ACTIONS(2306), + [sym_comment] = ACTIONS(52), + }, + [1013] = { + [anon_sym_RBRACE] = ACTIONS(2308), + [sym_comment] = ACTIONS(52), + }, + [1014] = { + [sym_file_descriptor] = ACTIONS(1766), + [sym__concat] = ACTIONS(1766), + [sym_variable_name] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_SEMI_SEMI] = ACTIONS(1768), + [anon_sym_PIPE_AMP] = ACTIONS(1768), + [anon_sym_AMP_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_AMP_GT] = ACTIONS(1768), + [anon_sym_AMP_GT_GT] = ACTIONS(1768), + [anon_sym_LT_AMP] = ACTIONS(1768), + [anon_sym_GT_AMP] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym_raw_string] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1768), + [anon_sym_LT_LPAREN] = ACTIONS(1768), + [anon_sym_GT_LPAREN] = ACTIONS(1768), + [sym_word] = ACTIONS(1768), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_LF] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + }, + [1015] = { + [anon_sym_RBRACE] = ACTIONS(2310), + [sym_comment] = ACTIONS(52), + }, + [1016] = { + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [sym_variable_name] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_AMP_GT] = ACTIONS(1774), + [anon_sym_AMP_GT_GT] = ACTIONS(1774), + [anon_sym_LT_AMP] = ACTIONS(1774), + [anon_sym_GT_AMP] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_word] = ACTIONS(1774), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + }, + [1017] = { + [sym__concat] = ACTIONS(1336), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_raw_string] = ACTIONS(1338), + [anon_sym_DOLLAR] = ACTIONS(1338), + [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(1338), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + }, + [1018] = { + [sym__concat] = ACTIONS(1340), + [anon_sym_SEMI_SEMI] = 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(142), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + }, + [1019] = { + [anon_sym_AT] = ACTIONS(2312), + [sym_comment] = ACTIONS(52), + }, + [1020] = { + [sym__concat] = ACTIONS(1346), + [anon_sym_SEMI_SEMI] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_raw_string] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_LT_LPAREN] = ACTIONS(1348), + [anon_sym_GT_LPAREN] = ACTIONS(1348), + [sym_word] = ACTIONS(1348), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LF] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + }, + [1021] = { + [anon_sym_AT] = ACTIONS(2314), + [sym_comment] = ACTIONS(52), + }, + [1022] = { + [anon_sym_RBRACK] = ACTIONS(2316), + [sym_comment] = ACTIONS(52), + }, + [1023] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2318), + [sym_comment] = ACTIONS(52), + }, + [1024] = { + [anon_sym_RBRACE] = ACTIONS(2318), + [sym_comment] = ACTIONS(52), + }, + [1025] = { + [anon_sym_RBRACK] = ACTIONS(2320), + [sym_comment] = ACTIONS(52), + }, + [1026] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2322), + [sym_comment] = ACTIONS(52), + }, + [1027] = { + [anon_sym_RBRACE] = ACTIONS(2322), + [sym_comment] = ACTIONS(52), + }, + [1028] = { + [sym__terminated_statement] = STATE(639), + [sym_for_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_case_statement] = STATE(394), + [sym_function_definition] = STATE(394), + [sym_subshell] = STATE(394), + [sym_pipeline] = STATE(394), + [sym_list] = STATE(394), + [sym_bracket_command] = STATE(394), + [sym_command] = STATE(394), [sym_command_name] = STATE(24), - [sym_environment_variable_assignment] = STATE(387), + [sym_environment_variable_assignment] = STATE(397), [sym_subscript] = STATE(26), [sym_file_redirect] = STATE(27), [sym_concatenation] = STATE(28), @@ -21298,9 +22945,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2134), - [anon_sym_elif] = ACTIONS(2134), - [anon_sym_else] = ACTIONS(2134), + [anon_sym_fi] = ACTIONS(2324), + [anon_sym_elif] = ACTIONS(2324), + [anon_sym_else] = ACTIONS(2324), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -21324,45 +22971,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [946] = { - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_SEMI_SEMI] = ACTIONS(2136), - [anon_sym_PIPE_AMP] = ACTIONS(2136), - [anon_sym_AMP_AMP] = ACTIONS(2136), - [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [1029] = { + [anon_sym_PIPE] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_SEMI_SEMI] = ACTIONS(2326), + [anon_sym_PIPE_AMP] = ACTIONS(2326), + [anon_sym_AMP_AMP] = ACTIONS(2326), + [anon_sym_PIPE_PIPE] = ACTIONS(2326), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LF] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_LF] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2326), }, - [947] = { - [aux_sym_concatenation_repeat1] = STATE(334), - [sym__concat] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_RPAREN] = ACTIONS(2138), + [1030] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym__concat] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_RPAREN] = ACTIONS(2328), [sym_comment] = ACTIONS(52), }, - [948] = { - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_RPAREN] = ACTIONS(2138), + [1031] = { + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_RPAREN] = ACTIONS(2328), [sym_comment] = ACTIONS(52), }, - [949] = { - [anon_sym_esac] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_raw_string] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2142), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2142), - [anon_sym_BQUOTE] = ACTIONS(2142), - [anon_sym_LT_LPAREN] = ACTIONS(2142), - [anon_sym_GT_LPAREN] = ACTIONS(2142), - [sym_word] = ACTIONS(2144), + [1032] = { + [anon_sym_esac] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym_raw_string] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2332), + [anon_sym_LT_LPAREN] = ACTIONS(2332), + [anon_sym_GT_LPAREN] = ACTIONS(2332), + [sym_word] = ACTIONS(2334), [sym_comment] = ACTIONS(52), }, - [950] = { - [sym__terminated_statement] = STATE(134), + [1033] = { + [sym__terminated_statement] = STATE(136), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), [sym_if_statement] = STATE(23), @@ -21390,7 +23037,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(2146), + [anon_sym_SEMI_SEMI] = ACTIONS(2336), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -21413,25 +23060,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [951] = { - [sym_concatenation] = STATE(1040), - [sym_string] = STATE(1039), - [sym_simple_expansion] = STATE(1039), - [sym_expansion] = STATE(1039), - [sym_command_substitution] = STATE(1039), - [sym_process_substitution] = STATE(1039), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(2148), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(2150), + [1034] = { + [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), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(2338), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(2340), [sym_comment] = ACTIONS(52), }, - [952] = { + [1035] = { [sym__terminated_statement] = STATE(22), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), @@ -21453,7 +23100,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(1041), + [aux_sym_program_repeat1] = STATE(1148), [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -21461,7 +23108,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(2146), + [anon_sym_SEMI_SEMI] = ACTIONS(2336), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -21484,878 +23131,1084 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [953] = { - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_SEMI_SEMI] = ACTIONS(2152), - [anon_sym_PIPE_AMP] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2152), - [anon_sym_PIPE_PIPE] = ACTIONS(2152), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_LF] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - }, - [954] = { - [anon_sym_RBRACE] = ACTIONS(2154), - [sym_comment] = ACTIONS(52), - }, - [955] = { - [anon_sym_RBRACE] = ACTIONS(2156), - [sym_comment] = ACTIONS(52), - }, - [956] = { - [sym__concat] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1976), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - }, - [957] = { - [sym__concat] = ACTIONS(1978), - [anon_sym_in] = ACTIONS(1980), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - }, - [958] = { - [anon_sym_RBRACE] = ACTIONS(2158), - [sym_comment] = ACTIONS(52), - }, - [959] = { - [anon_sym_RBRACE] = ACTIONS(2160), - [sym_comment] = ACTIONS(52), - }, - [960] = { - [sym__concat] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_word] = ACTIONS(1976), - [sym_comment] = ACTIONS(52), - }, - [961] = { - [sym__concat] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_RBRACK] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym_raw_string] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1978), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), - [anon_sym_BQUOTE] = ACTIONS(1978), - [anon_sym_LT_LPAREN] = ACTIONS(1978), - [anon_sym_GT_LPAREN] = ACTIONS(1978), - [sym_word] = ACTIONS(1980), - [sym_comment] = ACTIONS(52), - }, - [962] = { - [anon_sym_RBRACE] = ACTIONS(2166), - [sym_comment] = ACTIONS(52), - }, - [963] = { - [anon_sym_RBRACE] = ACTIONS(2168), - [sym_comment] = ACTIONS(52), - }, - [964] = { - [sym__concat] = ACTIONS(1974), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2162), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_word] = ACTIONS(1976), - [sym_comment] = ACTIONS(52), - }, - [965] = { - [sym__concat] = ACTIONS(1978), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym_raw_string] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1978), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), - [anon_sym_BQUOTE] = ACTIONS(1978), - [anon_sym_LT_LPAREN] = ACTIONS(1978), - [anon_sym_GT_LPAREN] = ACTIONS(1978), - [sym_word] = ACTIONS(1980), - [sym_comment] = ACTIONS(52), - }, - [966] = { - [anon_sym_RBRACE] = ACTIONS(2170), - [sym_comment] = ACTIONS(52), - }, - [967] = { - [anon_sym_RBRACE] = ACTIONS(2172), - [sym_comment] = ACTIONS(52), - }, - [968] = { - [sym_file_descriptor] = ACTIONS(1974), - [sym__concat] = ACTIONS(1974), - [sym_variable_name] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(2162), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_word] = ACTIONS(2162), - [sym_comment] = ACTIONS(52), - }, - [969] = { - [sym_file_descriptor] = ACTIONS(1978), - [sym__concat] = ACTIONS(1978), - [sym_variable_name] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(1978), - [anon_sym_AMP_GT] = ACTIONS(2164), - [anon_sym_AMP_GT_GT] = ACTIONS(1978), - [anon_sym_LT_AMP] = ACTIONS(1978), - [anon_sym_GT_AMP] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym_raw_string] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1978), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), - [anon_sym_BQUOTE] = ACTIONS(1978), - [anon_sym_LT_LPAREN] = ACTIONS(1978), - [anon_sym_GT_LPAREN] = ACTIONS(1978), - [sym_word] = ACTIONS(2164), - [sym_comment] = ACTIONS(52), - }, - [970] = { - [anon_sym_RBRACE] = ACTIONS(2174), - [sym_comment] = ACTIONS(52), - }, - [971] = { - [anon_sym_RBRACE] = ACTIONS(2176), - [sym_comment] = ACTIONS(52), - }, - [972] = { - [anon_sym_DQUOTE] = ACTIONS(1976), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(1976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [sym_comment] = ACTIONS(142), - }, - [973] = { - [anon_sym_DQUOTE] = ACTIONS(1980), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2164), - [anon_sym_DOLLAR] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [sym_comment] = ACTIONS(142), - }, - [974] = { - [sym_file_descriptor] = ACTIONS(2178), - [sym__concat] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_RPAREN] = ACTIONS(2180), - [anon_sym_SEMI_SEMI] = ACTIONS(2180), - [anon_sym_PIPE_AMP] = ACTIONS(2180), - [anon_sym_AMP_AMP] = ACTIONS(2180), - [anon_sym_PIPE_PIPE] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2180), - [anon_sym_GT] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(2180), - [anon_sym_AMP_GT] = ACTIONS(2180), - [anon_sym_AMP_GT_GT] = ACTIONS(2180), - [anon_sym_LT_AMP] = ACTIONS(2180), - [anon_sym_GT_AMP] = ACTIONS(2180), - [anon_sym_LT_LT] = ACTIONS(2180), - [anon_sym_LT_LT_DASH] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_raw_string] = ACTIONS(2180), - [anon_sym_DOLLAR] = ACTIONS(2180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), - [anon_sym_LT_LPAREN] = ACTIONS(2180), - [anon_sym_GT_LPAREN] = ACTIONS(2180), - [sym_word] = ACTIONS(2180), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_LF] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - }, - [975] = { - [sym_file_descriptor] = ACTIONS(2182), - [sym__concat] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_RPAREN] = ACTIONS(2184), - [anon_sym_SEMI_SEMI] = ACTIONS(2184), - [anon_sym_PIPE_AMP] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_AMP_GT] = ACTIONS(2184), - [anon_sym_AMP_GT_GT] = ACTIONS(2184), - [anon_sym_LT_AMP] = ACTIONS(2184), - [anon_sym_GT_AMP] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_LT_LT_DASH] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_raw_string] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2184), - [anon_sym_BQUOTE] = ACTIONS(2184), - [anon_sym_LT_LPAREN] = ACTIONS(2184), - [anon_sym_GT_LPAREN] = ACTIONS(2184), - [sym_word] = ACTIONS(2184), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - }, - [976] = { - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym_variable_name] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_PIPE_AMP] = ACTIONS(1282), - [anon_sym_AMP_AMP] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_GT_GT] = ACTIONS(1282), - [anon_sym_AMP_GT] = ACTIONS(1608), - [anon_sym_AMP_GT_GT] = ACTIONS(1282), - [anon_sym_LT_AMP] = ACTIONS(1282), - [anon_sym_GT_AMP] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_raw_string] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1282), - [anon_sym_BQUOTE] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(1282), - [anon_sym_GT_LPAREN] = ACTIONS(1282), - [sym_word] = ACTIONS(1284), - [sym_comment] = ACTIONS(52), - }, - [977] = { - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym_variable_name] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1610), - [anon_sym_GT_GT] = ACTIONS(1286), - [anon_sym_AMP_GT] = ACTIONS(1610), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1286), - [anon_sym_GT_AMP] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), - [sym_word] = ACTIONS(1288), - [sym_comment] = ACTIONS(52), - }, - [978] = { - [anon_sym_AT] = ACTIONS(2186), - [sym_comment] = ACTIONS(52), - }, - [979] = { - [sym_file_descriptor] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [sym_variable_name] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1292), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_raw_string] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym_word] = ACTIONS(1294), - [sym_comment] = ACTIONS(52), - }, - [980] = { - [anon_sym_AT] = ACTIONS(2188), - [sym_comment] = ACTIONS(52), - }, - [981] = { - [anon_sym_RBRACK] = ACTIONS(2190), - [sym_comment] = ACTIONS(52), - }, - [982] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_comment] = ACTIONS(52), - }, - [983] = { - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_comment] = ACTIONS(52), - }, - [984] = { - [anon_sym_RBRACK] = ACTIONS(2194), - [sym_comment] = ACTIONS(52), - }, - [985] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2196), - [sym_comment] = ACTIONS(52), - }, - [986] = { - [anon_sym_RBRACE] = ACTIONS(2196), - [sym_comment] = ACTIONS(52), - }, - [987] = { - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2200), - [anon_sym_PIPE_AMP] = ACTIONS(2200), - [anon_sym_AMP_AMP] = ACTIONS(2200), - [anon_sym_PIPE_PIPE] = ACTIONS(2200), - [anon_sym_BQUOTE] = ACTIONS(2200), - [sym_comment] = ACTIONS(52), - }, - [988] = { - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_PIPE_AMP] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2204), - [anon_sym_PIPE_PIPE] = ACTIONS(2204), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_comment] = ACTIONS(52), - }, - [989] = { - [anon_sym_fi] = ACTIONS(2206), - [sym_comment] = ACTIONS(52), - }, - [990] = { - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_PIPE_AMP] = ACTIONS(2210), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_BQUOTE] = ACTIONS(2210), - [sym_comment] = ACTIONS(52), - }, - [991] = { - [sym_case_item] = STATE(819), - [sym_concatenation] = STATE(620), - [sym_string] = STATE(618), - [sym_simple_expansion] = STATE(618), - [sym_expansion] = STATE(618), - [sym_command_substitution] = STATE(618), - [sym_process_substitution] = STATE(618), - [anon_sym_esac] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(1146), - [sym_comment] = ACTIONS(52), - }, - [992] = { - [anon_sym_RBRACE] = ACTIONS(2214), - [sym_comment] = ACTIONS(52), - }, - [993] = { - [anon_sym_RBRACE] = ACTIONS(2216), - [sym_comment] = ACTIONS(52), - }, - [994] = { - [sym_file_descriptor] = ACTIONS(1974), - [sym__concat] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(2162), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LT_LT_DASH] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_word] = ACTIONS(1976), - [sym_comment] = ACTIONS(52), - }, - [995] = { - [sym_file_descriptor] = ACTIONS(1978), - [sym__concat] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_PIPE_AMP] = ACTIONS(1978), - [anon_sym_AMP_AMP] = ACTIONS(1978), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(1978), - [anon_sym_AMP_GT] = ACTIONS(2164), - [anon_sym_AMP_GT_GT] = ACTIONS(1978), - [anon_sym_LT_AMP] = ACTIONS(1978), - [anon_sym_GT_AMP] = ACTIONS(1978), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LT_LT_DASH] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym_raw_string] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1978), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), - [anon_sym_BQUOTE] = ACTIONS(1978), - [anon_sym_LT_LPAREN] = ACTIONS(1978), - [anon_sym_GT_LPAREN] = ACTIONS(1978), - [sym_word] = ACTIONS(1980), - [sym_comment] = ACTIONS(52), - }, - [996] = { - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_RPAREN] = ACTIONS(2220), - [anon_sym_PIPE_AMP] = ACTIONS(2220), - [anon_sym_AMP_AMP] = ACTIONS(2220), - [anon_sym_PIPE_PIPE] = ACTIONS(2220), - [anon_sym_BQUOTE] = ACTIONS(2220), - [sym_comment] = ACTIONS(52), - }, - [997] = { - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_PIPE_AMP] = ACTIONS(1282), - [anon_sym_AMP_AMP] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_GT_GT] = ACTIONS(1282), - [anon_sym_AMP_GT] = ACTIONS(1608), - [anon_sym_AMP_GT_GT] = ACTIONS(1282), - [anon_sym_LT_AMP] = ACTIONS(1282), - [anon_sym_GT_AMP] = ACTIONS(1282), - [anon_sym_LT_LT] = ACTIONS(1608), - [anon_sym_LT_LT_DASH] = ACTIONS(1282), - [anon_sym_BQUOTE] = ACTIONS(1282), - [sym_comment] = ACTIONS(52), - }, - [998] = { - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1610), - [anon_sym_GT_GT] = ACTIONS(1286), - [anon_sym_AMP_GT] = ACTIONS(1610), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1286), - [anon_sym_GT_AMP] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1610), - [anon_sym_LT_LT_DASH] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [sym_comment] = ACTIONS(52), - }, - [999] = { - [anon_sym_AT] = ACTIONS(2222), - [sym_comment] = ACTIONS(52), - }, - [1000] = { - [sym_file_descriptor] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1292), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_LT_LT] = ACTIONS(1614), - [anon_sym_LT_LT_DASH] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(52), - }, - [1001] = { - [anon_sym_AT] = ACTIONS(2224), - [sym_comment] = ACTIONS(52), - }, - [1002] = { - [anon_sym_RBRACK] = ACTIONS(2226), - [sym_comment] = ACTIONS(52), - }, - [1003] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2228), - [sym_comment] = ACTIONS(52), - }, - [1004] = { - [anon_sym_RBRACE] = ACTIONS(2228), - [sym_comment] = ACTIONS(52), - }, - [1005] = { - [anon_sym_RBRACK] = ACTIONS(2230), - [sym_comment] = ACTIONS(52), - }, - [1006] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2232), - [sym_comment] = ACTIONS(52), - }, - [1007] = { - [anon_sym_RBRACE] = ACTIONS(2232), - [sym_comment] = ACTIONS(52), - }, - [1008] = { - [anon_sym_RBRACK] = ACTIONS(2234), - [sym_comment] = ACTIONS(52), - }, - [1009] = { - [anon_sym_RBRACK] = ACTIONS(2236), - [sym_comment] = ACTIONS(52), - }, - [1010] = { - [anon_sym_RBRACE] = ACTIONS(2238), - [sym_comment] = ACTIONS(52), - }, - [1011] = { - [sym_file_descriptor] = ACTIONS(1668), - [sym__concat] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_RPAREN] = ACTIONS(1670), - [anon_sym_SEMI_SEMI] = ACTIONS(1670), - [anon_sym_PIPE_AMP] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1670), - [anon_sym_AMP_GT] = ACTIONS(1670), - [anon_sym_AMP_GT_GT] = ACTIONS(1670), - [anon_sym_LT_AMP] = ACTIONS(1670), - [anon_sym_GT_AMP] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_LT_LT_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), - }, - [1012] = { - [anon_sym_RBRACE] = ACTIONS(2240), - [sym_comment] = ACTIONS(52), - }, - [1013] = { - [sym_file_descriptor] = ACTIONS(1674), - [sym__concat] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_RPAREN] = ACTIONS(1676), - [anon_sym_SEMI_SEMI] = ACTIONS(1676), - [anon_sym_PIPE_AMP] = ACTIONS(1676), - [anon_sym_AMP_AMP] = ACTIONS(1676), - [anon_sym_PIPE_PIPE] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_GT] = ACTIONS(1676), - [anon_sym_GT_GT] = ACTIONS(1676), - [anon_sym_AMP_GT] = ACTIONS(1676), - [anon_sym_AMP_GT_GT] = ACTIONS(1676), - [anon_sym_LT_AMP] = ACTIONS(1676), - [anon_sym_GT_AMP] = ACTIONS(1676), - [anon_sym_LT_LT] = ACTIONS(1676), - [anon_sym_LT_LT_DASH] = ACTIONS(1676), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_LF] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), - }, - [1014] = { - [sym__heredoc_middle] = ACTIONS(1286), - [sym__heredoc_end] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [sym_comment] = ACTIONS(52), - }, - [1015] = { - [anon_sym_AT] = ACTIONS(2242), - [sym_comment] = ACTIONS(52), - }, - [1016] = { - [sym__heredoc_middle] = ACTIONS(1292), - [sym__heredoc_end] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [sym_comment] = ACTIONS(52), - }, - [1017] = { - [anon_sym_AT] = ACTIONS(2244), - [sym_comment] = ACTIONS(52), - }, - [1018] = { - [anon_sym_RBRACK] = ACTIONS(2246), - [sym_comment] = ACTIONS(52), - }, - [1019] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2248), - [sym_comment] = ACTIONS(52), - }, - [1020] = { - [anon_sym_RBRACE] = ACTIONS(2248), - [sym_comment] = ACTIONS(52), - }, - [1021] = { - [anon_sym_RBRACK] = ACTIONS(2250), - [sym_comment] = ACTIONS(52), - }, - [1022] = { - [aux_sym_concatenation_repeat1] = STATE(189), - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2252), - [sym_comment] = ACTIONS(52), - }, - [1023] = { - [anon_sym_RBRACE] = ACTIONS(2252), - [sym_comment] = ACTIONS(52), - }, - [1024] = { - [anon_sym_RBRACE] = ACTIONS(2254), - [sym_comment] = ACTIONS(52), - }, - [1025] = { - [anon_sym_RBRACE] = ACTIONS(2256), - [sym_comment] = ACTIONS(52), - }, - [1026] = { - [sym__concat] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_RBRACK] = ACTIONS(1974), - [sym_comment] = ACTIONS(52), - }, - [1027] = { - [sym__concat] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_RBRACK] = ACTIONS(1978), - [sym_comment] = ACTIONS(52), - }, - [1028] = { - [anon_sym_RBRACE] = ACTIONS(2258), - [sym_comment] = ACTIONS(52), - }, - [1029] = { - [anon_sym_RBRACE] = ACTIONS(2260), - [sym_comment] = ACTIONS(52), - }, - [1030] = { - [sym_file_descriptor] = ACTIONS(1974), - [sym__concat] = ACTIONS(1974), - [sym_variable_name] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1976), - [anon_sym_GT] = ACTIONS(1976), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1976), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym_raw_string] = ACTIONS(1976), - [anon_sym_DOLLAR] = ACTIONS(1976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [anon_sym_LT_LPAREN] = ACTIONS(1976), - [anon_sym_GT_LPAREN] = ACTIONS(1976), - [sym_word] = ACTIONS(1976), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - }, - [1031] = { - [sym_file_descriptor] = ACTIONS(1978), - [sym__concat] = ACTIONS(1978), - [sym_variable_name] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_GT_GT] = ACTIONS(1980), - [anon_sym_AMP_GT] = ACTIONS(1980), - [anon_sym_AMP_GT_GT] = ACTIONS(1980), - [anon_sym_LT_AMP] = ACTIONS(1980), - [anon_sym_GT_AMP] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), - [sym_word] = ACTIONS(1980), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - }, - [1032] = { - [anon_sym_RBRACK] = ACTIONS(2262), - [sym_comment] = ACTIONS(52), - }, - [1033] = { - [anon_sym_RBRACK] = ACTIONS(2264), - [sym_comment] = ACTIONS(52), - }, - [1034] = { - [anon_sym_RBRACE] = ACTIONS(2266), - [sym_comment] = ACTIONS(52), - }, - [1035] = { - [sym__concat] = ACTIONS(1668), - [anon_sym_SEMI_SEMI] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym_raw_string] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1670), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1670), - [anon_sym_BQUOTE] = ACTIONS(1670), - [anon_sym_LT_LPAREN] = ACTIONS(1670), - [anon_sym_GT_LPAREN] = ACTIONS(1670), - [sym_word] = ACTIONS(1670), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), - }, [1036] = { - [anon_sym_RBRACE] = ACTIONS(2268), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_SEMI_SEMI] = ACTIONS(2342), + [anon_sym_PIPE_AMP] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LF] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), }, [1037] = { - [sym__concat] = ACTIONS(1674), - [anon_sym_SEMI_SEMI] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1676), - [sym_raw_string] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1676), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1676), - [anon_sym_BQUOTE] = ACTIONS(1676), - [anon_sym_LT_LPAREN] = ACTIONS(1676), - [anon_sym_GT_LPAREN] = ACTIONS(1676), - [sym_word] = ACTIONS(1676), - [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_LF] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(2344), + [sym_comment] = ACTIONS(52), }, [1038] = { - [anon_sym_esac] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2272), - [sym_raw_string] = ACTIONS(2272), - [anon_sym_DOLLAR] = ACTIONS(2270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2272), - [anon_sym_BQUOTE] = ACTIONS(2272), - [anon_sym_LT_LPAREN] = ACTIONS(2272), - [anon_sym_GT_LPAREN] = ACTIONS(2272), - [sym_word] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2346), [sym_comment] = ACTIONS(52), }, [1039] = { - [aux_sym_concatenation_repeat1] = STATE(334), - [sym__concat] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2118), + [anon_sym_in] = ACTIONS(2120), + [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), }, [1040] = { - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2122), + [anon_sym_in] = ACTIONS(2124), + [anon_sym_SEMI_SEMI] = ACTIONS(2124), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), }, [1041] = { - [sym__terminated_statement] = STATE(134), + [anon_sym_RBRACE] = ACTIONS(2348), + [sym_comment] = ACTIONS(52), + }, + [1042] = { + [anon_sym_RBRACE] = ACTIONS(2350), + [sym_comment] = ACTIONS(52), + }, + [1043] = { + [sym__concat] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_RBRACK] = ACTIONS(2352), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), + [anon_sym_BQUOTE] = ACTIONS(2118), + [anon_sym_LT_LPAREN] = ACTIONS(2118), + [anon_sym_GT_LPAREN] = ACTIONS(2118), + [sym_word] = ACTIONS(2120), + [sym_comment] = ACTIONS(52), + }, + [1044] = { + [sym__concat] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_RBRACK] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_raw_string] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [anon_sym_LT_LPAREN] = ACTIONS(2122), + [anon_sym_GT_LPAREN] = ACTIONS(2122), + [sym_word] = ACTIONS(2124), + [sym_comment] = ACTIONS(52), + }, + [1045] = { + [anon_sym_RBRACE] = ACTIONS(2356), + [sym_comment] = ACTIONS(52), + }, + [1046] = { + [anon_sym_RBRACE] = ACTIONS(2358), + [sym_comment] = ACTIONS(52), + }, + [1047] = { + [sym__concat] = ACTIONS(2118), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2352), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), + [anon_sym_BQUOTE] = ACTIONS(2118), + [anon_sym_LT_LPAREN] = ACTIONS(2118), + [anon_sym_GT_LPAREN] = ACTIONS(2118), + [sym_word] = ACTIONS(2120), + [sym_comment] = ACTIONS(52), + }, + [1048] = { + [sym__concat] = ACTIONS(2122), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_raw_string] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [anon_sym_LT_LPAREN] = ACTIONS(2122), + [anon_sym_GT_LPAREN] = ACTIONS(2122), + [sym_word] = ACTIONS(2124), + [sym_comment] = ACTIONS(52), + }, + [1049] = { + [anon_sym_RBRACE] = ACTIONS(2360), + [sym_comment] = ACTIONS(52), + }, + [1050] = { + [anon_sym_RBRACE] = ACTIONS(2362), + [sym_comment] = ACTIONS(52), + }, + [1051] = { + [sym_file_descriptor] = ACTIONS(2118), + [sym__concat] = ACTIONS(2118), + [sym_variable_name] = ACTIONS(2118), + [anon_sym_LT] = ACTIONS(2352), + [anon_sym_GT] = ACTIONS(2352), + [anon_sym_GT_GT] = ACTIONS(2118), + [anon_sym_AMP_GT] = ACTIONS(2352), + [anon_sym_AMP_GT_GT] = ACTIONS(2118), + [anon_sym_LT_AMP] = ACTIONS(2118), + [anon_sym_GT_AMP] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), + [anon_sym_BQUOTE] = ACTIONS(2118), + [anon_sym_LT_LPAREN] = ACTIONS(2118), + [anon_sym_GT_LPAREN] = ACTIONS(2118), + [sym_word] = ACTIONS(2352), + [sym_comment] = ACTIONS(52), + }, + [1052] = { + [sym_file_descriptor] = ACTIONS(2122), + [sym__concat] = ACTIONS(2122), + [sym_variable_name] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_GT] = ACTIONS(2354), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_AMP_GT] = ACTIONS(2354), + [anon_sym_AMP_GT_GT] = ACTIONS(2122), + [anon_sym_LT_AMP] = ACTIONS(2122), + [anon_sym_GT_AMP] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_raw_string] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [anon_sym_LT_LPAREN] = ACTIONS(2122), + [anon_sym_GT_LPAREN] = ACTIONS(2122), + [sym_word] = ACTIONS(2354), + [sym_comment] = ACTIONS(52), + }, + [1053] = { + [anon_sym_RBRACE] = ACTIONS(2364), + [sym_comment] = ACTIONS(52), + }, + [1054] = { + [anon_sym_RBRACE] = ACTIONS(2366), + [sym_comment] = ACTIONS(52), + }, + [1055] = { + [anon_sym_DQUOTE] = ACTIONS(2120), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2352), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), + [anon_sym_BQUOTE] = ACTIONS(2120), + [sym_comment] = ACTIONS(142), + }, + [1056] = { + [anon_sym_DQUOTE] = ACTIONS(2124), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2354), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2124), + [sym_comment] = ACTIONS(142), + }, + [1057] = { + [sym_file_descriptor] = ACTIONS(2368), + [sym__concat] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_RPAREN] = ACTIONS(2370), + [anon_sym_SEMI_SEMI] = ACTIONS(2370), + [anon_sym_PIPE_AMP] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_AMP_GT] = ACTIONS(2370), + [anon_sym_AMP_GT_GT] = ACTIONS(2370), + [anon_sym_LT_AMP] = ACTIONS(2370), + [anon_sym_GT_AMP] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_LT_LT_DASH] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_raw_string] = ACTIONS(2370), + [anon_sym_DOLLAR] = ACTIONS(2370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2370), + [anon_sym_LT_LPAREN] = ACTIONS(2370), + [anon_sym_GT_LPAREN] = ACTIONS(2370), + [sym_word] = ACTIONS(2370), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LF] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + }, + [1058] = { + [sym_file_descriptor] = ACTIONS(2372), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), + [anon_sym_PIPE_AMP] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2374), + [anon_sym_AMP_GT] = ACTIONS(2374), + [anon_sym_AMP_GT_GT] = ACTIONS(2374), + [anon_sym_LT_AMP] = ACTIONS(2374), + [anon_sym_GT_AMP] = ACTIONS(2374), + [anon_sym_LT_LT] = ACTIONS(2374), + [anon_sym_LT_LT_DASH] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_raw_string] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2374), + [anon_sym_BQUOTE] = ACTIONS(2374), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_word] = ACTIONS(2374), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + }, + [1059] = { + [sym_file_descriptor] = ACTIONS(1336), + [sym__concat] = ACTIONS(1336), + [sym_variable_name] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_PIPE_AMP] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1336), + [anon_sym_PIPE_PIPE] = ACTIONS(1706), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1706), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_AMP_GT] = ACTIONS(1706), + [anon_sym_AMP_GT_GT] = ACTIONS(1336), + [anon_sym_LT_AMP] = ACTIONS(1336), + [anon_sym_GT_AMP] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_raw_string] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_LT_LPAREN] = ACTIONS(1336), + [anon_sym_GT_LPAREN] = ACTIONS(1336), + [sym_word] = ACTIONS(1338), + [sym_comment] = ACTIONS(52), + }, + [1060] = { + [sym_file_descriptor] = ACTIONS(1340), + [sym__concat] = ACTIONS(1340), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(1708), + [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(1708), + [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), + }, + [1061] = { + [anon_sym_AT] = ACTIONS(2376), + [sym_comment] = ACTIONS(52), + }, + [1062] = { + [sym_file_descriptor] = ACTIONS(1346), + [sym__concat] = ACTIONS(1346), + [sym_variable_name] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1346), + [anon_sym_PIPE_PIPE] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1712), + [anon_sym_GT] = ACTIONS(1712), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1712), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), + [sym_word] = ACTIONS(1348), + [sym_comment] = ACTIONS(52), + }, + [1063] = { + [anon_sym_AT] = ACTIONS(2378), + [sym_comment] = ACTIONS(52), + }, + [1064] = { + [anon_sym_RBRACK] = ACTIONS(2380), + [sym_comment] = ACTIONS(52), + }, + [1065] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2382), + [sym_comment] = ACTIONS(52), + }, + [1066] = { + [anon_sym_RBRACE] = ACTIONS(2382), + [sym_comment] = ACTIONS(52), + }, + [1067] = { + [anon_sym_RBRACK] = ACTIONS(2384), + [sym_comment] = ACTIONS(52), + }, + [1068] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2386), + [sym_comment] = ACTIONS(52), + }, + [1069] = { + [anon_sym_RBRACE] = ACTIONS(2386), + [sym_comment] = ACTIONS(52), + }, + [1070] = { + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_RPAREN] = ACTIONS(2390), + [anon_sym_PIPE_AMP] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_BQUOTE] = ACTIONS(2390), + [sym_comment] = ACTIONS(52), + }, + [1071] = { + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_RPAREN] = ACTIONS(2394), + [anon_sym_PIPE_AMP] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_BQUOTE] = ACTIONS(2394), + [sym_comment] = ACTIONS(52), + }, + [1072] = { + [anon_sym_fi] = ACTIONS(2396), + [sym_comment] = ACTIONS(52), + }, + [1073] = { + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2400), + [anon_sym_PIPE_AMP] = ACTIONS(2400), + [anon_sym_AMP_AMP] = ACTIONS(2400), + [anon_sym_PIPE_PIPE] = ACTIONS(2400), + [anon_sym_BQUOTE] = ACTIONS(2400), + [sym_comment] = ACTIONS(52), + }, + [1074] = { + [sym_case_item] = STATE(872), + [sym_concatenation] = STATE(646), + [sym_string] = STATE(644), + [sym_simple_expansion] = STATE(644), + [sym_expansion] = STATE(644), + [sym_command_substitution] = STATE(644), + [sym_process_substitution] = STATE(644), + [anon_sym_esac] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(254), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(266), + [anon_sym_GT_LPAREN] = ACTIONS(266), + [sym_word] = ACTIONS(1198), + [sym_comment] = ACTIONS(52), + }, + [1075] = { + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2406), + [anon_sym_PIPE_AMP] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_BQUOTE] = ACTIONS(2406), + [sym_comment] = ACTIONS(52), + }, + [1076] = { + [anon_sym_RBRACE] = ACTIONS(2408), + [sym_comment] = ACTIONS(52), + }, + [1077] = { + [anon_sym_RBRACE] = ACTIONS(2410), + [sym_comment] = ACTIONS(52), + }, + [1078] = { + [sym_file_descriptor] = ACTIONS(2118), + [sym__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2352), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_PIPE_PIPE] = ACTIONS(2352), + [anon_sym_LT] = ACTIONS(2352), + [anon_sym_GT] = ACTIONS(2352), + [anon_sym_GT_GT] = ACTIONS(2118), + [anon_sym_AMP_GT] = ACTIONS(2352), + [anon_sym_AMP_GT_GT] = ACTIONS(2118), + [anon_sym_LT_AMP] = ACTIONS(2118), + [anon_sym_GT_AMP] = ACTIONS(2118), + [anon_sym_LT_LT] = ACTIONS(2352), + [anon_sym_LT_LT_DASH] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), + [anon_sym_BQUOTE] = ACTIONS(2118), + [anon_sym_LT_LPAREN] = ACTIONS(2118), + [anon_sym_GT_LPAREN] = ACTIONS(2118), + [sym_word] = ACTIONS(2120), + [sym_comment] = ACTIONS(52), + }, + [1079] = { + [sym_file_descriptor] = ACTIONS(2122), + [sym__concat] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2354), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2354), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_GT] = ACTIONS(2354), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_AMP_GT] = ACTIONS(2354), + [anon_sym_AMP_GT_GT] = ACTIONS(2122), + [anon_sym_LT_AMP] = ACTIONS(2122), + [anon_sym_GT_AMP] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2354), + [anon_sym_LT_LT_DASH] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_raw_string] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [anon_sym_LT_LPAREN] = ACTIONS(2122), + [anon_sym_GT_LPAREN] = ACTIONS(2122), + [sym_word] = ACTIONS(2124), + [sym_comment] = ACTIONS(52), + }, + [1080] = { + [sym__concat] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_comment] = ACTIONS(52), + }, + [1081] = { + [sym__concat] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_comment] = ACTIONS(52), + }, + [1082] = { + [sym_string] = STATE(1169), + [sym_simple_expansion] = STATE(1169), + [sym_expansion] = STATE(1169), + [sym_command_substitution] = STATE(1169), + [sym_process_substitution] = STATE(1169), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_raw_string] = ACTIONS(2412), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_word] = ACTIONS(2414), + [sym_comment] = ACTIONS(52), + }, + [1083] = { + [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [sym_comment] = ACTIONS(52), + }, + [1084] = { + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [sym_comment] = ACTIONS(52), + }, + [1085] = { + [sym__concat] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [sym_comment] = ACTIONS(52), + }, + [1086] = { + [anon_sym_AT] = ACTIONS(2424), + [sym_comment] = ACTIONS(52), + }, + [1087] = { + [sym_concatenation] = STATE(1176), + [sym_string] = STATE(1175), + [sym_simple_expansion] = STATE(1175), + [sym_expansion] = STATE(1175), + [sym_command_substitution] = STATE(1175), + [sym_process_substitution] = STATE(1175), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2426), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2428), + [sym_comment] = ACTIONS(52), + }, + [1088] = { + [sym__concat] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_PIPE_AMP] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [sym_comment] = ACTIONS(52), + }, + [1089] = { + [anon_sym_AT] = ACTIONS(2430), + [sym_comment] = ACTIONS(52), + }, + [1090] = { + [sym_concatenation] = STATE(1179), + [sym_string] = STATE(1178), + [sym_simple_expansion] = STATE(1178), + [sym_expansion] = STATE(1178), + [sym_command_substitution] = STATE(1178), + [sym_process_substitution] = STATE(1178), + [anon_sym_DQUOTE] = ACTIONS(82), + [sym_raw_string] = ACTIONS(2432), + [anon_sym_DOLLAR] = ACTIONS(86), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(88), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(90), + [anon_sym_BQUOTE] = ACTIONS(92), + [anon_sym_LT_LPAREN] = ACTIONS(94), + [anon_sym_GT_LPAREN] = ACTIONS(94), + [sym_word] = ACTIONS(2434), + [sym_comment] = ACTIONS(52), + }, + [1091] = { + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_PIPE_AMP] = ACTIONS(946), + [anon_sym_AMP_AMP] = ACTIONS(946), + [anon_sym_PIPE_PIPE] = ACTIONS(946), + [anon_sym_BQUOTE] = ACTIONS(946), + [sym_comment] = ACTIONS(52), + }, + [1092] = { + [sym__concat] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE_AMP] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(984), + [sym_comment] = ACTIONS(52), + }, + [1093] = { + [sym_file_descriptor] = ACTIONS(1336), + [sym__concat] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_PIPE_AMP] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1336), + [anon_sym_PIPE_PIPE] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1706), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_AMP_GT] = ACTIONS(1706), + [anon_sym_AMP_GT_GT] = ACTIONS(1336), + [anon_sym_LT_AMP] = ACTIONS(1336), + [anon_sym_GT_AMP] = ACTIONS(1336), + [anon_sym_LT_LT] = ACTIONS(1706), + [anon_sym_LT_LT_DASH] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [sym_comment] = ACTIONS(52), + }, + [1094] = { + [sym_file_descriptor] = ACTIONS(1340), + [sym__concat] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1340), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [sym_comment] = ACTIONS(52), + }, + [1095] = { + [anon_sym_AT] = ACTIONS(2436), + [sym_comment] = ACTIONS(52), + }, + [1096] = { + [sym_file_descriptor] = ACTIONS(1346), + [sym__concat] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1346), + [anon_sym_PIPE_PIPE] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1712), + [anon_sym_GT] = ACTIONS(1712), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1712), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_LT_LT] = ACTIONS(1712), + [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [sym_comment] = ACTIONS(52), + }, + [1097] = { + [anon_sym_AT] = ACTIONS(2438), + [sym_comment] = ACTIONS(52), + }, + [1098] = { + [anon_sym_RBRACK] = ACTIONS(2440), + [sym_comment] = ACTIONS(52), + }, + [1099] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2442), + [sym_comment] = ACTIONS(52), + }, + [1100] = { + [anon_sym_RBRACE] = ACTIONS(2442), + [sym_comment] = ACTIONS(52), + }, + [1101] = { + [anon_sym_RBRACK] = ACTIONS(2444), + [sym_comment] = ACTIONS(52), + }, + [1102] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2446), + [sym_comment] = ACTIONS(52), + }, + [1103] = { + [anon_sym_RBRACE] = ACTIONS(2446), + [sym_comment] = ACTIONS(52), + }, + [1104] = { + [sym__concat] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + }, + [1105] = { + [sym__concat] = 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), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + }, + [1106] = { + [anon_sym_AT] = ACTIONS(2448), + [sym_comment] = ACTIONS(52), + }, + [1107] = { + [sym__concat] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_SEMI_SEMI] = ACTIONS(1348), + [anon_sym_PIPE_AMP] = ACTIONS(1348), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LF] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + }, + [1108] = { + [anon_sym_AT] = ACTIONS(2450), + [sym_comment] = ACTIONS(52), + }, + [1109] = { + [anon_sym_RBRACK] = ACTIONS(2452), + [sym_comment] = ACTIONS(52), + }, + [1110] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2454), + [sym_comment] = ACTIONS(52), + }, + [1111] = { + [anon_sym_RBRACE] = ACTIONS(2454), + [sym_comment] = ACTIONS(52), + }, + [1112] = { + [anon_sym_RBRACK] = ACTIONS(2456), + [sym_comment] = ACTIONS(52), + }, + [1113] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2458), + [sym_comment] = ACTIONS(52), + }, + [1114] = { + [anon_sym_RBRACE] = ACTIONS(2458), + [sym_comment] = ACTIONS(52), + }, + [1115] = { + [anon_sym_RBRACK] = ACTIONS(2460), + [sym_comment] = ACTIONS(52), + }, + [1116] = { + [anon_sym_RBRACK] = ACTIONS(2462), + [sym_comment] = ACTIONS(52), + }, + [1117] = { + [anon_sym_RBRACE] = ACTIONS(2464), + [sym_comment] = ACTIONS(52), + }, + [1118] = { + [sym_file_descriptor] = ACTIONS(1766), + [sym__concat] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_SEMI_SEMI] = ACTIONS(1768), + [anon_sym_PIPE_AMP] = ACTIONS(1768), + [anon_sym_AMP_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_AMP_GT] = ACTIONS(1768), + [anon_sym_AMP_GT_GT] = ACTIONS(1768), + [anon_sym_LT_AMP] = ACTIONS(1768), + [anon_sym_GT_AMP] = ACTIONS(1768), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_LT_LT_DASH] = ACTIONS(1768), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_LF] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + }, + [1119] = { + [anon_sym_RBRACE] = ACTIONS(2466), + [sym_comment] = ACTIONS(52), + }, + [1120] = { + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_AMP_GT] = ACTIONS(1774), + [anon_sym_AMP_GT_GT] = ACTIONS(1774), + [anon_sym_LT_AMP] = ACTIONS(1774), + [anon_sym_GT_AMP] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1774), + [anon_sym_LT_LT_DASH] = ACTIONS(1774), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + }, + [1121] = { + [sym__heredoc_middle] = ACTIONS(1340), + [sym__heredoc_end] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), + [sym_comment] = ACTIONS(52), + }, + [1122] = { + [anon_sym_AT] = ACTIONS(2468), + [sym_comment] = ACTIONS(52), + }, + [1123] = { + [sym__heredoc_middle] = ACTIONS(1346), + [sym__heredoc_end] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [sym_comment] = ACTIONS(52), + }, + [1124] = { + [anon_sym_AT] = ACTIONS(2470), + [sym_comment] = ACTIONS(52), + }, + [1125] = { + [anon_sym_RBRACK] = ACTIONS(2472), + [sym_comment] = ACTIONS(52), + }, + [1126] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2474), + [sym_comment] = ACTIONS(52), + }, + [1127] = { + [anon_sym_RBRACE] = ACTIONS(2474), + [sym_comment] = ACTIONS(52), + }, + [1128] = { + [anon_sym_RBRACK] = ACTIONS(2476), + [sym_comment] = ACTIONS(52), + }, + [1129] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2478), + [sym_comment] = ACTIONS(52), + }, + [1130] = { + [anon_sym_RBRACE] = ACTIONS(2478), + [sym_comment] = ACTIONS(52), + }, + [1131] = { + [anon_sym_RBRACE] = ACTIONS(2480), + [sym_comment] = ACTIONS(52), + }, + [1132] = { + [anon_sym_RBRACE] = ACTIONS(2482), + [sym_comment] = ACTIONS(52), + }, + [1133] = { + [sym__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_RBRACK] = ACTIONS(2118), + [sym_comment] = ACTIONS(52), + }, + [1134] = { + [sym__concat] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_RBRACK] = ACTIONS(2122), + [sym_comment] = ACTIONS(52), + }, + [1135] = { + [anon_sym_RBRACE] = ACTIONS(2484), + [sym_comment] = ACTIONS(52), + }, + [1136] = { + [anon_sym_RBRACE] = ACTIONS(2486), + [sym_comment] = ACTIONS(52), + }, + [1137] = { + [sym_file_descriptor] = ACTIONS(2118), + [sym__concat] = ACTIONS(2118), + [sym_variable_name] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(2120), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(2120), + [anon_sym_LT_AMP] = ACTIONS(2120), + [anon_sym_GT_AMP] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [sym_raw_string] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), + [anon_sym_BQUOTE] = ACTIONS(2120), + [anon_sym_LT_LPAREN] = ACTIONS(2120), + [anon_sym_GT_LPAREN] = ACTIONS(2120), + [sym_word] = ACTIONS(2120), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + }, + [1138] = { + [sym_file_descriptor] = ACTIONS(2122), + [sym__concat] = ACTIONS(2122), + [sym_variable_name] = ACTIONS(2122), + [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), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2124), + [anon_sym_GT_GT] = ACTIONS(2124), + [anon_sym_AMP_GT] = ACTIONS(2124), + [anon_sym_AMP_GT_GT] = ACTIONS(2124), + [anon_sym_LT_AMP] = ACTIONS(2124), + [anon_sym_GT_AMP] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_raw_string] = ACTIONS(2124), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2124), + [anon_sym_LT_LPAREN] = ACTIONS(2124), + [anon_sym_GT_LPAREN] = ACTIONS(2124), + [sym_word] = ACTIONS(2124), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), + }, + [1139] = { + [anon_sym_RBRACK] = ACTIONS(2488), + [sym_comment] = ACTIONS(52), + }, + [1140] = { + [anon_sym_RBRACK] = ACTIONS(2490), + [sym_comment] = ACTIONS(52), + }, + [1141] = { + [anon_sym_RBRACE] = ACTIONS(2492), + [sym_comment] = ACTIONS(52), + }, + [1142] = { + [sym__concat] = ACTIONS(1766), + [anon_sym_SEMI_SEMI] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym_raw_string] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(1768), + [anon_sym_LT_LPAREN] = ACTIONS(1768), + [anon_sym_GT_LPAREN] = ACTIONS(1768), + [sym_word] = ACTIONS(1768), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_LF] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + }, + [1143] = { + [anon_sym_RBRACE] = ACTIONS(2494), + [sym_comment] = ACTIONS(52), + }, + [1144] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_word] = ACTIONS(1774), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + }, + [1145] = { + [anon_sym_esac] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2498), + [sym_raw_string] = ACTIONS(2498), + [anon_sym_DOLLAR] = ACTIONS(2496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2498), + [anon_sym_BQUOTE] = ACTIONS(2498), + [anon_sym_LT_LPAREN] = ACTIONS(2498), + [anon_sym_GT_LPAREN] = ACTIONS(2498), + [sym_word] = ACTIONS(2500), + [sym_comment] = ACTIONS(52), + }, + [1146] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym__concat] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(2502), + [anon_sym_RPAREN] = ACTIONS(2502), + [sym_comment] = ACTIONS(52), + }, + [1147] = { + [anon_sym_PIPE] = ACTIONS(2502), + [anon_sym_RPAREN] = ACTIONS(2502), + [sym_comment] = ACTIONS(52), + }, + [1148] = { + [sym__terminated_statement] = STATE(136), [sym_for_statement] = STATE(23), [sym_while_statement] = STATE(23), [sym_if_statement] = STATE(23), @@ -22383,7 +24236,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(2278), + [anon_sym_SEMI_SEMI] = ACTIONS(2504), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -22406,877 +24259,1129 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(50), [sym_comment] = ACTIONS(52), }, - [1042] = { - [sym__concat] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2180), - [anon_sym_SEMI_SEMI] = ACTIONS(2180), + [1149] = { + [sym__concat] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_SEMI_SEMI] = ACTIONS(2370), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_LF] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LF] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), }, - [1043] = { - [sym__concat] = ACTIONS(2182), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_SEMI_SEMI] = ACTIONS(2184), + [1150] = { + [sym__concat] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), }, - [1044] = { - [sym__concat] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_RBRACK] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LT_LPAREN] = ACTIONS(2178), - [anon_sym_GT_LPAREN] = ACTIONS(2178), - [sym_word] = ACTIONS(2180), + [1151] = { + [sym__concat] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_RBRACK] = ACTIONS(2506), + [anon_sym_DQUOTE] = ACTIONS(2368), + [sym_raw_string] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_LT_LPAREN] = ACTIONS(2368), + [anon_sym_GT_LPAREN] = ACTIONS(2368), + [sym_word] = ACTIONS(2370), [sym_comment] = ACTIONS(52), }, - [1045] = { - [sym__concat] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_RBRACK] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2182), - [sym_raw_string] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2182), - [anon_sym_BQUOTE] = ACTIONS(2182), - [anon_sym_LT_LPAREN] = ACTIONS(2182), - [anon_sym_GT_LPAREN] = ACTIONS(2182), - [sym_word] = ACTIONS(2184), + [1152] = { + [sym__concat] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_RBRACK] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym_raw_string] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2372), + [anon_sym_GT_LPAREN] = ACTIONS(2372), + [sym_word] = ACTIONS(2374), [sym_comment] = ACTIONS(52), }, - [1046] = { - [sym__concat] = ACTIONS(2178), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LT_LPAREN] = ACTIONS(2178), - [anon_sym_GT_LPAREN] = ACTIONS(2178), - [sym_word] = ACTIONS(2180), + [1153] = { + [sym__concat] = ACTIONS(2368), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2506), + [anon_sym_DQUOTE] = ACTIONS(2368), + [sym_raw_string] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_LT_LPAREN] = ACTIONS(2368), + [anon_sym_GT_LPAREN] = ACTIONS(2368), + [sym_word] = ACTIONS(2370), [sym_comment] = ACTIONS(52), }, - [1047] = { - [sym__concat] = ACTIONS(2182), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2182), - [sym_raw_string] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2182), - [anon_sym_BQUOTE] = ACTIONS(2182), - [anon_sym_LT_LPAREN] = ACTIONS(2182), - [anon_sym_GT_LPAREN] = ACTIONS(2182), - [sym_word] = ACTIONS(2184), + [1154] = { + [sym__concat] = ACTIONS(2372), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym_raw_string] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2372), + [anon_sym_GT_LPAREN] = ACTIONS(2372), + [sym_word] = ACTIONS(2374), [sym_comment] = ACTIONS(52), }, - [1048] = { - [sym_file_descriptor] = ACTIONS(2178), - [sym__concat] = ACTIONS(2178), - [sym_variable_name] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2280), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LT_LPAREN] = ACTIONS(2178), - [anon_sym_GT_LPAREN] = ACTIONS(2178), - [sym_word] = ACTIONS(2280), + [1155] = { + [sym_file_descriptor] = ACTIONS(2368), + [sym__concat] = ACTIONS(2368), + [sym_variable_name] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_AMP_GT] = ACTIONS(2506), + [anon_sym_AMP_GT_GT] = ACTIONS(2368), + [anon_sym_LT_AMP] = ACTIONS(2368), + [anon_sym_GT_AMP] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [sym_raw_string] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_LT_LPAREN] = ACTIONS(2368), + [anon_sym_GT_LPAREN] = ACTIONS(2368), + [sym_word] = ACTIONS(2506), [sym_comment] = ACTIONS(52), }, - [1049] = { - [sym_file_descriptor] = ACTIONS(2182), - [sym__concat] = ACTIONS(2182), - [sym_variable_name] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2182), - [anon_sym_AMP_GT] = ACTIONS(2282), - [anon_sym_AMP_GT_GT] = ACTIONS(2182), - [anon_sym_LT_AMP] = ACTIONS(2182), - [anon_sym_GT_AMP] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [sym_raw_string] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2182), - [anon_sym_BQUOTE] = ACTIONS(2182), - [anon_sym_LT_LPAREN] = ACTIONS(2182), - [anon_sym_GT_LPAREN] = ACTIONS(2182), - [sym_word] = ACTIONS(2282), + [1156] = { + [sym_file_descriptor] = ACTIONS(2372), + [sym__concat] = ACTIONS(2372), + [sym_variable_name] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_GT] = ACTIONS(2508), + [anon_sym_GT_GT] = ACTIONS(2372), + [anon_sym_AMP_GT] = ACTIONS(2508), + [anon_sym_AMP_GT_GT] = ACTIONS(2372), + [anon_sym_LT_AMP] = ACTIONS(2372), + [anon_sym_GT_AMP] = ACTIONS(2372), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym_raw_string] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2372), + [anon_sym_GT_LPAREN] = ACTIONS(2372), + [sym_word] = ACTIONS(2508), [sym_comment] = ACTIONS(52), }, - [1050] = { - [anon_sym_DQUOTE] = ACTIONS(2180), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2280), - [anon_sym_DOLLAR] = ACTIONS(2180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), + [1157] = { + [anon_sym_DQUOTE] = ACTIONS(2370), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2370), [sym_comment] = ACTIONS(142), }, - [1051] = { - [anon_sym_DQUOTE] = ACTIONS(2184), - [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2184), - [anon_sym_BQUOTE] = ACTIONS(2184), + [1158] = { + [anon_sym_DQUOTE] = ACTIONS(2374), + [aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2508), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2374), + [anon_sym_BQUOTE] = ACTIONS(2374), [sym_comment] = ACTIONS(142), }, - [1052] = { - [anon_sym_RBRACK] = ACTIONS(2284), + [1159] = { + [anon_sym_RBRACK] = ACTIONS(2510), [sym_comment] = ACTIONS(52), }, - [1053] = { - [anon_sym_RBRACK] = ACTIONS(2286), + [1160] = { + [anon_sym_RBRACK] = ACTIONS(2512), [sym_comment] = ACTIONS(52), }, - [1054] = { - [anon_sym_RBRACE] = ACTIONS(2288), + [1161] = { + [anon_sym_RBRACE] = ACTIONS(2514), [sym_comment] = ACTIONS(52), }, - [1055] = { - [sym_file_descriptor] = ACTIONS(1668), - [sym__concat] = ACTIONS(1668), - [sym_variable_name] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_PIPE_AMP] = ACTIONS(1668), - [anon_sym_AMP_AMP] = ACTIONS(1668), - [anon_sym_PIPE_PIPE] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_GT_GT] = ACTIONS(1668), - [anon_sym_AMP_GT] = ACTIONS(1940), - [anon_sym_AMP_GT_GT] = ACTIONS(1668), - [anon_sym_LT_AMP] = ACTIONS(1668), - [anon_sym_GT_AMP] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym_raw_string] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1668), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1668), - [anon_sym_BQUOTE] = ACTIONS(1668), - [anon_sym_LT_LPAREN] = ACTIONS(1668), - [anon_sym_GT_LPAREN] = ACTIONS(1668), - [sym_word] = ACTIONS(1670), + [1162] = { + [sym_file_descriptor] = ACTIONS(1766), + [sym__concat] = ACTIONS(1766), + [sym_variable_name] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1766), + [anon_sym_LT_AMP] = ACTIONS(1766), + [anon_sym_GT_AMP] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LT_LPAREN] = ACTIONS(1766), + [anon_sym_GT_LPAREN] = ACTIONS(1766), + [sym_word] = ACTIONS(1768), [sym_comment] = ACTIONS(52), }, - [1056] = { - [anon_sym_RBRACE] = ACTIONS(2290), + [1163] = { + [anon_sym_RBRACE] = ACTIONS(2516), [sym_comment] = ACTIONS(52), }, - [1057] = { - [sym_file_descriptor] = ACTIONS(1674), - [sym__concat] = ACTIONS(1674), - [sym_variable_name] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1944), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [sym_raw_string] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), - [anon_sym_LT_LPAREN] = ACTIONS(1674), - [anon_sym_GT_LPAREN] = ACTIONS(1674), - [sym_word] = ACTIONS(1676), + [1164] = { + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [sym_variable_name] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_PIPE_AMP] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1772), + [anon_sym_PIPE_PIPE] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(1772), + [anon_sym_AMP_GT] = ACTIONS(2088), + [anon_sym_AMP_GT_GT] = ACTIONS(1772), + [anon_sym_LT_AMP] = ACTIONS(1772), + [anon_sym_GT_AMP] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [anon_sym_LT_LPAREN] = ACTIONS(1772), + [anon_sym_GT_LPAREN] = ACTIONS(1772), + [sym_word] = ACTIONS(1774), [sym_comment] = ACTIONS(52), }, - [1058] = { - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_PIPE_AMP] = ACTIONS(2294), - [anon_sym_AMP_AMP] = ACTIONS(2294), - [anon_sym_PIPE_PIPE] = ACTIONS(2294), - [anon_sym_BQUOTE] = ACTIONS(2294), + [1165] = { + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2520), + [anon_sym_PIPE_AMP] = ACTIONS(2520), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_BQUOTE] = ACTIONS(2520), [sym_comment] = ACTIONS(52), }, - [1059] = { - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_RPAREN] = ACTIONS(2298), - [anon_sym_PIPE_AMP] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_BQUOTE] = ACTIONS(2298), + [1166] = { + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_RPAREN] = ACTIONS(2524), + [anon_sym_PIPE_AMP] = ACTIONS(2524), + [anon_sym_AMP_AMP] = ACTIONS(2524), + [anon_sym_PIPE_PIPE] = ACTIONS(2524), + [anon_sym_BQUOTE] = ACTIONS(2524), [sym_comment] = ACTIONS(52), }, - [1060] = { - [sym_file_descriptor] = ACTIONS(2178), - [sym__concat] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2280), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_LT_LT_DASH] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LT_LPAREN] = ACTIONS(2178), - [anon_sym_GT_LPAREN] = ACTIONS(2178), - [sym_word] = ACTIONS(2180), + [1167] = { + [sym_file_descriptor] = ACTIONS(2368), + [sym__concat] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2368), + [anon_sym_PIPE_AMP] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_AMP_GT] = ACTIONS(2506), + [anon_sym_AMP_GT_GT] = ACTIONS(2368), + [anon_sym_LT_AMP] = ACTIONS(2368), + [anon_sym_GT_AMP] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_LT_LT_DASH] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [sym_raw_string] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_LT_LPAREN] = ACTIONS(2368), + [anon_sym_GT_LPAREN] = ACTIONS(2368), + [sym_word] = ACTIONS(2370), [sym_comment] = ACTIONS(52), }, - [1061] = { - [sym_file_descriptor] = ACTIONS(2182), - [sym__concat] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2182), - [anon_sym_PIPE_AMP] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2182), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2182), - [anon_sym_AMP_GT] = ACTIONS(2282), - [anon_sym_AMP_GT_GT] = ACTIONS(2182), - [anon_sym_LT_AMP] = ACTIONS(2182), - [anon_sym_GT_AMP] = ACTIONS(2182), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_LT_LT_DASH] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [sym_raw_string] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2182), - [anon_sym_BQUOTE] = ACTIONS(2182), - [anon_sym_LT_LPAREN] = ACTIONS(2182), - [anon_sym_GT_LPAREN] = ACTIONS(2182), - [sym_word] = ACTIONS(2184), + [1168] = { + [sym_file_descriptor] = ACTIONS(2372), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_RPAREN] = ACTIONS(2372), + [anon_sym_PIPE_AMP] = ACTIONS(2372), + [anon_sym_AMP_AMP] = ACTIONS(2372), + [anon_sym_PIPE_PIPE] = ACTIONS(2508), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_GT] = ACTIONS(2508), + [anon_sym_GT_GT] = ACTIONS(2372), + [anon_sym_AMP_GT] = ACTIONS(2508), + [anon_sym_AMP_GT_GT] = ACTIONS(2372), + [anon_sym_LT_AMP] = ACTIONS(2372), + [anon_sym_GT_AMP] = ACTIONS(2372), + [anon_sym_LT_LT] = ACTIONS(2508), + [anon_sym_LT_LT_DASH] = ACTIONS(2372), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym_raw_string] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2372), + [anon_sym_GT_LPAREN] = ACTIONS(2372), + [sym_word] = ACTIONS(2374), [sym_comment] = ACTIONS(52), }, - [1062] = { - [anon_sym_RBRACK] = ACTIONS(2300), + [1169] = { + [sym__concat] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_PIPE_AMP] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1336), + [anon_sym_PIPE_PIPE] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), [sym_comment] = ACTIONS(52), }, - [1063] = { - [anon_sym_RBRACK] = ACTIONS(2302), + [1170] = { + [sym__concat] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), [sym_comment] = ACTIONS(52), }, - [1064] = { - [anon_sym_RBRACE] = ACTIONS(2304), + [1171] = { + [anon_sym_AT] = ACTIONS(2526), [sym_comment] = ACTIONS(52), }, - [1065] = { - [sym_file_descriptor] = ACTIONS(1668), - [sym__concat] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_PIPE_AMP] = ACTIONS(1668), - [anon_sym_AMP_AMP] = ACTIONS(1668), - [anon_sym_PIPE_PIPE] = ACTIONS(1668), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_GT_GT] = ACTIONS(1668), - [anon_sym_AMP_GT] = ACTIONS(1940), - [anon_sym_AMP_GT_GT] = ACTIONS(1668), - [anon_sym_LT_AMP] = ACTIONS(1668), - [anon_sym_GT_AMP] = ACTIONS(1668), - [anon_sym_LT_LT] = ACTIONS(1940), - [anon_sym_LT_LT_DASH] = ACTIONS(1668), - [anon_sym_BQUOTE] = ACTIONS(1668), + [1172] = { + [sym__concat] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1346), + [anon_sym_PIPE_PIPE] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), [sym_comment] = ACTIONS(52), }, - [1066] = { - [anon_sym_RBRACE] = ACTIONS(2306), + [1173] = { + [anon_sym_AT] = ACTIONS(2528), [sym_comment] = ACTIONS(52), }, - [1067] = { - [sym_file_descriptor] = ACTIONS(1674), - [sym__concat] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_PIPE_AMP] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_AMP_GT] = ACTIONS(1944), - [anon_sym_AMP_GT_GT] = ACTIONS(1674), - [anon_sym_LT_AMP] = ACTIONS(1674), - [anon_sym_GT_AMP] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_LT_LT_DASH] = ACTIONS(1674), - [anon_sym_BQUOTE] = ACTIONS(1674), + [1174] = { + [anon_sym_RBRACK] = ACTIONS(2530), [sym_comment] = ACTIONS(52), }, - [1068] = { - [anon_sym_RBRACE] = ACTIONS(2308), + [1175] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2532), [sym_comment] = ACTIONS(52), }, - [1069] = { - [anon_sym_RBRACE] = ACTIONS(2310), + [1176] = { + [anon_sym_RBRACE] = ACTIONS(2532), [sym_comment] = ACTIONS(52), }, - [1070] = { - [sym_file_descriptor] = ACTIONS(1974), - [sym__concat] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1976), - [anon_sym_GT] = ACTIONS(1976), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1976), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1976), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), + [1177] = { + [anon_sym_RBRACK] = ACTIONS(2534), + [sym_comment] = ACTIONS(52), + }, + [1178] = { + [aux_sym_concatenation_repeat1] = STATE(192), + [sym__concat] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(2536), + [sym_comment] = ACTIONS(52), + }, + [1179] = { + [anon_sym_RBRACE] = ACTIONS(2536), + [sym_comment] = ACTIONS(52), + }, + [1180] = { + [anon_sym_RBRACK] = ACTIONS(2538), + [sym_comment] = ACTIONS(52), + }, + [1181] = { + [anon_sym_RBRACK] = ACTIONS(2540), + [sym_comment] = ACTIONS(52), + }, + [1182] = { + [anon_sym_RBRACE] = ACTIONS(2542), + [sym_comment] = ACTIONS(52), + }, + [1183] = { + [sym_file_descriptor] = ACTIONS(1766), + [sym__concat] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1766), + [anon_sym_LT_AMP] = ACTIONS(1766), + [anon_sym_GT_AMP] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(2084), + [anon_sym_LT_LT_DASH] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(52), + }, + [1184] = { + [anon_sym_RBRACE] = ACTIONS(2544), + [sym_comment] = ACTIONS(52), + }, + [1185] = { + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_PIPE_AMP] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1772), + [anon_sym_PIPE_PIPE] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(1772), + [anon_sym_AMP_GT] = ACTIONS(2088), + [anon_sym_AMP_GT_GT] = ACTIONS(1772), + [anon_sym_LT_AMP] = ACTIONS(1772), + [anon_sym_GT_AMP] = ACTIONS(1772), + [anon_sym_LT_LT] = ACTIONS(2088), + [anon_sym_LT_LT_DASH] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [sym_comment] = ACTIONS(52), + }, + [1186] = { + [anon_sym_RBRACK] = ACTIONS(2546), + [sym_comment] = ACTIONS(52), + }, + [1187] = { + [anon_sym_RBRACK] = ACTIONS(2548), + [sym_comment] = ACTIONS(52), + }, + [1188] = { + [anon_sym_RBRACE] = ACTIONS(2550), + [sym_comment] = ACTIONS(52), + }, + [1189] = { + [sym__concat] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_SEMI_SEMI] = ACTIONS(1768), + [anon_sym_PIPE_AMP] = ACTIONS(1768), + [anon_sym_AMP_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1768), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_LF] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), }, - [1071] = { - [sym_file_descriptor] = ACTIONS(1978), - [sym__concat] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_GT_GT] = ACTIONS(1980), - [anon_sym_AMP_GT] = ACTIONS(1980), - [anon_sym_AMP_GT_GT] = ACTIONS(1980), - [anon_sym_LT_AMP] = ACTIONS(1980), - [anon_sym_GT_AMP] = ACTIONS(1980), - [anon_sym_LT_LT] = ACTIONS(1980), - [anon_sym_LT_LT_DASH] = ACTIONS(1980), + [1190] = { + [anon_sym_RBRACE] = ACTIONS(2552), + [sym_comment] = ACTIONS(52), + }, + [1191] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), }, - [1072] = { - [anon_sym_RBRACK] = ACTIONS(2312), + [1192] = { + [anon_sym_RBRACE] = ACTIONS(2554), [sym_comment] = ACTIONS(52), }, - [1073] = { - [anon_sym_RBRACK] = ACTIONS(2314), + [1193] = { + [anon_sym_RBRACE] = ACTIONS(2556), [sym_comment] = ACTIONS(52), }, - [1074] = { - [anon_sym_RBRACE] = ACTIONS(2316), - [sym_comment] = ACTIONS(52), - }, - [1075] = { - [sym__heredoc_middle] = ACTIONS(1668), - [sym__heredoc_end] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1668), - [sym_comment] = ACTIONS(52), - }, - [1076] = { - [anon_sym_RBRACE] = ACTIONS(2318), - [sym_comment] = ACTIONS(52), - }, - [1077] = { - [sym__heredoc_middle] = ACTIONS(1674), - [sym__heredoc_end] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1674), - [sym_comment] = ACTIONS(52), - }, - [1078] = { - [sym__concat] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2178), - [anon_sym_RBRACK] = ACTIONS(2178), - [sym_comment] = ACTIONS(52), - }, - [1079] = { - [sym__concat] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_RPAREN] = ACTIONS(2182), - [anon_sym_RBRACK] = ACTIONS(2182), - [sym_comment] = ACTIONS(52), - }, - [1080] = { - [sym_file_descriptor] = ACTIONS(2178), - [sym__concat] = ACTIONS(2178), - [sym_variable_name] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_RPAREN] = ACTIONS(2180), - [anon_sym_SEMI_SEMI] = ACTIONS(2180), - [anon_sym_PIPE_AMP] = ACTIONS(2180), - [anon_sym_AMP_AMP] = ACTIONS(2180), - [anon_sym_PIPE_PIPE] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2180), - [anon_sym_GT] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(2180), - [anon_sym_AMP_GT] = ACTIONS(2180), - [anon_sym_AMP_GT_GT] = ACTIONS(2180), - [anon_sym_LT_AMP] = ACTIONS(2180), - [anon_sym_GT_AMP] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_raw_string] = ACTIONS(2180), - [anon_sym_DOLLAR] = ACTIONS(2180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), - [anon_sym_LT_LPAREN] = ACTIONS(2180), - [anon_sym_GT_LPAREN] = ACTIONS(2180), - [sym_word] = ACTIONS(2180), + [1194] = { + [sym_file_descriptor] = ACTIONS(2118), + [sym__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(2120), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(2120), + [anon_sym_LT_AMP] = ACTIONS(2120), + [anon_sym_GT_AMP] = ACTIONS(2120), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_LT_LT_DASH] = ACTIONS(2120), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_LF] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), }, - [1081] = { - [sym_file_descriptor] = ACTIONS(2182), - [sym__concat] = ACTIONS(2182), - [sym_variable_name] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_RPAREN] = ACTIONS(2184), - [anon_sym_SEMI_SEMI] = ACTIONS(2184), - [anon_sym_PIPE_AMP] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_AMP_GT] = ACTIONS(2184), - [anon_sym_AMP_GT_GT] = ACTIONS(2184), - [anon_sym_LT_AMP] = ACTIONS(2184), - [anon_sym_GT_AMP] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_raw_string] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2184), - [anon_sym_BQUOTE] = ACTIONS(2184), - [anon_sym_LT_LPAREN] = ACTIONS(2184), - [anon_sym_GT_LPAREN] = ACTIONS(2184), - [sym_word] = ACTIONS(2184), + [1195] = { + [sym_file_descriptor] = ACTIONS(2122), + [sym__concat] = ACTIONS(2122), + [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), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2124), + [anon_sym_GT_GT] = ACTIONS(2124), + [anon_sym_AMP_GT] = ACTIONS(2124), + [anon_sym_AMP_GT_GT] = ACTIONS(2124), + [anon_sym_LT_AMP] = ACTIONS(2124), + [anon_sym_GT_AMP] = ACTIONS(2124), + [anon_sym_LT_LT] = ACTIONS(2124), + [anon_sym_LT_LT_DASH] = ACTIONS(2124), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), }, - [1082] = { - [anon_sym_RBRACE] = ACTIONS(2320), + [1196] = { + [anon_sym_RBRACK] = ACTIONS(2558), [sym_comment] = ACTIONS(52), }, - [1083] = { - [anon_sym_RBRACE] = ACTIONS(2322), + [1197] = { + [anon_sym_RBRACK] = ACTIONS(2560), [sym_comment] = ACTIONS(52), }, - [1084] = { - [sym__concat] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym_raw_string] = ACTIONS(1976), - [anon_sym_DOLLAR] = ACTIONS(1976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [anon_sym_LT_LPAREN] = ACTIONS(1976), - [anon_sym_GT_LPAREN] = ACTIONS(1976), - [sym_word] = ACTIONS(1976), + [1198] = { + [anon_sym_RBRACE] = ACTIONS(2562), + [sym_comment] = ACTIONS(52), + }, + [1199] = { + [sym__heredoc_middle] = ACTIONS(1766), + [sym__heredoc_end] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1766), + [sym_comment] = ACTIONS(52), + }, + [1200] = { + [anon_sym_RBRACE] = ACTIONS(2564), + [sym_comment] = ACTIONS(52), + }, + [1201] = { + [sym__heredoc_middle] = ACTIONS(1772), + [sym__heredoc_end] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [sym_comment] = ACTIONS(52), + }, + [1202] = { + [sym__concat] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_RPAREN] = ACTIONS(2368), + [anon_sym_RBRACK] = ACTIONS(2368), + [sym_comment] = ACTIONS(52), + }, + [1203] = { + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2372), + [anon_sym_RPAREN] = ACTIONS(2372), + [anon_sym_RBRACK] = ACTIONS(2372), + [sym_comment] = ACTIONS(52), + }, + [1204] = { + [sym_file_descriptor] = ACTIONS(2368), + [sym__concat] = ACTIONS(2368), + [sym_variable_name] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_RPAREN] = ACTIONS(2370), + [anon_sym_SEMI_SEMI] = ACTIONS(2370), + [anon_sym_PIPE_AMP] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_AMP_GT] = ACTIONS(2370), + [anon_sym_AMP_GT_GT] = ACTIONS(2370), + [anon_sym_LT_AMP] = ACTIONS(2370), + [anon_sym_GT_AMP] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_raw_string] = ACTIONS(2370), + [anon_sym_DOLLAR] = ACTIONS(2370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2370), + [anon_sym_LT_LPAREN] = ACTIONS(2370), + [anon_sym_GT_LPAREN] = ACTIONS(2370), + [sym_word] = ACTIONS(2370), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LF] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), }, - [1085] = { - [sym__concat] = ACTIONS(1978), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), - [sym_word] = ACTIONS(1980), + [1205] = { + [sym_file_descriptor] = ACTIONS(2372), + [sym__concat] = ACTIONS(2372), + [sym_variable_name] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), + [anon_sym_PIPE_AMP] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2374), + [anon_sym_AMP_GT] = ACTIONS(2374), + [anon_sym_AMP_GT_GT] = ACTIONS(2374), + [anon_sym_LT_AMP] = ACTIONS(2374), + [anon_sym_GT_AMP] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_raw_string] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2374), + [anon_sym_BQUOTE] = ACTIONS(2374), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_word] = ACTIONS(2374), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), }, - [1086] = { - [anon_sym_esac] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(2326), - [sym_raw_string] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2326), - [anon_sym_BQUOTE] = ACTIONS(2326), - [anon_sym_LT_LPAREN] = ACTIONS(2326), - [anon_sym_GT_LPAREN] = ACTIONS(2326), - [sym_word] = ACTIONS(2328), + [1206] = { + [anon_sym_RBRACE] = ACTIONS(2566), [sym_comment] = ACTIONS(52), }, - [1087] = { - [anon_sym_RBRACE] = ACTIONS(2330), + [1207] = { + [anon_sym_RBRACE] = ACTIONS(2568), [sym_comment] = ACTIONS(52), }, - [1088] = { - [anon_sym_RBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(52), - }, - [1089] = { - [sym_file_descriptor] = ACTIONS(1974), - [sym__concat] = ACTIONS(1974), - [sym_variable_name] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(2162), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_word] = ACTIONS(1976), - [sym_comment] = ACTIONS(52), - }, - [1090] = { - [sym_file_descriptor] = ACTIONS(1978), - [sym__concat] = ACTIONS(1978), - [sym_variable_name] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_PIPE_AMP] = ACTIONS(1978), - [anon_sym_AMP_AMP] = ACTIONS(1978), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(1978), - [anon_sym_AMP_GT] = ACTIONS(2164), - [anon_sym_AMP_GT_GT] = ACTIONS(1978), - [anon_sym_LT_AMP] = ACTIONS(1978), - [anon_sym_GT_AMP] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym_raw_string] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1978), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), - [anon_sym_BQUOTE] = ACTIONS(1978), - [anon_sym_LT_LPAREN] = ACTIONS(1978), - [anon_sym_GT_LPAREN] = ACTIONS(1978), - [sym_word] = ACTIONS(1980), - [sym_comment] = ACTIONS(52), - }, - [1091] = { - [anon_sym_RBRACE] = ACTIONS(2334), - [sym_comment] = ACTIONS(52), - }, - [1092] = { - [anon_sym_RBRACE] = ACTIONS(2336), - [sym_comment] = ACTIONS(52), - }, - [1093] = { - [sym_file_descriptor] = ACTIONS(1974), - [sym__concat] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(2162), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_LT_LT_DASH] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(52), - }, - [1094] = { - [sym_file_descriptor] = ACTIONS(1978), - [sym__concat] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_PIPE_AMP] = ACTIONS(1978), - [anon_sym_AMP_AMP] = ACTIONS(1978), - [anon_sym_PIPE_PIPE] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(1978), - [anon_sym_AMP_GT] = ACTIONS(2164), - [anon_sym_AMP_GT_GT] = ACTIONS(1978), - [anon_sym_LT_AMP] = ACTIONS(1978), - [anon_sym_GT_AMP] = ACTIONS(1978), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_LT_LT_DASH] = ACTIONS(1978), - [anon_sym_BQUOTE] = ACTIONS(1978), - [sym_comment] = ACTIONS(52), - }, - [1095] = { - [sym_file_descriptor] = ACTIONS(2178), - [sym__concat] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_RPAREN] = ACTIONS(2180), - [anon_sym_SEMI_SEMI] = ACTIONS(2180), - [anon_sym_PIPE_AMP] = ACTIONS(2180), - [anon_sym_AMP_AMP] = ACTIONS(2180), - [anon_sym_PIPE_PIPE] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2180), - [anon_sym_GT] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(2180), - [anon_sym_AMP_GT] = ACTIONS(2180), - [anon_sym_AMP_GT_GT] = ACTIONS(2180), - [anon_sym_LT_AMP] = ACTIONS(2180), - [anon_sym_GT_AMP] = ACTIONS(2180), - [anon_sym_LT_LT] = ACTIONS(2180), - [anon_sym_LT_LT_DASH] = ACTIONS(2180), + [1208] = { + [sym__concat] = ACTIONS(2118), + [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [sym_raw_string] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), + [anon_sym_BQUOTE] = ACTIONS(2120), + [anon_sym_LT_LPAREN] = ACTIONS(2120), + [anon_sym_GT_LPAREN] = ACTIONS(2120), + [sym_word] = ACTIONS(2120), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_LF] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), }, - [1096] = { - [sym_file_descriptor] = ACTIONS(2182), - [sym__concat] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_RPAREN] = ACTIONS(2184), - [anon_sym_SEMI_SEMI] = ACTIONS(2184), - [anon_sym_PIPE_AMP] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_AMP_GT] = ACTIONS(2184), - [anon_sym_AMP_GT_GT] = ACTIONS(2184), - [anon_sym_LT_AMP] = ACTIONS(2184), - [anon_sym_GT_AMP] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_LT_LT_DASH] = ACTIONS(2184), + [1209] = { + [sym__concat] = ACTIONS(2122), + [anon_sym_SEMI_SEMI] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_raw_string] = ACTIONS(2124), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2124), + [anon_sym_LT_LPAREN] = ACTIONS(2124), + [anon_sym_GT_LPAREN] = ACTIONS(2124), + [sym_word] = ACTIONS(2124), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), }, - [1097] = { - [anon_sym_RBRACE] = ACTIONS(2338), + [1210] = { + [anon_sym_esac] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2572), + [sym_raw_string] = ACTIONS(2572), + [anon_sym_DOLLAR] = ACTIONS(2570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2572), + [anon_sym_BQUOTE] = ACTIONS(2572), + [anon_sym_LT_LPAREN] = ACTIONS(2572), + [anon_sym_GT_LPAREN] = ACTIONS(2572), + [sym_word] = ACTIONS(2574), [sym_comment] = ACTIONS(52), }, - [1098] = { - [anon_sym_RBRACE] = ACTIONS(2340), + [1211] = { + [anon_sym_RBRACE] = ACTIONS(2576), [sym_comment] = ACTIONS(52), }, - [1099] = { - [sym__heredoc_middle] = ACTIONS(1974), - [sym__heredoc_end] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [1212] = { + [anon_sym_RBRACE] = ACTIONS(2578), [sym_comment] = ACTIONS(52), }, - [1100] = { - [sym__heredoc_middle] = ACTIONS(1978), - [sym__heredoc_end] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1978), + [1213] = { + [sym_file_descriptor] = ACTIONS(2118), + [sym__concat] = ACTIONS(2118), + [sym_variable_name] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2352), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_PIPE_PIPE] = ACTIONS(2352), + [anon_sym_LT] = ACTIONS(2352), + [anon_sym_GT] = ACTIONS(2352), + [anon_sym_GT_GT] = ACTIONS(2118), + [anon_sym_AMP_GT] = ACTIONS(2352), + [anon_sym_AMP_GT_GT] = ACTIONS(2118), + [anon_sym_LT_AMP] = ACTIONS(2118), + [anon_sym_GT_AMP] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2118), + [anon_sym_BQUOTE] = ACTIONS(2118), + [anon_sym_LT_LPAREN] = ACTIONS(2118), + [anon_sym_GT_LPAREN] = ACTIONS(2118), + [sym_word] = ACTIONS(2120), [sym_comment] = ACTIONS(52), }, - [1101] = { - [sym__concat] = ACTIONS(2178), - [anon_sym_SEMI_SEMI] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_raw_string] = ACTIONS(2180), - [anon_sym_DOLLAR] = ACTIONS(2180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), - [anon_sym_LT_LPAREN] = ACTIONS(2180), - [anon_sym_GT_LPAREN] = ACTIONS(2180), - [sym_word] = ACTIONS(2180), + [1214] = { + [sym_file_descriptor] = ACTIONS(2122), + [sym__concat] = ACTIONS(2122), + [sym_variable_name] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2354), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2354), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_GT] = ACTIONS(2354), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_AMP_GT] = ACTIONS(2354), + [anon_sym_AMP_GT_GT] = ACTIONS(2122), + [anon_sym_LT_AMP] = ACTIONS(2122), + [anon_sym_GT_AMP] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_raw_string] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [anon_sym_LT_LPAREN] = ACTIONS(2122), + [anon_sym_GT_LPAREN] = ACTIONS(2122), + [sym_word] = ACTIONS(2124), + [sym_comment] = ACTIONS(52), + }, + [1215] = { + [anon_sym_RBRACK] = ACTIONS(2580), + [sym_comment] = ACTIONS(52), + }, + [1216] = { + [anon_sym_RBRACK] = ACTIONS(2582), + [sym_comment] = ACTIONS(52), + }, + [1217] = { + [anon_sym_RBRACE] = ACTIONS(2584), + [sym_comment] = ACTIONS(52), + }, + [1218] = { + [sym__concat] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_PIPE_AMP] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(52), + }, + [1219] = { + [anon_sym_RBRACE] = ACTIONS(2586), + [sym_comment] = ACTIONS(52), + }, + [1220] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_PIPE_AMP] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1772), + [anon_sym_PIPE_PIPE] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [sym_comment] = ACTIONS(52), + }, + [1221] = { + [anon_sym_RBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(52), + }, + [1222] = { + [anon_sym_RBRACE] = ACTIONS(2590), + [sym_comment] = ACTIONS(52), + }, + [1223] = { + [sym_file_descriptor] = ACTIONS(2118), + [sym__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2352), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_PIPE_PIPE] = ACTIONS(2118), + [anon_sym_LT] = ACTIONS(2352), + [anon_sym_GT] = ACTIONS(2352), + [anon_sym_GT_GT] = ACTIONS(2118), + [anon_sym_AMP_GT] = ACTIONS(2352), + [anon_sym_AMP_GT_GT] = ACTIONS(2118), + [anon_sym_LT_AMP] = ACTIONS(2118), + [anon_sym_GT_AMP] = ACTIONS(2118), + [anon_sym_LT_LT] = ACTIONS(2352), + [anon_sym_LT_LT_DASH] = ACTIONS(2118), + [anon_sym_BQUOTE] = ACTIONS(2118), + [sym_comment] = ACTIONS(52), + }, + [1224] = { + [sym_file_descriptor] = ACTIONS(2122), + [sym__concat] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2354), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_GT] = ACTIONS(2354), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_AMP_GT] = ACTIONS(2354), + [anon_sym_AMP_GT_GT] = ACTIONS(2122), + [anon_sym_LT_AMP] = ACTIONS(2122), + [anon_sym_GT_AMP] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2354), + [anon_sym_LT_LT_DASH] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_comment] = ACTIONS(52), + }, + [1225] = { + [anon_sym_RBRACE] = ACTIONS(2592), + [sym_comment] = ACTIONS(52), + }, + [1226] = { + [anon_sym_RBRACE] = ACTIONS(2594), + [sym_comment] = ACTIONS(52), + }, + [1227] = { + [sym__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), [sym_comment] = ACTIONS(142), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_LF] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), }, - [1102] = { - [sym__concat] = ACTIONS(2182), - [anon_sym_SEMI_SEMI] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_raw_string] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2184), - [anon_sym_BQUOTE] = ACTIONS(2184), - [anon_sym_LT_LPAREN] = ACTIONS(2184), - [anon_sym_GT_LPAREN] = ACTIONS(2184), - [sym_word] = ACTIONS(2184), + [1228] = { + [sym__concat] = ACTIONS(2122), + [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(142), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), }, - [1103] = { - [sym_file_descriptor] = ACTIONS(2178), - [sym__concat] = ACTIONS(2178), - [sym_variable_name] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2280), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LT_LPAREN] = ACTIONS(2178), - [anon_sym_GT_LPAREN] = ACTIONS(2178), - [sym_word] = ACTIONS(2180), + [1229] = { + [sym_file_descriptor] = ACTIONS(2368), + [sym__concat] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_RPAREN] = ACTIONS(2370), + [anon_sym_SEMI_SEMI] = ACTIONS(2370), + [anon_sym_PIPE_AMP] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_AMP_GT] = ACTIONS(2370), + [anon_sym_AMP_GT_GT] = ACTIONS(2370), + [anon_sym_LT_AMP] = ACTIONS(2370), + [anon_sym_GT_AMP] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_LT_LT_DASH] = ACTIONS(2370), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LF] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + }, + [1230] = { + [sym_file_descriptor] = ACTIONS(2372), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), + [anon_sym_PIPE_AMP] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2374), + [anon_sym_AMP_GT] = ACTIONS(2374), + [anon_sym_AMP_GT_GT] = ACTIONS(2374), + [anon_sym_LT_AMP] = ACTIONS(2374), + [anon_sym_GT_AMP] = ACTIONS(2374), + [anon_sym_LT_LT] = ACTIONS(2374), + [anon_sym_LT_LT_DASH] = ACTIONS(2374), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + }, + [1231] = { + [anon_sym_RBRACE] = ACTIONS(2596), [sym_comment] = ACTIONS(52), }, - [1104] = { - [sym_file_descriptor] = ACTIONS(2182), - [sym__concat] = ACTIONS(2182), - [sym_variable_name] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2182), - [anon_sym_PIPE_AMP] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2182), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2182), - [anon_sym_AMP_GT] = ACTIONS(2282), - [anon_sym_AMP_GT_GT] = ACTIONS(2182), - [anon_sym_LT_AMP] = ACTIONS(2182), - [anon_sym_GT_AMP] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [sym_raw_string] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2182), - [anon_sym_BQUOTE] = ACTIONS(2182), - [anon_sym_LT_LPAREN] = ACTIONS(2182), - [anon_sym_GT_LPAREN] = ACTIONS(2182), - [sym_word] = ACTIONS(2184), + [1232] = { + [anon_sym_RBRACE] = ACTIONS(2598), [sym_comment] = ACTIONS(52), }, - [1105] = { - [sym_file_descriptor] = ACTIONS(2178), - [sym__concat] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2280), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_LT_LT_DASH] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), + [1233] = { + [sym__heredoc_middle] = ACTIONS(2118), + [sym__heredoc_end] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), [sym_comment] = ACTIONS(52), }, - [1106] = { - [sym_file_descriptor] = ACTIONS(2182), - [sym__concat] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2182), - [anon_sym_PIPE_AMP] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2182), - [anon_sym_PIPE_PIPE] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2182), - [anon_sym_AMP_GT] = ACTIONS(2282), - [anon_sym_AMP_GT_GT] = ACTIONS(2182), - [anon_sym_LT_AMP] = ACTIONS(2182), - [anon_sym_GT_AMP] = ACTIONS(2182), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_LT_LT_DASH] = ACTIONS(2182), - [anon_sym_BQUOTE] = ACTIONS(2182), + [1234] = { + [sym__heredoc_middle] = ACTIONS(2122), + [sym__heredoc_end] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), [sym_comment] = ACTIONS(52), }, - [1107] = { - [sym__heredoc_middle] = ACTIONS(2178), - [sym__heredoc_end] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [1235] = { + [sym__concat] = ACTIONS(2368), + [anon_sym_SEMI_SEMI] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_raw_string] = ACTIONS(2370), + [anon_sym_DOLLAR] = ACTIONS(2370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(2370), + [anon_sym_LT_LPAREN] = ACTIONS(2370), + [anon_sym_GT_LPAREN] = ACTIONS(2370), + [sym_word] = ACTIONS(2370), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LF] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + }, + [1236] = { + [sym__concat] = ACTIONS(2372), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_raw_string] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2374), + [anon_sym_BQUOTE] = ACTIONS(2374), + [anon_sym_LT_LPAREN] = ACTIONS(2374), + [anon_sym_GT_LPAREN] = ACTIONS(2374), + [sym_word] = ACTIONS(2374), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + }, + [1237] = { + [sym_file_descriptor] = ACTIONS(2368), + [sym__concat] = ACTIONS(2368), + [sym_variable_name] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2368), + [anon_sym_PIPE_AMP] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_AMP_GT] = ACTIONS(2506), + [anon_sym_AMP_GT_GT] = ACTIONS(2368), + [anon_sym_LT_AMP] = ACTIONS(2368), + [anon_sym_GT_AMP] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [sym_raw_string] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_LT_LPAREN] = ACTIONS(2368), + [anon_sym_GT_LPAREN] = ACTIONS(2368), + [sym_word] = ACTIONS(2370), [sym_comment] = ACTIONS(52), }, - [1108] = { - [sym__heredoc_middle] = ACTIONS(2182), - [sym__heredoc_end] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2182), + [1238] = { + [sym_file_descriptor] = ACTIONS(2372), + [sym__concat] = ACTIONS(2372), + [sym_variable_name] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_RPAREN] = ACTIONS(2372), + [anon_sym_PIPE_AMP] = ACTIONS(2372), + [anon_sym_AMP_AMP] = ACTIONS(2372), + [anon_sym_PIPE_PIPE] = ACTIONS(2508), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_GT] = ACTIONS(2508), + [anon_sym_GT_GT] = ACTIONS(2372), + [anon_sym_AMP_GT] = ACTIONS(2508), + [anon_sym_AMP_GT_GT] = ACTIONS(2372), + [anon_sym_LT_AMP] = ACTIONS(2372), + [anon_sym_GT_AMP] = ACTIONS(2372), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym_raw_string] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), + [anon_sym_BQUOTE] = ACTIONS(2372), + [anon_sym_LT_LPAREN] = ACTIONS(2372), + [anon_sym_GT_LPAREN] = ACTIONS(2372), + [sym_word] = ACTIONS(2374), + [sym_comment] = ACTIONS(52), + }, + [1239] = { + [anon_sym_RBRACE] = ACTIONS(2600), + [sym_comment] = ACTIONS(52), + }, + [1240] = { + [anon_sym_RBRACE] = ACTIONS(2602), + [sym_comment] = ACTIONS(52), + }, + [1241] = { + [sym__concat] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2352), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_PIPE_PIPE] = ACTIONS(2118), + [anon_sym_BQUOTE] = ACTIONS(2118), + [sym_comment] = ACTIONS(52), + }, + [1242] = { + [sym__concat] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2354), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_comment] = ACTIONS(52), + }, + [1243] = { + [sym_file_descriptor] = ACTIONS(2368), + [sym__concat] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2368), + [anon_sym_PIPE_AMP] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_AMP_GT] = ACTIONS(2506), + [anon_sym_AMP_GT_GT] = ACTIONS(2368), + [anon_sym_LT_AMP] = ACTIONS(2368), + [anon_sym_GT_AMP] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_LT_LT_DASH] = ACTIONS(2368), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_comment] = ACTIONS(52), + }, + [1244] = { + [sym_file_descriptor] = ACTIONS(2372), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_RPAREN] = ACTIONS(2372), + [anon_sym_PIPE_AMP] = ACTIONS(2372), + [anon_sym_AMP_AMP] = ACTIONS(2372), + [anon_sym_PIPE_PIPE] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_GT] = ACTIONS(2508), + [anon_sym_GT_GT] = ACTIONS(2372), + [anon_sym_AMP_GT] = ACTIONS(2508), + [anon_sym_AMP_GT_GT] = ACTIONS(2372), + [anon_sym_LT_AMP] = ACTIONS(2372), + [anon_sym_GT_AMP] = ACTIONS(2372), + [anon_sym_LT_LT] = ACTIONS(2508), + [anon_sym_LT_LT_DASH] = ACTIONS(2372), + [anon_sym_BQUOTE] = ACTIONS(2372), + [sym_comment] = ACTIONS(52), + }, + [1245] = { + [sym__concat] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_RPAREN] = ACTIONS(2370), + [anon_sym_SEMI_SEMI] = ACTIONS(2370), + [anon_sym_PIPE_AMP] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LF] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + }, + [1246] = { + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), + [anon_sym_PIPE_AMP] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [sym_comment] = ACTIONS(142), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + }, + [1247] = { + [sym__heredoc_middle] = ACTIONS(2368), + [sym__heredoc_end] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2368), + [sym_comment] = ACTIONS(52), + }, + [1248] = { + [sym__heredoc_middle] = ACTIONS(2372), + [sym__heredoc_end] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2372), + [sym_comment] = ACTIONS(52), + }, + [1249] = { + [sym__concat] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2368), + [anon_sym_PIPE_AMP] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_comment] = ACTIONS(52), + }, + [1250] = { + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_RPAREN] = ACTIONS(2372), + [anon_sym_PIPE_AMP] = ACTIONS(2372), + [anon_sym_AMP_AMP] = ACTIONS(2372), + [anon_sym_PIPE_PIPE] = ACTIONS(2372), + [anon_sym_BQUOTE] = ACTIONS(2372), [sym_comment] = ACTIONS(52), }, }; @@ -23382,1077 +25487,1208 @@ static TSParseActionEntry ts_parse_actions[] = { [194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(108), [196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(109), [198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(122), - [200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), - [206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(123), - [210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(124), - [212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(125), - [214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(126), - [216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(127), - [220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(128), - [222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(13), - [224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(129), - [226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(15), - [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), - [230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), - [232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(18), - [234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), - [236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [240] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), - [244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(135), - [246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(14), - [248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(139), - [250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), - [252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(141), - [254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(142), - [256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(143), - [258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(144), - [260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(145), - [262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(146), - [264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(147), - [266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(142), - [268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(149), - [270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(150), - [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), - [274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(152), - [276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(153), - [278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(154), - [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), - [282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), - [284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(157), - [286] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(152), - [288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(158), - [290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), - [292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(161), - [294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), - [296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(163), - [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), - [300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(166), - [302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(167), - [304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(169), - [306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(170), - [308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(169), - [310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(172), - [312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(173), - [314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(181), - [316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(182), - [318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(183), - [320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), - [322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(188), - [324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(190), - [332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(191), - [334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(190), - [336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(193), - [338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(194), - [340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(202), - [342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(203), - [344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(203), - [346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(205), - [348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), - [350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(209), - [352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(210), - [354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(209), - [356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), - [358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(213), - [360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), - [362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(221), - [364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(223), - [366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(225), - [370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), - [372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), - [374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(228), - [376] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(227), - [378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(230), - [380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(231), - [382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), - [388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), - [390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(239), - [392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(240), - [394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(239), - [396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), - [398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(243), - [400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(249), - [402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(250), - [404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(251), - [406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(251), - [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), - [412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), - [416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), - [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), - [420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), - [422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), - [424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), - [426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_special_variable_name, 1), - [428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), - [430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), - [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), - [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(257), - [436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(257), - [438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(258), - [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(259), - [442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), - [444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(260), - [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(261), - [448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(262), - [450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), + [200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(123), + [202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), + [204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), + [208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(125), + [212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(126), + [214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(127), + [216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), + [218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(129), + [222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(130), + [224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(13), + [226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(131), + [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(15), + [230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), + [232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), + [234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(18), + [236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), + [238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), + [246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), + [248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(14), + [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(141), + [252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(141), + [254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(143), + [256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(144), + [258] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(145), + [260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(146), + [262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(147), + [264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(148), + [266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(149), + [268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(144), + [270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), + [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(152), + [274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), + [276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(154), + [278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), + [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), + [282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(157), + [284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(158), + [286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), + [288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), + [290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160), + [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), + [294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(163), + [296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), + [298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(165), + [300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(167), + [302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(168), + [304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(169), + [306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(171), + [308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(172), + [310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(171), + [312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(174), + [314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(175), + [316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), + [318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(123), + [320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(185), + [322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), + [324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(189), + [326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(191), + [328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(193), + [336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(194), + [338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(193), + [340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(196), + [342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(197), + [344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(205), + [346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(206), + [348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(206), + [350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(208), + [352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(210), + [354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), + [356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(213), + [358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(212), + [360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(215), + [362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(216), + [364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), + [366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(224), + [368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(226), + [370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), + [374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), + [376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(230), + [378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(231), + [380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(230), + [382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), + [384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(234), + [386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), + [388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), + [390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), + [392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), + [394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), + [396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(243), + [398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(242), + [400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(245), + [402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(246), + [404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(252), + [406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(253), + [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), + [410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(254), + [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), + [416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), + [420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), + [422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), + [424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), + [426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), + [428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), + [430] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_special_variable_name, 1), + [432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(256), + [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(258), + [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(259), + [438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), + [440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(260), + [442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(261), + [444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(262), + [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(263), + [448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(263), + [450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(264), [452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(265), - [454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(267), - [456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(273), - [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), - [460] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), - [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(277), - [464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(278), - [466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(277), - [468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), - [470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(281), - [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(290), - [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), - [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), - [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), - [484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), - [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(294), - [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), - [492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(295), - [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), - [496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), - [498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(296), - [500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(292), - [502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(103), - [504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(302), - [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), - [508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), - [510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(303), - [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(306), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307), - [516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), - [520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [522] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(312), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(312), - [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(313), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(314), - [530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(315), - [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), - [534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(318), - [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(319), - [540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(314), - [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(321), - [544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(322), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(324), - [554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), - [558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(328), - [562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), - [564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), - [566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), - [570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), - [572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), - [574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), - [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), - [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(336), - [580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(335), - [582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), - [584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(339), - [586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3), - [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3), - [590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), - [592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(348), - [594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(350), - [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(352), - [598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), - [600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(355), - [602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(354), + [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), + [456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(268), + [458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(270), + [460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(276), + [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), + [464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), + [466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), + [468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(281), + [470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(280), + [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(283), + [474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), + [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), + [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), + [480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(295), + [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), + [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), + [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), + [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(299), + [496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), + [498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(300), + [500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), + [504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(301), + [506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), + [508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(103), + [510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(307), + [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307), + [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308), + [516] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(308), + [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(311), + [520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(312), + [522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(313), + [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(315), + [526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), + [528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(316), + [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [532] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), + [534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(322), + [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(322), + [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), + [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(324), + [544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(325), + [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), + [548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(327), + [550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(328), + [552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(329), + [554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(324), + [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), + [558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), + [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(334), + [568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), + [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), + [578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), + [580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [582] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), + [584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(340), + [586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), + [588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), + [590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345), + [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(346), + [594] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(345), + [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), + [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(349), + [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3), + [602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3), [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), - [606] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(358), - [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(366), - [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), - [612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(368), - [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), - [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(370), - [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(371), - [620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(372), - [622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(367), - [624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(375), - [626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [628] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(380), - [630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(381), - [632] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(382), - [634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(390), - [636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), - [638] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(391), - [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(392), - [642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), - [644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), - [646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(395), - [648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(397), - [650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), - [652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), - [654] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(399), - [656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(400), - [658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), - [660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402), - [662] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(402), - [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), - [666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(404), - [668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), - [670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(406), - [674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(406), - [676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(407), - [678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), - [680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(408), - [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), - [684] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(409), - [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), - [688] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), - [690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), - [692] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2), - [694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(411), - [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), - [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), - [700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), - [702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(415), - [704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), - [706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), - [708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), - [710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(418), - [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), - [714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), - [716] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), - [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), - [728] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(422), - [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(424), - [734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(426), - [736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), - [738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), - [740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(428), - [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), - [744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), - [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), - [748] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(431), - [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), - [752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), - [754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), - [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(435), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(435), - [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), - [762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(437), - [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), - [768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), - [770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(441), - [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), - [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), - [778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(444), - [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), - [784] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(447), - [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), - [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), - [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), - [792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(451), - [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), - [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), - [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), - [800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(454), - [802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), - [804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), - [810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), - [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), - [818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(456), - [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), - [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), - [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), - [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), - [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(462), - [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(464), - [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(465), - [846] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(465), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), - [856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(471), - [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), - [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), - [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(474), - [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(470), - [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), - [870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(477), - [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), - [874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(480), - [876] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(481), - [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482), - [880] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(483), - [882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(484), - [884] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(487), - [886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(488), - [888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), - [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(489), - [892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), - [894] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(491), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), - [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), - [902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), - [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(496), - [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), - [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(498), - [910] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(498), - [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), - [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), - [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), - [918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(506), - [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), - [926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), - [928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), - [930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(509), - [932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), - [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), - [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), - [940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(508), - [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), - [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), - [946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), - [948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), - [950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), - [954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(518), - [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [958] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), + [608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(360), + [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), + [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), + [614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(365), + [616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(364), + [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), + [620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(368), + [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), + [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377), + [626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(378), + [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), + [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), + [634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(377), + [638] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(385), + [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(390), + [644] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(391), + [646] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(392), + [648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(400), + [650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), + [652] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(401), + [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(402), + [656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), + [658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(404), + [660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(405), + [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(407), + [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(408), + [666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), + [668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(409), + [670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), + [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(411), + [674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), + [676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(412), + [678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), + [680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), + [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), + [684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), + [690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(417), + [692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), + [694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), + [696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), + [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(420), + [702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), + [704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), + [706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), + [708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2), + [710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(422), + [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(424), + [714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), + [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(426), + [718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(426), + [720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), + [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), + [724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), + [726] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(429), + [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), + [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), + [732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(432), + [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(433), + [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), + [748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), + [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), + [756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), + [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), + [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), + [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), + [764] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(442), + [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), + [768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), + [770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(445), + [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), + [774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(446), + [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), + [778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(448), + [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), + [782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), + [784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), + [786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(452), + [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), + [792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), + [794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(455), + [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), + [800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(458), + [802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), + [804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), + [806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), + [808] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(462), + [810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), + [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(464), + [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(465), + [816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(465), + [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), + [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), + [826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), + [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), + [834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(467), + [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), + [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), + [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), + [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), + [846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), + [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), + [852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(473), + [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), + [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), + [862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(476), + [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), + [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480), + [870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), + [872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(482), + [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483), + [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(484), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), + [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), + [882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(481), + [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), + [888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(491), + [892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(492), + [894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), + [896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(495), + [898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(496), + [900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), + [902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(500), + [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(501), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(502), + [910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(503), + [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), + [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), + [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), + [920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), + [922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), + [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), + [926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(510), + [928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), + [930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), + [932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), + [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), + [938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 2), + [940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), + [942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(517), + [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), + [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(523), + [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), + [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), + [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), - [962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), - [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(529), - [970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(531), + [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), + [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), + [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(525), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), - [974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), - [978] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(536), - [980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), - [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), - [984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(539), - [986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), - [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), - [994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(549), - [996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1000] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), + [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(535), + [984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), + [994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(546), + [996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), + [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), + [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), + [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(549), + [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), + [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), - [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(554), - [1016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(556), - [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), - [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(557), - [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), - [1026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(559), + [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(548), + [1014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555), + [1022] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(557), + [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), + [1026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), - [1030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), - [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), - [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), - [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), - [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), - [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), - [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(566), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), - [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_repeat1, 1), - [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_repeat1, 1), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(570), - [1060] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(571), - [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(572), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), - [1068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(574), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(578), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(581), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(582), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(584), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), - [1096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(589), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(588), - [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), - [1102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(592), - [1104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(600), - [1106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(366), - [1108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(601), - [1110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(368), - [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(369), - [1114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(370), - [1116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(371), - [1118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(372), - [1120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [1122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(603), - [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), - [1126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [1130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(611), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), - [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(617), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), - [1146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(618), - [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(622), - [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), - [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623), - [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), - [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(625), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), - [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), - [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), - [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), - [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(629), - [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), - [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), - [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(632), - [1174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), - [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), - [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(636), - [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), - [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), - [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), - [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), - [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), - [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(642), - [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(642), - [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), - [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), - [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(645), - [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(645), - [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), - [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), - [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(647), - [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648), - [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(649), - [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), - [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), - [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), - [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), - [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(653), - [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), - [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), - [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(656), - [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), - [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(658), - [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), - [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), - [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), - [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), - [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), - [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(664), - [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), - [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), - [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), - [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), - [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), - [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(672), - [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), + [1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(562), + [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), + [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(565), + [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), + [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), + [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(575), + [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), + [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1054] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1058] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), + [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), + [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), + [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(580), + [1068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(582), + [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), + [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(583), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [1078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(585), + [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(589), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), + [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(592), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_repeat1, 1), + [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_repeat1, 1), + [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(596), + [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(597), + [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), + [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(598), + [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(600), + [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(602), + [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(603), + [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), + [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), + [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), + [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(607), + [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(607), + [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), + [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), + [1142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(610), + [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), + [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(615), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(614), + [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), + [1154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(618), + [1156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(626), + [1158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(376), + [1160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(627), + [1162] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(378), + [1164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(379), + [1166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(380), + [1168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(381), + [1170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(382), + [1172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [1174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(629), + [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(630), + [1178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [1182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(637), + [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), + [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(638), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), + [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(392), + [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(643), + [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), + [1198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(644), + [1200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(648), + [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(649), + [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(649), + [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), + [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), + [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), + [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), + [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), + [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), + [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), + [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(658), + [1226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), + [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), + [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(662), + [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), + [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), + [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), + [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), + [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), + [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), + [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), + [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(668), + [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), + [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), + [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), + [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(671), + [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), + [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), + [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(673), [1272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), - [1274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(674), + [1274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), [1276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), [1278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), - [1280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(677), - [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 3), - [1284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 3), - [1286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), - [1288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), - [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), - [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), - [1298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), - [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), - [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), - [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), - [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3), - [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), - [1310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687), - [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), - [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), - [1316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(692), - [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(691), - [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), - [1322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(695), - [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(704), - [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), - [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(706), - [1332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(710), - [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), - [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), - [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), - [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [1342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), - [1344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(713), - [1346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(714), - [1348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), - [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), - [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(715), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), - [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), - [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), - [1364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), - [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), - [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(721), - [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(723), - [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), - [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), - [1376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(726), - [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), - [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3, .fragile = true), - [1386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), - [1388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(728), - [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(730), - [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), - [1394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), - [1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(735), - [1398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(734), - [1400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), - [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(738), - [1404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [1410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), - [1412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1414] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), - [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), - [1418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [1422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(751), - [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752), - [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(752), - [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(753), - [1430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(754), - [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), - [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), - [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), - [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(758), - [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), - [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), - [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(761), - [1448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), - [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), - [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), - [1462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(765), - [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(764), - [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(767), - [1468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(768), - [1470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), - [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), - [1474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), - [1476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), - [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(774), - [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(775), - [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(776), - [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), - [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), - [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), - [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), - [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(780), - [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), - [1498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), - [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(783), - [1502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_repeat1, 2), - [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_repeat1, 2), - [1510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), - [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(785), - [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), - [1516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), - [1518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), - [1520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), - [1522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), - [1524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), - [1526] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(791), - [1528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), - [1530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), - [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(794), - [1534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(796), - [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), - [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(797), - [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), - [1542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(799), - [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), - [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), - [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), - [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(803), - [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), - [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), - [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), - [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(806), - [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), - [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), - [1564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), - [1568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(811), - [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [1572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), - [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [1586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [1588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(818), - [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), - [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), - [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(823), - [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), - [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(826), - [1604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [1606] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 3), - [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), - [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827), - [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), - [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), - [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), - [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), - [1622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), - [1624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), - [1626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), - [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), - [1632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), - [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), - [1636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), - [1638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), - [1640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), - [1642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), - [1644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), - [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [1648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), - [1650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), - [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), - [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), - [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), - [1660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [1662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), - [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), - [1666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), - [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [1670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [1676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), - [1682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(856), - [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), - [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(857), - [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [1690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(859), - [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), - [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), - [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), - [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(863), - [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), - [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), - [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), - [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(866), - [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), - [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), - [1712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(869), - [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), - [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(870), - [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), - [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(871), - [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(874), - [1730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(876), - [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), - [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), - [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), - [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), - [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), - [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(882), - [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), - [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), - [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), - [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(887), - [1758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), - [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(888), - [1762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), - [1764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(890), - [1766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [1768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), - [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), - [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(894), - [1774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), - [1776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), - [1778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), - [1780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(897), - [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), - [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), - [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [1788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), - [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), - [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [1794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), - [1798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), - [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(902), - [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [1804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), - [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), - [1808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), - [1810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), - [1812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [1814] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(908), - [1816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), - [1818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), - [1820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(911), - [1822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), - [1824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [1826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), - [1828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), - [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(917), - [1832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), - [1834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), - [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(920), - [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), - [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [1846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), - [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), - [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(924), - [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), - [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), - [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), - [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), - [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), - [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), - [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), - [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), - [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), - [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), - [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(934), - [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), - [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), - [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), - [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), - [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), - [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), - [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(940), - [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), - [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), - [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(943), - [1898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [1902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), - [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), - [1910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), - [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), - [1916] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), - [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), - [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), - [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), - [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), - [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), - [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), - [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), - [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), - [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), - [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), - [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), - [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), - [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), - [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), - [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(972), - [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), - [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974), - [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), - [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [1976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [1980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), - [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(976), - [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), - [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), - [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), - [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), - [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), - [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), - [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(982), - [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), - [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), - [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(985), - [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), - [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(990), - [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), - [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), - [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), - [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), - [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), - [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(997), - [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), - [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), - [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), - [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), - [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1003), - [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), - [2066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), - [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1006), - [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [2072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), - [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), - [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), - [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), - [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), - [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), - [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), - [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), - [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), - [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), - [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1019), - [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), - [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), - [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1022), - [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), - [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), - [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), - [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), - [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), - [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), - [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), - [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), - [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), - [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [2136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [2144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), - [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), - [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1039), - [2152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), - [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), - [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), - [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), - [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), - [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), - [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), - [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), - [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), - [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), - [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), - [2180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), - [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [2184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), - [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), - [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), - [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), - [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), - [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), - [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), - [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), - [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1059), - [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), - [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), - [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), - [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), - [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), - [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), - [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), - [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), - [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), - [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), - [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), - [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), - [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), - [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), - [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), - [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), - [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), - [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), - [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), - [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), - [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), - [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), - [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), - [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), - [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [2274] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 3), - [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), - [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), - [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), - [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), - [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), - [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), - [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), - [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), - [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), - [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), - [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), - [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), - [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), - [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), - [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), - [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), - [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), - [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [2328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), - [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), - [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), - [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), - [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), - [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [1280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), + [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), + [1284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(679), + [1286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), + [1288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), + [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(682), + [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), + [1294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(684), + [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), + [1298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), + [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), + [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), + [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), + [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(690), + [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), + [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), + [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(693), + [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), + [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), + [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), + [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), + [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(700), + [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), + [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), + [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(703), + [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 3), + [1338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 3), + [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), + [1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), + [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705), + [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), + [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), + [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(710), + [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3), + [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), + [1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(713), + [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), + [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), + [1370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(718), + [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(717), + [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), + [1376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(721), + [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(730), + [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), + [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(732), + [1386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(736), + [1388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), + [1390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), + [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [1394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), + [1398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [1400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), + [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(740), + [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(741), + [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), + [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [1410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(742), + [1414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), + [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), + [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), + [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), + [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(748), + [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), + [1430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), + [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(751), + [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), + [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(755), + [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), + [1442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), + [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), + [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(758), + [1448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), + [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), + [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), + [1456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(757), + [1458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), + [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3, .fragile = true), + [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), + [1468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(764), + [1470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(766), + [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(768), + [1474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), + [1476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(771), + [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(770), + [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(773), + [1482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(774), + [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), + [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), + [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), + [1502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(786), + [1504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(788), + [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), + [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(793), + [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(792), + [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), + [1516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(796), + [1518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [1520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(804), + [1522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), + [1524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(805), + [1526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), + [1528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(807), + [1530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), + [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), + [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), + [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(811), + [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), + [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), + [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), + [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(814), + [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), + [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), + [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), + [1560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(818), + [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(817), + [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), + [1566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(821), + [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(823), + [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), + [1574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827), + [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(827), + [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), + [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), + [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), + [1586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), + [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), + [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(833), + [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), + [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), + [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(836), + [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_repeat1, 2), + [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_repeat1, 2), + [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(838), + [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), + [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), + [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), + [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), + [1622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), + [1624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(844), + [1626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), + [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(847), + [1632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(849), + [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(850), + [1638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(852), + [1642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [1644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), + [1648] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(856), + [1650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), + [1652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), + [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), + [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(859), + [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), + [1660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), + [1662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), + [1666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(864), + [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [1670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), + [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), + [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [1686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(871), + [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), + [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), + [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), + [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), + [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), + [1702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [1704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 3), + [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 2), + [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), + [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), + [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(882), + [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), + [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886), + [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), + [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), + [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), + [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), + [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), + [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), + [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), + [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), + [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), + [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), + [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), + [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), + [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), + [1756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), + [1758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), + [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), + [1762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), + [1764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), + [1766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), + [1768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), + [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), + [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [1774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [1776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), + [1778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), + [1780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(910), + [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), + [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(911), + [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [1788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), + [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), + [1794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), + [1796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(917), + [1798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), + [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), + [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), + [1804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(920), + [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), + [1808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(923), + [1812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), + [1814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [1816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(924), + [1818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [1820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), + [1824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(925), + [1826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(928), + [1828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(930), + [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [1832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), + [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), + [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), + [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), + [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), + [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), + [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(940), + [1858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(942), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), + [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [1864] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(947), + [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(946), + [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [1870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(950), + [1872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(958), + [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(959), + [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), + [1880] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(961), + [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), + [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(965), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), + [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), + [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(968), + [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), + [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), + [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), + [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [1910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(972), + [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(973), + [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974), + [1918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(975), + [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), + [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), + [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), + [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(979), + [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), + [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), + [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(982), + [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), + [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), + [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), + [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(985), + [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), + [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), + [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), + [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989), + [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), + [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), + [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(991), + [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), + [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), + [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(994), + [1964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(996), + [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), + [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), + [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1000), + [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1003), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), + [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [1988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), + [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), + [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), + [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), + [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), + [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), + [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1017), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), + [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), + [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), + [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), + [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), + [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1023), + [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), + [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), + [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1026), + [2040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [2044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), + [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), + [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), + [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), + [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), + [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), + [2058] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1036), + [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), + [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), + [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), + [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [2076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), + [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), + [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), + [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), + [2120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), + [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1059), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), + [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1065), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), + [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1068), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), + [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1073), + [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), + [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), + [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), + [2184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1080), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), + [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1081), + [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [2192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1083), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), + [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1087), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), + [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1090), + [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), + [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1093), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1099), + [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), + [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1102), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1104), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1110), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1113), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), + [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1119), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), + [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), + [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), + [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), + [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), + [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), + [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), + [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), + [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1129), + [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1131), + [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1132), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134), + [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), + [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), + [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), + [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), + [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), + [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [2326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), + [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), + [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1146), + [2342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), + [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), + [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1152), + [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), + [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), + [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1153), + [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), + [2360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), + [2362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), + [2364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), + [2366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1158), + [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), + [2370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), + [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [2374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1159), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), + [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1162), + [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), + [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), + [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), + [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1166), + [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), + [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), + [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1169), + [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), + [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), + [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), + [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), + [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1175), + [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), + [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), + [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1178), + [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), + [2438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), + [2440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), + [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), + [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [2450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), + [2454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [2456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [2458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [2460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), + [2462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), + [2464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), + [2466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), + [2468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), + [2470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), + [2472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), + [2474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1199), + [2476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), + [2478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), + [2480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), + [2482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203), + [2484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), + [2486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), + [2488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206), + [2490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), + [2492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), + [2494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [2496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [2498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [2500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 3), + [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), + [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 2), + [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), + [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), + [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), + [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), + [2516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), + [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [2520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [2522] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), + [2524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), + [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), + [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), + [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), + [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), + [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), + [2540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), + [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), + [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), + [2546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), + [2548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), + [2550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), + [2552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [2554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), + [2556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), + [2558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [2560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), + [2564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), + [2566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), + [2568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), + [2572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [2574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [2576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), + [2578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), + [2580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [2582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), + [2584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), + [2586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [2590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), + [2592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [2594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [2598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), + [2602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), }; void *tree_sitter_bash_external_scanner_create();